diff --git a/eng/versioning/version_client.txt b/eng/versioning/version_client.txt index 1b6d3301a1ca..a924d6b6fd43 100644 --- a/eng/versioning/version_client.txt +++ b/eng/versioning/version_client.txt @@ -80,6 +80,7 @@ com.azure.resourcemanager:azure-resourcemanager-redis;2.0.0-beta.3;2.0.0-beta.4 com.azure.resourcemanager:azure-resourcemanager-samples;2.0.0-beta.3;2.0.0-beta.4 com.azure.resourcemanager:azure-resourcemanager-sql;2.0.0-beta.3;2.0.0-beta.4 com.azure.resourcemanager:azure-resourcemanager-storage;2.0.0-beta.3;2.0.0-beta.4 +com.azure.resourcemanager:azure-resourcemanager-test;2.0.0-beta.4;2.0.0-beta.4 com.microsoft.azure:azure-active-directory-b2c-spring-boot-starter;2.3.3;2.4.0-beta.1 com.microsoft.azure:azure-active-directory-spring-boot-starter;2.3.3;2.4.0-beta.1 com.microsoft.azure:azure-cosmosdb-spring-boot-starter;2.3.3;2.4.0-beta.1 diff --git a/sdk/parents/azure-client-sdk-parent/pom.xml b/sdk/parents/azure-client-sdk-parent/pom.xml index bbcbba500d22..e14976e98493 100644 --- a/sdk/parents/azure-client-sdk-parent/pom.xml +++ b/sdk/parents/azure-client-sdk-parent/pom.xml @@ -1138,6 +1138,11 @@ --add-opens com.azure.core/com.azure.core.implementation.entities=com.fasterxml.jackson.databind --add-opens com.azure.core/com.azure.core.implementation.entities=ALL-UNNAMED + + + --add-exports com.azure.resourcemanager.resources/com.azure.resourcemanager.resources.fluentcore.arm.collection.implementation=ALL-UNNAMED + --add-exports com.azure.resourcemanager.resources/com.azure.resourcemanager.resources.fluentcore.arm.implementation=ALL-UNNAMED + --add-exports com.azure.resourcemanager.resources/com.azure.resourcemanager.resources.fluentcore.arm.models.implementation=ALL-UNNAMED ${project.build.directory}/jacoco.exec diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/pom.xml b/sdk/resourcemanager/azure-resourcemanager-appplatform/pom.xml index 68959ff38448..c2c7b809cef3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appplatform/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/pom.xml @@ -83,9 +83,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/AppPlatformManager.java b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/AppPlatformManager.java index 02426a2949cd..95495a161568 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/AppPlatformManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/AppPlatformManager.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; @@ -88,8 +88,9 @@ private AppPlatformManager(HttpPipeline httpPipeline, AzureProfile profile, SdkC profile, new AppPlatformManagementClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); } diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringApp.java b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringApp.java index 45a5ad4c96c8..d0fe4cc161b2 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringApp.java +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringApp.java @@ -4,7 +4,6 @@ package com.azure.resourcemanager.appplatform.models; import com.azure.core.annotation.Fluent; -import com.azure.core.implementation.annotation.Beta; import com.azure.resourcemanager.appplatform.fluent.inner.AppResourceInner; import com.azure.resourcemanager.resources.fluentcore.arm.models.ExternalChildResource; import com.azure.resourcemanager.resources.fluentcore.model.Appliable; @@ -18,7 +17,6 @@ /** An immutable client-side representation of an Azure Spring App. */ @Fluent -@Beta public interface SpringApp extends ExternalChildResource, HasInner, diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppDeployment.java b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppDeployment.java index f104f2fa0e11..eda2fa47d5fc 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppDeployment.java +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppDeployment.java @@ -4,7 +4,6 @@ package com.azure.resourcemanager.appplatform.models; import com.azure.core.annotation.Fluent; -import com.azure.core.implementation.annotation.Beta; import com.azure.resourcemanager.appplatform.fluent.inner.DeploymentResourceInner; import com.azure.resourcemanager.resources.fluentcore.arm.models.ExternalChildResource; import com.azure.resourcemanager.resources.fluentcore.model.Appliable; @@ -19,7 +18,6 @@ /** An immutable client-side representation of an Azure Spring App Deployment. */ @Fluent -@Beta public interface SpringAppDeployment extends ExternalChildResource, HasInner, diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppDeployments.java b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppDeployments.java index 94b05124a722..adcd9954a1b6 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppDeployments.java +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppDeployments.java @@ -4,7 +4,6 @@ package com.azure.resourcemanager.appplatform.models; import com.azure.core.annotation.Fluent; -import com.azure.core.implementation.annotation.Beta; import com.azure.resourcemanager.appplatform.AppPlatformManager; import com.azure.resourcemanager.appplatform.fluent.DeploymentsClient; import com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingById; @@ -19,7 +18,6 @@ /** Entry point for Spring App Deployments API. */ @Fluent -@Beta public interface SpringAppDeployments extends HasManager, HasInner, diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppDomains.java b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppDomains.java index be102f967284..5f2c5cb75b07 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppDomains.java +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppDomains.java @@ -4,7 +4,6 @@ package com.azure.resourcemanager.appplatform.models; import com.azure.core.annotation.Fluent; -import com.azure.core.implementation.annotation.Beta; import com.azure.resourcemanager.appplatform.AppPlatformManager; import com.azure.resourcemanager.appplatform.fluent.CustomDomainsClient; import com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingById; @@ -19,7 +18,6 @@ /** Entry point for Spring App Custom Domains API. */ @Fluent -@Beta public interface SpringAppDomains extends HasManager, HasInner, diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppServiceBindings.java b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppServiceBindings.java index 93573416739c..280734f28619 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppServiceBindings.java +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringAppServiceBindings.java @@ -4,7 +4,6 @@ package com.azure.resourcemanager.appplatform.models; import com.azure.core.annotation.Fluent; -import com.azure.core.implementation.annotation.Beta; import com.azure.resourcemanager.appplatform.AppPlatformManager; import com.azure.resourcemanager.appplatform.fluent.BindingsClient; import com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingById; @@ -18,7 +17,6 @@ /** Entry point for Spring App Service Bindings API. */ @Fluent -@Beta public interface SpringAppServiceBindings extends HasManager, HasInner, diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringApps.java b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringApps.java index d2cb8fe70155..544aaf72c16e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringApps.java +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringApps.java @@ -4,7 +4,6 @@ package com.azure.resourcemanager.appplatform.models; import com.azure.core.annotation.Fluent; -import com.azure.core.implementation.annotation.Beta; import com.azure.resourcemanager.appplatform.AppPlatformManager; import com.azure.resourcemanager.appplatform.fluent.AppsClient; import com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingById; @@ -19,7 +18,6 @@ /** Entry point for Spring Apps API. */ @Fluent -@Beta public interface SpringApps extends HasManager, HasInner, diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringService.java b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringService.java index cb76e85c3900..58b9969e133f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringService.java +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringService.java @@ -4,7 +4,6 @@ package com.azure.resourcemanager.appplatform.models; import com.azure.core.annotation.Fluent; -import com.azure.core.implementation.annotation.Beta; import com.azure.resourcemanager.appplatform.AppPlatformManager; import com.azure.resourcemanager.appplatform.fluent.inner.ServiceResourceInner; import com.azure.resourcemanager.resources.fluentcore.arm.models.GroupableResource; @@ -17,7 +16,6 @@ /** An immutable client-side representation of an Azure Spring Service. */ @Fluent -@Beta public interface SpringService extends GroupableResource, Refreshable, diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringServiceCertificates.java b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringServiceCertificates.java index 22d36f521044..ce5936d7eda5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringServiceCertificates.java +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringServiceCertificates.java @@ -4,7 +4,6 @@ package com.azure.resourcemanager.appplatform.models; import com.azure.core.annotation.Fluent; -import com.azure.core.implementation.annotation.Beta; import com.azure.resourcemanager.appplatform.AppPlatformManager; import com.azure.resourcemanager.appplatform.fluent.CertificatesClient; import com.azure.resourcemanager.resources.fluentcore.arm.collection.SupportsGettingById; @@ -18,7 +17,6 @@ /** Entry point for Spring Service Certificates API. */ @Fluent -@Beta public interface SpringServiceCertificates extends HasManager, HasInner, diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringServices.java b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringServices.java index 721941981771..3cec47a81576 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringServices.java +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/com/azure/resourcemanager/appplatform/models/SpringServices.java @@ -6,7 +6,6 @@ import com.azure.core.annotation.Fluent; import com.azure.core.http.rest.PagedFlux; import com.azure.core.http.rest.PagedIterable; -import com.azure.core.implementation.annotation.Beta; import com.azure.resourcemanager.appplatform.AppPlatformManager; import com.azure.resourcemanager.appplatform.fluent.ServicesClient; import com.azure.resourcemanager.resources.fluentcore.arm.Region; @@ -23,7 +22,6 @@ /** Entry point for Spring Service management API. */ @Fluent -@Beta public interface SpringServices extends HasManager, HasInner, diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/module-info.java new file mode 100644 index 000000000000..21e82e82083f --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/main/java/module-info.java @@ -0,0 +1,13 @@ +module com.azure.resourcemanager.appplatform { + requires transitive com.azure.resourcemanager.resources; + requires transitive com.azure.storage.file.share; + requires org.apache.commons.compress; + + exports com.azure.resourcemanager.appplatform; + exports com.azure.resourcemanager.appplatform.fluent; + exports com.azure.resourcemanager.appplatform.fluent.inner; + exports com.azure.resourcemanager.appplatform.models; + + opens com.azure.resourcemanager.appplatform.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.appplatform.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/test/java/com/azure/resourcemanager/appplatform/AppPlatformTest.java b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/test/java/com/azure/resourcemanager/appplatform/AppPlatformTest.java index e7261b470278..cabed5a2e56d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/test/java/com/azure/resourcemanager/appplatform/AppPlatformTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/test/java/com/azure/resourcemanager/appplatform/AppPlatformTest.java @@ -3,36 +3,54 @@ package com.azure.resourcemanager.appplatform; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.resourcemanager.appservice.AppServiceManager; import com.azure.resourcemanager.dns.DnsZoneManager; import com.azure.resourcemanager.keyvault.KeyVaultManager; -import com.azure.resourcemanager.resources.core.TestBase; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.test.ResourceManagerTestBase; -import java.io.IOException; +import java.time.temporal.ChronoUnit; +import java.util.List; -public class AppPlatformTest extends TestBase { +public class AppPlatformTest extends ResourceManagerTestBase { protected AppPlatformManager appPlatformManager; protected AppServiceManager appServiceManager; protected DnsZoneManager dnsZoneManager; protected KeyVaultManager keyVaultManager; protected String rgName = ""; - public AppPlatformTest() { - } - - AppPlatformTest(RunCondition runCondition) { - super(runCondition); + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); } @Override - protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) throws IOException { + protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { rgName = generateRandomResourceName("rg", 20); - appPlatformManager = AppPlatformManager.authenticate(httpPipeline, profile, sdkContext); - appServiceManager = AppServiceManager.authenticate(httpPipeline, profile, sdkContext); - dnsZoneManager = DnsZoneManager.authenticate(httpPipeline, profile, sdkContext); - keyVaultManager = KeyVaultManager.authenticate(httpPipeline, profile, sdkContext); + appPlatformManager = AppPlatformManager.authenticate(httpPipeline, profile); + appServiceManager = AppServiceManager.authenticate(httpPipeline, profile); + dnsZoneManager = DnsZoneManager.authenticate(httpPipeline, profile); + keyVaultManager = KeyVaultManager.authenticate(httpPipeline, profile); } @Override diff --git a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/test/java/com/azure/resourcemanager/appplatform/SpringCloudTest.java b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/test/java/com/azure/resourcemanager/appplatform/SpringCloudTest.java index db914e812eb7..1a27d11c27af 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appplatform/src/test/java/com/azure/resourcemanager/appplatform/SpringCloudTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-appplatform/src/test/java/com/azure/resourcemanager/appplatform/SpringCloudTest.java @@ -3,6 +3,7 @@ package com.azure.resourcemanager.appplatform; +import com.azure.core.test.annotation.DoNotRecord; import com.azure.resourcemanager.appplatform.models.RuntimeVersion; import com.azure.resourcemanager.appplatform.models.SpringApp; import com.azure.resourcemanager.appplatform.models.SpringAppDeployment; @@ -49,12 +50,12 @@ public class SpringCloudTest extends AppPlatformTest { private static final String SPRING_CLOUD_SERVICE_PRINCIPAL = "03b39d0f-4213-4864-a245-b1476ec03169"; - SpringCloudTest() { - super(RunCondition.LIVE_ONLY); // need storage data-plane and url check - } - @Test + @DoNotRecord public void canCRUDSpringAppWithDeployment() throws IOException { + if (skipInPlayback()) { + return; + } String serviceName = generateRandomResourceName("springsvc", 15); String appName = "gateway"; String deploymentName = generateRandomResourceName("deploy", 15); @@ -155,7 +156,11 @@ public void canCRUDSpringAppWithDeployment() throws IOException { } @Test + @DoNotRecord public void canCreateCustomDomainWithSsl() throws Exception { + if (skipInPlayback()) { + return; + } String domainName = generateRandomResourceName("jsdkdemo-", 20) + ".com"; String certOrderName = generateRandomResourceName("cert", 15); String vaultName = generateRandomResourceName("vault", 15); diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/pom.xml b/sdk/resourcemanager/azure-resourcemanager-appservice/pom.xml index 6e2161f921f5..9cfa46b5806a 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/pom.xml @@ -99,9 +99,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test @@ -119,6 +119,10 @@ org.apache.httpcomponents httpclient + + org.slf4j + slf4j-api + test diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/com/azure/resourcemanager/appservice/AppServiceManager.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/com/azure/resourcemanager/appservice/AppServiceManager.java index c52bda6f70da..9c2835fca399 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/com/azure/resourcemanager/appservice/AppServiceManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/com/azure/resourcemanager/appservice/AppServiceManager.java @@ -23,7 +23,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.storage.StorageManager; @@ -112,8 +112,9 @@ private AppServiceManager(HttpPipeline httpPipeline, AzureProfile profile, SdkCo profile, new WebSiteManagementClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); keyVaultManager = KeyVaultManager.authenticate(httpPipeline, profile, sdkContext); diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/com/azure/resourcemanager/appservice/implementation/WebAppBaseImpl.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/com/azure/resourcemanager/appservice/implementation/WebAppBaseImpl.java index 8bf20c44f4e1..8f6c269a92ba 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/com/azure/resourcemanager/appservice/implementation/WebAppBaseImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/com/azure/resourcemanager/appservice/implementation/WebAppBaseImpl.java @@ -51,7 +51,7 @@ import com.azure.resourcemanager.appservice.fluent.inner.SlotConfigNamesResourceInner; import com.azure.resourcemanager.appservice.fluent.inner.StringDictionaryInner; import com.azure.resourcemanager.authorization.models.BuiltInRole; -import com.azure.resourcemanager.authorization.implementation.RoleAssignmentHelper; +import com.azure.resourcemanager.authorization.utils.RoleAssignmentHelper; import com.azure.resourcemanager.msi.models.Identity; import com.azure.resourcemanager.resources.fluentcore.arm.models.implementation.GroupableResourceImpl; import com.azure.resourcemanager.resources.fluentcore.dag.FunctionalTaskItem; diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/com/azure/resourcemanager/appservice/implementation/WebAppMsiHandler.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/com/azure/resourcemanager/appservice/implementation/WebAppMsiHandler.java index 2c3bae53a274..1ff2715d6957 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/com/azure/resourcemanager/appservice/implementation/WebAppMsiHandler.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/com/azure/resourcemanager/appservice/implementation/WebAppMsiHandler.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.appservice.fluent.inner.SitePatchResourceInner; import com.azure.resourcemanager.appservice.models.WebAppBase; import com.azure.resourcemanager.authorization.AuthorizationManager; -import com.azure.resourcemanager.authorization.implementation.RoleAssignmentHelper; +import com.azure.resourcemanager.authorization.utils.RoleAssignmentHelper; import com.azure.resourcemanager.msi.models.Identity; import com.azure.resourcemanager.resources.fluentcore.dag.TaskGroup; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/module-info.java new file mode 100644 index 000000000000..e2134cc1e629 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/main/java/module-info.java @@ -0,0 +1,14 @@ +module com.azure.resourcemanager.appservice { + requires transitive com.azure.resourcemanager.keyvault; + requires transitive com.azure.resourcemanager.msi; + requires transitive com.azure.resourcemanager.dns; + requires transitive com.azure.resourcemanager.storage; + + exports com.azure.resourcemanager.appservice; + exports com.azure.resourcemanager.appservice.fluent; + exports com.azure.resourcemanager.appservice.fluent.inner; + exports com.azure.resourcemanager.appservice.models; + + opens com.azure.resourcemanager.appservice.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.appservice.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/AppServicePlansTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/AppServicePlansTests.java index aca05ae1cc6f..6abf7cda1b9b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/AppServicePlansTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/AppServicePlansTests.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.appservice.models.OperatingSystem; import com.azure.resourcemanager.appservice.models.PricingTier; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/AppServiceTest.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/AppServiceTest.java index a7cfd3991baf..58b7bb2ef033 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/AppServiceTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/AppServiceTest.java @@ -11,11 +11,14 @@ import com.azure.core.annotation.PathParam; import com.azure.core.annotation.Post; import com.azure.core.annotation.ServiceInterface; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; import com.azure.core.http.HttpPipelineBuilder; import com.azure.core.http.policy.HttpLogDetailLevel; import com.azure.core.http.policy.HttpLogOptions; import com.azure.core.http.policy.HttpLoggingPolicy; +import com.azure.core.http.policy.HttpPipelinePolicy; import com.azure.core.http.policy.RetryPolicy; import com.azure.core.http.rest.Response; import com.azure.core.http.rest.RestProxy; @@ -25,11 +28,10 @@ import com.azure.resourcemanager.appservice.models.AppServiceDomain; import com.azure.resourcemanager.appservice.models.PublishingProfile; import com.azure.resourcemanager.keyvault.KeyVaultManager; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.CountryIsoCode; import com.azure.resourcemanager.resources.fluentcore.arm.CountryPhoneCode; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; import java.io.IOException; import java.io.InputStream; @@ -37,8 +39,14 @@ import java.nio.ByteBuffer; import java.nio.charset.StandardCharsets; import java.time.temporal.ChronoUnit; +import java.util.List; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.fluentcore.utils.Utils; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; import org.apache.commons.net.ftp.FTP; import org.apache.commons.net.ftp.FTPClient; import org.junit.jupiter.api.Assertions; @@ -46,7 +54,7 @@ import reactor.core.publisher.Mono; /** The base for app service tests. */ -public class AppServiceTest extends TestBase { +public class AppServiceTest extends ResourceManagerTestBase { protected ResourceManager resourceManager; protected KeyVaultManager keyVaultManager; protected AppServiceManager appServiceManager; @@ -55,23 +63,33 @@ public class AppServiceTest extends TestBase { protected AppServiceCertificateOrder certificateOrder; protected String rgName = ""; - // private static OkHttpClient httpClient = new OkHttpClient.Builder().readTimeout(3, TimeUnit.MINUTES).build(); - - public AppServiceTest() { - } - - AppServiceTest(RunCondition runCondition) { - super(runCondition); + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); } @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { rgName = generateRandomResourceName("javacsmrg", 20); + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); resourceManager = - ResourceManager.authenticate(httpPipeline, profile).withSdkContext(sdkContext).withDefaultSubscription(); - - keyVaultManager = KeyVaultManager.authenticate(httpPipeline, profile, sdkContext); - + ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); + keyVaultManager = KeyVaultManager.authenticate(httpPipeline, profile); appServiceManager = AppServiceManager.authenticate(httpPipeline, profile, sdkContext); // useExistingDomainAndCertificate(); diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/AuthenticationTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/AuthenticationTests.java index 5826ca9cece5..afecce089a27 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/AuthenticationTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/AuthenticationTests.java @@ -9,7 +9,7 @@ import com.azure.resourcemanager.appservice.models.PricingTier; import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/DeploymentSlotsTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/DeploymentSlotsTests.java index e5052b5c03f8..860cd751d4b7 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/DeploymentSlotsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/DeploymentSlotsTests.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.appservice.models.WebContainer; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/DiagnosticLogsTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/DiagnosticLogsTests.java index 915236727dd4..6b694ed40e9b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/DiagnosticLogsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/DiagnosticLogsTests.java @@ -9,7 +9,7 @@ import com.azure.resourcemanager.appservice.models.PricingTier; import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; @@ -31,7 +31,7 @@ protected void cleanUpResources() { } @Test - public void canCRUDWebAppWithDiagnosticLogs() throws Exception { + public void canCRUDWebAppWithDiagnosticLogs() { // Create with new app service plan WebApp webApp1 = appServiceManager diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/FunctionAppsTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/FunctionAppsTests.java index c115693271cc..6dc89c361808 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/FunctionAppsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/FunctionAppsTests.java @@ -15,7 +15,7 @@ import com.azure.resourcemanager.appservice.models.SkuName; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.storage.models.StorageAccount; import com.azure.resourcemanager.storage.models.StorageAccountSkuType; @@ -53,7 +53,7 @@ protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile rgName1 = generateRandomResourceName("javacsmrg", 20); rgName2 = generateRandomResourceName("javacsmrg", 20); - storageManager = StorageManager.authenticate(httpPipeline, profile, sdkContext); + storageManager = StorageManager.authenticate(httpPipeline, profile); super.initializeClients(httpPipeline, profile); } diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/FunctionDeploymentSlotsTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/FunctionDeploymentSlotsTests.java index 9f0181b57c6c..0195c1822b4a 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/FunctionDeploymentSlotsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/FunctionDeploymentSlotsTests.java @@ -17,7 +17,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.Region; import java.util.Map; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/HostnameSslTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/HostnameSslTests.java index 970936b02f07..d0418d269dd2 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/HostnameSslTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/HostnameSslTests.java @@ -9,7 +9,7 @@ import com.azure.resourcemanager.appservice.models.PricingTier; import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import javax.net.ssl.SSLPeerUnverifiedException; import org.junit.jupiter.api.Assertions; diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/LinuxWebAppsTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/LinuxWebAppsTests.java index 0cc3789be7d7..eb11a1fce1e1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/LinuxWebAppsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/LinuxWebAppsTests.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.appservice.models.RuntimeStack; import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import java.io.ByteArrayInputStream; import java.util.zip.ZipInputStream; diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/SourceControlTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/SourceControlTests.java index be84ab6fc8b0..fb8e3aaaeabc 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/SourceControlTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/SourceControlTests.java @@ -8,7 +8,7 @@ import com.azure.resourcemanager.appservice.models.PricingTier; import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WarDeployTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WarDeployTests.java index 7b3f0ce8994e..3b77076ccb09 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WarDeployTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WarDeployTests.java @@ -14,7 +14,7 @@ import java.io.FileInputStream; import java.io.InputStream; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppConfigTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppConfigTests.java index a58e09b2dfff..a7785734ba80 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppConfigTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppConfigTests.java @@ -18,7 +18,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.Region; import java.util.Map; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppsMsiTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppsMsiTests.java index 830091300a15..9aa3caf14651 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppsMsiTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppsMsiTests.java @@ -17,9 +17,11 @@ import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import java.util.Set; + +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; @@ -34,6 +36,8 @@ protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile webappName1 = generateRandomResourceName("java-webapp-", 20); rgName1 = generateRandomResourceName("javacsmrg", 20); vaultName = generateRandomResourceName("java-vault-", 20); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); this.msiManager = MSIManager.authenticate(httpPipeline, profile, sdkContext); super.initializeClients(httpPipeline, profile); diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppsTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppsTests.java index bb92bfcc331b..9583fab9a4be 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppsTests.java @@ -13,7 +13,7 @@ import com.azure.resourcemanager.appservice.models.WebAppRuntimeStack; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppsWebDeployTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppsWebDeployTests.java index 6af1f5e3d385..b62bf790eb95 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppsWebDeployTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/WebAppsWebDeployTests.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.appservice.models.WebContainer; import com.azure.resourcemanager.appservice.models.WebDeployment; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/ZipDeployTests.java b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/ZipDeployTests.java index e3dbe07b8549..43f9dcca3677 100644 --- a/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/ZipDeployTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-appservice/src/test/java/com/azure/resourcemanager/appservice/ZipDeployTests.java @@ -4,12 +4,12 @@ import com.azure.core.http.HttpPipeline; import com.azure.core.http.rest.PagedIterable; +import com.azure.core.test.annotation.DoNotRecord; import com.azure.resourcemanager.appservice.models.FunctionApp; import com.azure.resourcemanager.appservice.models.FunctionEnvelope; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import java.io.File; import org.junit.jupiter.api.Assertions; @@ -18,19 +18,18 @@ public class ZipDeployTests extends AppServiceTest { private String webappName4 = ""; - public ZipDeployTests() { - super(TestBase.RunCondition.LIVE_ONLY); - } - @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { webappName4 = generateRandomResourceName("java-func-", 20); - super.initializeClients(httpPipeline, profile); } @Test + @DoNotRecord public void canZipDeployFunction() { + if (skipInPlayback()) { + return; + } // Create function app FunctionApp functionApp = appServiceManager diff --git a/sdk/resourcemanager/azure-resourcemanager-authorization/pom.xml b/sdk/resourcemanager/azure-resourcemanager-authorization/pom.xml index 9de6e4b7dfb0..0936f8a87117 100644 --- a/sdk/resourcemanager/azure-resourcemanager-authorization/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-authorization/pom.xml @@ -17,8 +17,8 @@ 2.0.0-beta.4 jar - Microsoft Azure SDK for Graph RBAC Management - This package contains Microsoft Azure Graph RBAC Management SDK. For documentation on how to use this package, please see https://aka.ms/azure-sdk-java-mgmt + Microsoft Azure SDK for Authorization Management + This package contains Microsoft Azure Authorization Management SDK. For documentation on how to use this package, please see https://aka.ms/azure-sdk-java-mgmt https://github.com/Azure/azure-sdk-for-java @@ -79,9 +79,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/com/azure/resourcemanager/authorization/AuthorizationManager.java b/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/com/azure/resourcemanager/authorization/AuthorizationManager.java index b405b44aee4e..e1647c27c230 100644 --- a/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/com/azure/resourcemanager/authorization/AuthorizationManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/com/azure/resourcemanager/authorization/AuthorizationManager.java @@ -20,7 +20,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.model.HasInner; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; @@ -112,16 +112,18 @@ private AuthorizationManager(HttpPipeline httpPipeline, AzureProfile profile, Sd this.graphRbacManagementClient = new GraphRbacManagementClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getGraphEndpoint()) - .tenantId(profile.tenantId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getGraphEndpoint()) + .tenantId(profile.getTenantId()) .buildClient(); this.authorizationManagementClient = new AuthorizationManagementClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(); - this.tenantId = profile.tenantId(); + this.tenantId = profile.getTenantId(); this.sdkContext = sdkContext; } diff --git a/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/com/azure/resourcemanager/authorization/implementation/RoleAssignmentHelper.java b/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/com/azure/resourcemanager/authorization/utils/RoleAssignmentHelper.java similarity index 99% rename from sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/com/azure/resourcemanager/authorization/implementation/RoleAssignmentHelper.java rename to sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/com/azure/resourcemanager/authorization/utils/RoleAssignmentHelper.java index d1890d45ac4b..e946307faa74 100644 --- a/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/com/azure/resourcemanager/authorization/implementation/RoleAssignmentHelper.java +++ b/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/com/azure/resourcemanager/authorization/utils/RoleAssignmentHelper.java @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -package com.azure.resourcemanager.authorization.implementation; +package com.azure.resourcemanager.authorization.utils; import com.azure.core.management.exception.ManagementException; import com.azure.resourcemanager.authorization.AuthorizationManager; diff --git a/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/com/azure/resourcemanager/authorization/utils/package-info.java b/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/com/azure/resourcemanager/authorization/utils/package-info.java new file mode 100644 index 000000000000..a30520022a97 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/com/azure/resourcemanager/authorization/utils/package-info.java @@ -0,0 +1,7 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +/** + * Package containing the utility classes for Authorization. + */ +package com.azure.resourcemanager.authorization.utils; diff --git a/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/module-info.java new file mode 100644 index 000000000000..8a46290c4f02 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-authorization/src/main/java/module-info.java @@ -0,0 +1,12 @@ +module com.azure.resourcemanager.authorization { + requires transitive com.azure.resourcemanager.resources; + + exports com.azure.resourcemanager.authorization; + exports com.azure.resourcemanager.authorization.fluent; + exports com.azure.resourcemanager.authorization.fluent.inner; + exports com.azure.resourcemanager.authorization.models; + exports com.azure.resourcemanager.authorization.utils; + + opens com.azure.resourcemanager.authorization.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.authorization.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/ApplicationsTests.java b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/ApplicationsTests.java index d71488d53bc1..261768a6f9c1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/ApplicationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/ApplicationsTests.java @@ -12,7 +12,7 @@ public class ApplicationsTests extends GraphRbacManagementTest { @Test public void canCRUDApplication() throws Exception { - String name = sdkContext.randomResourceName("javasdkapp", 20); + String name = generateRandomResourceName("javasdkapp", 20); ActiveDirectoryApplication application = null; try { diff --git a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/GraphRbacManagementTest.java b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/GraphRbacManagementTest.java index 4866774457a1..7aa888d30993 100644 --- a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/GraphRbacManagementTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/GraphRbacManagementTest.java @@ -3,24 +3,54 @@ package com.azure.resourcemanager.authorization; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; -import com.azure.resourcemanager.resources.core.TestBase; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; + import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.InputStream; +import java.time.temporal.ChronoUnit; +import java.util.List; /** The base for storage manager tests. */ -public abstract class GraphRbacManagementTest extends TestBase { +public abstract class GraphRbacManagementTest extends ResourceManagerTestBase { protected AuthorizationManager authorizationManager; protected ResourceManager resourceManager; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { - authorizationManager = AuthorizationManager.authenticate(httpPipeline, profile, sdkContext); + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + authorizationManager = AuthorizationManager.authenticate(httpPipeline, profile); resourceManager = - ResourceManager.authenticate(httpPipeline, profile).withSdkContext(sdkContext).withDefaultSubscription(); + ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); } @Override diff --git a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/GroupsTests.java b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/GroupsTests.java index dcbe47fdeaa1..93fe052b6334 100644 --- a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/GroupsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/GroupsTests.java @@ -17,11 +17,11 @@ public class GroupsTests extends GraphRbacManagementTest { @Test - public void canCRUDGroup() throws Exception { - String userName = sdkContext.randomResourceName("user", 16); - String spName = sdkContext.randomResourceName("sp", 16); - String group1Name = sdkContext.randomResourceName("group", 16); - String group2Name = sdkContext.randomResourceName("group", 16); + public void canCRUDGroup() { + String userName = generateRandomResourceName("user", 16); + String spName = generateRandomResourceName("sp", 16); + String group1Name = generateRandomResourceName("group", 16); + String group2Name = generateRandomResourceName("group", 16); ActiveDirectoryUser user = null; ServicePrincipal servicePrincipal = null; ActiveDirectoryGroup group1 = null; diff --git a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/RoleAssignmentTests.java b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/RoleAssignmentTests.java index 2e3ef9e25498..7dd01c3d5bef 100644 --- a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/RoleAssignmentTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/RoleAssignmentTests.java @@ -12,9 +12,9 @@ public class RoleAssignmentTests extends GraphRbacManagementTest { @Test - public void canCRUDRoleAssignment() throws Exception { - String roleAssignmentName = sdkContext.randomUuid(); - String spName = sdkContext.randomResourceName("sp", 20); + public void canCRUDRoleAssignment() { + String roleAssignmentName = generateRandomUuid(); + String spName = generateRandomResourceName("sp", 20); ServicePrincipal sp = authorizationManager.servicePrincipals().define(spName).withNewApplication("http://" + spName).create(); diff --git a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/RoleDefinitionTests.java b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/RoleDefinitionTests.java index 933f5ad6c0be..4c0572cb757e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/RoleDefinitionTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/RoleDefinitionTests.java @@ -9,7 +9,7 @@ public class RoleDefinitionTests extends GraphRbacManagementTest { @Test - public void canGetRoleByRoleName() throws Exception { + public void canGetRoleByRoleName() { RoleDefinition roleDefinition = authorizationManager .roleDefinitions() diff --git a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/ServicePrincipalsTests.java b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/ServicePrincipalsTests.java index 842d9c42dfba..ed6bd0091a55 100644 --- a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/ServicePrincipalsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/ServicePrincipalsTests.java @@ -22,7 +22,7 @@ public class ServicePrincipalsTests extends GraphRbacManagementTest { @Test public void canCRUDServicePrincipal() throws Exception { - String name = sdkContext.randomResourceName("ssp", 21); + String name = generateRandomResourceName("ssp", 21); ServicePrincipal servicePrincipal = null; try { // Create @@ -80,8 +80,8 @@ public void canCRUDServicePrincipal() throws Exception { @Test @Disabled("Do not record - recorded JSON may contain auth info") public void canCRUDServicePrincipalWithRole() throws Exception { - String name = sdkContext.randomResourceName("ssp", 21); - String rgName = sdkContext.randomResourceName("rg", 22); + String name = generateRandomResourceName("ssp", 21); + String rgName = generateRandomResourceName("rg", 22); ServicePrincipal servicePrincipal = null; String authFile = "/Users/jianghlu/Downloads/graphtestapp.azureauth"; String subscription = "0b1f6471-1bf0-4dda-aec3-cb9272f09590"; diff --git a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/UsersTests.java b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/UsersTests.java index fb380ddcfc07..5b8ee5d38a5b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/UsersTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-authorization/src/test/java/com/azure/resourcemanager/authorization/UsersTests.java @@ -12,28 +12,28 @@ public class UsersTests extends GraphRbacManagementTest { @Test @Disabled("Need a specific domain") - public void canGetUserByEmail() throws Exception { + public void canGetUserByEmail() { ActiveDirectoryUser user = authorizationManager.users().getByName("admin@azuresdkteam.onmicrosoft.com"); Assertions.assertEquals("Admin", user.name()); } @Test @Disabled("Need a specific domain") - public void canGetUserByForeignEmail() throws Exception { + public void canGetUserByForeignEmail() { ActiveDirectoryUser user = authorizationManager.users().getByName("jianghlu@microsoft.com"); Assertions.assertEquals("Jianghao Lu", user.name()); } @Test @Disabled("Need a specific domain") - public void canGetUserByDisplayName() throws Exception { + public void canGetUserByDisplayName() { ActiveDirectoryUser user = authorizationManager.users().getByName("Reader zero"); Assertions.assertEquals("Reader zero", user.name()); } @Test - public void canCreateUser() throws Exception { - String name = sdkContext.randomResourceName("user", 16); + public void canCreateUser() { + String name = generateRandomResourceName("user", 16); ActiveDirectoryUser user = authorizationManager .users() @@ -48,8 +48,8 @@ public void canCreateUser() throws Exception { } @Test - public void canUpdateUser() throws Exception { - String name = sdkContext.randomResourceName("user", 16); + public void canUpdateUser() { + String name = generateRandomResourceName("user", 16); ActiveDirectoryUser user = authorizationManager .users() diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/pom.xml b/sdk/resourcemanager/azure-resourcemanager-compute/pom.xml index 74f7a8f98e52..bf1c11ec94dd 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-compute/pom.xml @@ -99,9 +99,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/ComputeManager.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/ComputeManager.java index 066f095b187f..c762dd217bd8 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/ComputeManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/ComputeManager.java @@ -37,7 +37,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.storage.StorageManager; @@ -133,7 +133,9 @@ private ComputeManager(HttpPipeline httpPipeline, AzureProfile profile, SdkConte profile, new ComputeManagementClientBuilder() .pipeline(httpPipeline) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); storageManager = StorageManager.authenticate(httpPipeline, profile, sdkContext); diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineImpl.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineImpl.java index a1c318327643..7a895470dc37 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineImpl.java @@ -5,6 +5,7 @@ import com.azure.core.http.rest.PagedIterable; import com.azure.core.management.AzureEnvironment; import com.azure.core.management.SubResource; +import com.azure.core.management.provider.IdentifierProvider; import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.compute.ComputeManager; import com.azure.resourcemanager.compute.models.AvailabilitySet; @@ -62,7 +63,7 @@ import com.azure.resourcemanager.compute.fluent.inner.VirtualMachineUpdateInner; import com.azure.resourcemanager.authorization.models.BuiltInRole; import com.azure.resourcemanager.authorization.AuthorizationManager; -import com.azure.resourcemanager.authorization.implementation.RoleAssignmentHelper; +import com.azure.resourcemanager.authorization.utils.RoleAssignmentHelper; import com.azure.resourcemanager.msi.models.Identity; import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.network.models.NetworkInterface; @@ -76,7 +77,6 @@ import com.azure.resourcemanager.resources.fluentcore.model.Creatable; import com.azure.resourcemanager.resources.fluentcore.model.Indexable; import com.azure.resourcemanager.resources.fluentcore.model.implementation.AcceptedImpl; -import com.azure.resourcemanager.resources.fluentcore.utils.ResourceNamer; import com.azure.resourcemanager.resources.fluentcore.utils.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; import com.azure.resourcemanager.storage.StorageManager; @@ -118,7 +118,7 @@ class VirtualMachineImpl // the name of the virtual machine private final String vmName; // used to generate unique name for any dependency resources - private final ResourceNamer namer; + private final IdentifierProvider namer; // unique key of a creatable storage account to be used for virtual machine child resources that // requires storage [OS disk, data disk, boot diagnostics etc..] private String creatableStorageAccountKey; @@ -194,7 +194,7 @@ public JsonProperty.Access findPropertyAccess(Annotated annotated) { this.authorizationManager = authorizationManager; this.vmName = name; this.isMarketplaceLinuxImage = false; - this.namer = this.manager().sdkContext().getResourceNamerFactory().createResourceNamer(this.vmName); + this.namer = this.manager().sdkContext().createIdentifierProvider(this.vmName); this.creatableSecondaryNetworkInterfaceKeys = new ArrayList<>(); this.existingSecondaryNetworkInterfacesToAssociate = new ArrayList<>(); this.virtualMachineExtensions = diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineMsiHandler.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineMsiHandler.java index fe2564bff9bb..8b5fab39acf1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineMsiHandler.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineMsiHandler.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.compute.fluent.inner.VirtualMachineInner; import com.azure.resourcemanager.compute.fluent.inner.VirtualMachineUpdateInner; import com.azure.resourcemanager.authorization.AuthorizationManager; -import com.azure.resourcemanager.authorization.implementation.RoleAssignmentHelper; +import com.azure.resourcemanager.authorization.utils.RoleAssignmentHelper; import com.azure.resourcemanager.msi.models.Identity; import com.azure.resourcemanager.resources.fluentcore.dag.TaskGroup; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetImpl.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetImpl.java index f5e00bf8dc5e..24b9a6747930 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetImpl.java @@ -6,6 +6,7 @@ import com.azure.core.http.rest.PagedFlux; import com.azure.core.http.rest.PagedIterable; import com.azure.core.management.SubResource; +import com.azure.core.management.provider.IdentifierProvider; import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.compute.ComputeManager; import com.azure.resourcemanager.compute.models.AdditionalCapabilities; @@ -61,7 +62,7 @@ import com.azure.resourcemanager.compute.fluent.inner.VirtualMachineScaleSetInner; import com.azure.resourcemanager.authorization.models.BuiltInRole; import com.azure.resourcemanager.authorization.AuthorizationManager; -import com.azure.resourcemanager.authorization.implementation.RoleAssignmentHelper; +import com.azure.resourcemanager.authorization.utils.RoleAssignmentHelper; import com.azure.resourcemanager.msi.models.Identity; import com.azure.resourcemanager.network.models.ApplicationSecurityGroup; import com.azure.resourcemanager.network.models.LoadBalancer; @@ -77,7 +78,6 @@ import com.azure.resourcemanager.resources.fluentcore.arm.ResourceUtils; import com.azure.resourcemanager.resources.fluentcore.arm.models.implementation.GroupableParentResourceImpl; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.utils.ResourceNamer; import com.azure.resourcemanager.resources.fluentcore.utils.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; import com.azure.resourcemanager.storage.StorageManager; @@ -114,7 +114,7 @@ public class VirtualMachineScaleSetImpl private final StorageManager storageManager; private final NetworkManager networkManager; // used to generate unique name for any dependency resources - private final ResourceNamer namer; + private final IdentifierProvider namer; private boolean isMarketplaceLinuxImage = false; // name of an existing subnet in the primary network to use private String existingPrimaryNetworkSubnetNameToAssociate; @@ -168,7 +168,7 @@ public class VirtualMachineScaleSetImpl super(name, innerModel, computeManager); this.storageManager = storageManager; this.networkManager = networkManager; - this.namer = this.manager().sdkContext().getResourceNamerFactory().createResourceNamer(this.name()); + this.namer = this.manager().sdkContext().createIdentifierProvider(this.name()); this.managedDataDisks = new ManagedDataDiskCollection(this); this.virtualMachineScaleSetMsiHandler = new VirtualMachineScaleSetMsiHandler(authorizationManager, this); this.bootDiagnosticsHandler = new BootDiagnosticsHandler(this); diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetMsiHandler.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetMsiHandler.java index de83ce0ae3bb..3fab388b7b19 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetMsiHandler.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/com/azure/resourcemanager/compute/implementation/VirtualMachineScaleSetMsiHandler.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachineScaleSetUpdate; import com.azure.resourcemanager.compute.fluent.inner.VirtualMachineScaleSetInner; import com.azure.resourcemanager.authorization.AuthorizationManager; -import com.azure.resourcemanager.authorization.implementation.RoleAssignmentHelper; +import com.azure.resourcemanager.authorization.utils.RoleAssignmentHelper; import com.azure.resourcemanager.msi.models.Identity; import com.azure.resourcemanager.resources.fluentcore.dag.TaskGroup; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/module-info.java new file mode 100644 index 000000000000..df697ab27b38 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/main/java/module-info.java @@ -0,0 +1,13 @@ +module com.azure.resourcemanager.compute { + requires transitive com.azure.resourcemanager.msi; + requires transitive com.azure.resourcemanager.storage; + requires transitive com.azure.resourcemanager.network; + + exports com.azure.resourcemanager.compute; + exports com.azure.resourcemanager.compute.fluent; + exports com.azure.resourcemanager.compute.fluent.inner; + exports com.azure.resourcemanager.compute.models; + + opens com.azure.resourcemanager.compute.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.compute.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/ComputeManagementTest.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/ComputeManagementTest.java index 69c2041a220a..14eafbaedac1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/ComputeManagementTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/ComputeManagementTest.java @@ -3,7 +3,12 @@ package com.azure.resourcemanager.compute; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.resourcemanager.authorization.AuthorizationManager; import com.azure.resourcemanager.keyvault.KeyVaultManager; import com.azure.resourcemanager.network.models.LoadBalancer; @@ -13,28 +18,25 @@ import com.azure.resourcemanager.network.models.PublicIPSkuType; import com.azure.resourcemanager.network.models.TransportProtocol; import com.azure.resourcemanager.network.NetworkManager; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.models.ResourceGroup; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; import com.azure.resourcemanager.storage.StorageManager; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; import com.jcraft.jsch.JSch; import com.jcraft.jsch.JSchException; import java.io.IOException; +import java.time.temporal.ChronoUnit; import java.util.ArrayList; import java.util.List; import org.junit.jupiter.api.Assertions; -public abstract class ComputeManagementTest extends TestBase { - public ComputeManagementTest() { - super(TestBase.RunCondition.BOTH); - } - - public ComputeManagementTest(TestBase.RunCondition runCondition) { - super(runCondition); - } - +public abstract class ComputeManagementTest extends ResourceManagerTestBase { protected ResourceManager resourceManager; protected ComputeManager computeManager; protected NetworkManager networkManager; @@ -42,19 +44,35 @@ public ComputeManagementTest(TestBase.RunCondition runCondition) { protected AuthorizationManager authorizationManager; protected KeyVaultManager keyVaultManager; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); resourceManager = ResourceManager.authenticate(httpPipeline, profile).withSdkContext(sdkContext).withDefaultSubscription(); - computeManager = ComputeManager.authenticate(httpPipeline, profile, sdkContext); - networkManager = NetworkManager.authenticate(httpPipeline, profile, sdkContext); - storageManager = StorageManager.authenticate(httpPipeline, profile, sdkContext); - keyVaultManager = KeyVaultManager.authenticate(httpPipeline, profile, sdkContext); - authorizationManager = AuthorizationManager.authenticate(httpPipeline, profile, sdkContext); } @@ -119,8 +137,7 @@ protected void sleep(long milli) { } } - protected LoadBalancer createHttpLoadBalancers(Region region, ResourceGroup resourceGroup, String id) - throws Exception { + protected LoadBalancer createHttpLoadBalancers(Region region, ResourceGroup resourceGroup, String id) { final String loadBalancerName = generateRandomResourceName("extlb" + id + "-", 18); final String publicIpName = "pip-" + loadBalancerName; final String frontendName = loadBalancerName + "-FE1"; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/ComputeSkuTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/ComputeSkuTests.java index 8865870d6224..298fe5abf0d2 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/ComputeSkuTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/ComputeSkuTests.java @@ -15,7 +15,7 @@ import java.util.Map; import java.util.Set; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/ManagedDiskOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/ManagedDiskOperationsTests.java index b486cc818636..935e3a9ba7e0 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/ManagedDiskOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/ManagedDiskOperationsTests.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/SharedGalleryImageTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/SharedGalleryImageTests.java index 2bd96e2ef58f..f4ce90d18c14 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/SharedGalleryImageTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/SharedGalleryImageTests.java @@ -20,7 +20,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachineUnmanagedDataDisk; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineAvailabilityZoneOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineAvailabilityZoneOperationsTests.java index d71b93438a86..f29b4581e5a8 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineAvailabilityZoneOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineAvailabilityZoneOperationsTests.java @@ -29,7 +29,7 @@ import java.util.Iterator; import java.util.Map; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineBootDiagnosticsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineBootDiagnosticsTests.java index 2e49ac258ef9..3624f6f42609 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineBootDiagnosticsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineBootDiagnosticsTests.java @@ -9,7 +9,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachine; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.StorageAccount; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; @@ -54,7 +54,7 @@ public void canEnableBootDiagnosticsWithImplicitStorageOnManagedVMCreation() { @Test public void canEnableBootDiagnosticsWithCreatableStorageOnManagedVMCreation() { - final String storageName = sdkContext.randomResourceName("st", 14); + final String storageName = generateRandomResourceName("st", 14); Creatable creatableStorageAccount = storageManager.storageAccounts().define(storageName).withRegion(region).withNewResourceGroup(rgName); @@ -80,7 +80,7 @@ public void canEnableBootDiagnosticsWithCreatableStorageOnManagedVMCreation() { @Test public void canEnableBootDiagnosticsWithExplicitStorageOnManagedVMCreation() { - final String storageName = sdkContext.randomResourceName("st", 14); + final String storageName = generateRandomResourceName("st", 14); StorageAccount storageAccount = storageManager .storageAccounts() @@ -171,7 +171,7 @@ public void bootDiagnosticsShouldUsesOSUnManagedDiskImplicitStorage() { @Test public void bootDiagnosticsShouldUseUnManagedDisksExplicitStorage() { - final String storageName = sdkContext.randomResourceName("st", 14); + final String storageName = generateRandomResourceName("st", 14); StorageAccount storageAccount = storageManager .storageAccounts() @@ -252,7 +252,7 @@ public void canEnableBootDiagnosticsWithImplicitStorageOnUnManagedVMCreation() { @Test public void canEnableBootDiagnosticsWithCreatableStorageOnUnManagedVMCreation() { - final String storageName = sdkContext.randomResourceName("st", 14); + final String storageName = generateRandomResourceName("st", 14); Creatable creatableStorageAccount = storageManager.storageAccounts().define(storageName).withRegion(region).withNewResourceGroup(rgName); diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineCustomImageOperationsTest.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineCustomImageOperationsTest.java index f31287abee33..6c39d0cbc8dd 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineCustomImageOperationsTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineCustomImageOperationsTest.java @@ -19,7 +19,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachineUnmanagedDataDisk; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.StorageAccount; import java.io.IOException; import java.util.Map; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineEMSILMSIOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineEMSILMSIOperationsTests.java index 7965dbd478c8..27293375d17f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineEMSILMSIOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineEMSILMSIOperationsTests.java @@ -3,7 +3,12 @@ package com.azure.resourcemanager.compute; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.core.http.rest.PagedIterable; import com.azure.resourcemanager.compute.models.KnownLinuxVirtualMachineImage; import com.azure.resourcemanager.compute.models.ResourceIdentityType; @@ -14,20 +19,27 @@ import com.azure.resourcemanager.msi.MSIManager; import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.network.NetworkManager; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.models.ResourceGroup; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; -import java.io.IOException; + +import java.time.temporal.ChronoUnit; import java.util.Iterator; +import java.util.List; import java.util.Set; + +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import reactor.core.publisher.Mono; -public class VirtualMachineEMSILMSIOperationsTests extends TestBase { +public class VirtualMachineEMSILMSIOperationsTests extends ResourceManagerTestBase { private String rgName = ""; private Region region = Region.fromName("West Central US"); private final String vmName = "javavm"; @@ -38,8 +50,28 @@ public class VirtualMachineEMSILMSIOperationsTests extends TestBase { private NetworkManager networkManager; @Override - protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) - throws IOException { + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + + @Override + protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); this.msiManager = MSIManager.authenticate(httpPipeline, profile, sdkContext); this.resourceManager = msiManager.resourceManager(); this.computeManager = ComputeManager.authenticate(httpPipeline, profile, sdkContext); diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineEncryptionOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineEncryptionOperationsTests.java index a96a75e5afd2..48951f9e42c6 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineEncryptionOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineEncryptionOperationsTests.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachine; import com.azure.resourcemanager.compute.models.VirtualMachineSizeTypes; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineExtensionOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineExtensionOperationsTests.java index d67e7bb66b78..2a9092be371e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineExtensionOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineExtensionOperationsTests.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachineExtension; import com.azure.resourcemanager.compute.models.VirtualMachineSizeTypes; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.StorageAccount; import com.fasterxml.jackson.databind.ObjectMapper; import java.io.InputStream; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineManagedDiskOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineManagedDiskOperationsTests.java index c72a906bf763..f2b23fbc3532 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineManagedDiskOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineManagedDiskOperationsTests.java @@ -22,7 +22,7 @@ import com.azure.resourcemanager.resources.fluentcore.model.Creatable; import java.util.Map; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineManagedServiceIdentityOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineManagedServiceIdentityOperationsTests.java index c45c71adf9bc..39f1e25d21f8 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineManagedServiceIdentityOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineManagedServiceIdentityOperationsTests.java @@ -16,7 +16,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.dag.TaskGroup; import com.azure.resourcemanager.resources.fluentcore.model.Indexable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.StorageAccount; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineOperationsTests.java index 1bf08a91f275..1bb37a0505da 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineOperationsTests.java @@ -38,7 +38,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.models.Resource; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; import com.azure.resourcemanager.resources.fluentcore.model.CreatedResources; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.SkuName; import com.azure.resourcemanager.storage.models.StorageAccount; import java.util.ArrayList; @@ -655,7 +655,7 @@ public void canStreamParallelCreatedVirtualMachinesAndRelatedResources() throws @Test public void canSetStorageAccountForUnmanagedDisk() { - final String storageName = sdkContext.randomResourceName("st", 14); + final String storageName = generateRandomResourceName("st", 14); // Create a premium storage account for virtual machine data disk // StorageAccount storageAccount = diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachinePopularImageTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachinePopularImageTests.java index 4bd9b2e4627c..409091a7fb17 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachinePopularImageTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachinePopularImageTests.java @@ -3,10 +3,11 @@ package com.azure.resourcemanager.compute; +import com.azure.core.http.HttpPipeline; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.compute.models.KnownLinuxVirtualMachineImage; import com.azure.resourcemanager.compute.models.KnownWindowsVirtualMachineImage; import com.azure.resourcemanager.compute.models.VirtualMachineSizeTypes; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Indexable; import org.junit.jupiter.api.Test; @@ -16,10 +17,12 @@ import java.util.List; public class VirtualMachinePopularImageTests extends ComputeManagementTest { - private final String rgName = generateRandomResourceName("rg", 10); + private String rgName = ""; - public VirtualMachinePopularImageTests() { - super(TestBase.RunCondition.LIVE_ONLY); + @Override + protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + super.initializeClients(httpPipeline, profile); + rgName = generateRandomResourceName("rg", 10); } @Test diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineRelatedResourcesDeletionTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineRelatedResourcesDeletionTests.java index 969fccbfede2..77ee0414f37b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineRelatedResourcesDeletionTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineRelatedResourcesDeletionTests.java @@ -13,12 +13,11 @@ import com.azure.resourcemanager.network.models.NetworkInterface; import com.azure.resourcemanager.network.models.PublicIpAddress; import com.azure.resourcemanager.resources.models.ResourceGroup; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.arm.models.Resource; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.StorageAccount; import java.util.ArrayList; import java.util.Collection; @@ -31,10 +30,6 @@ import reactor.core.publisher.Mono; public class VirtualMachineRelatedResourcesDeletionTests extends ComputeManagementTest { - public VirtualMachineRelatedResourcesDeletionTests() { - super(TestBase.RunCondition.LIVE_ONLY); - } - private String rgName = ""; @Override @@ -73,7 +68,7 @@ public void canDeleteRelatedResourcesFromFailedParallelVMCreations() { Collection> relatedDefinitions = new ArrayList<>(); // Define a network for each VM - String networkName = sdkContext.randomResourceName("net", 14); + String networkName = generateRandomResourceName("net", 14); Creatable networkDefinition = networkManager .networks() @@ -84,7 +79,7 @@ public void canDeleteRelatedResourcesFromFailedParallelVMCreations() { relatedDefinitions.add(networkDefinition); // Define a PIP for each VM - String pipName = sdkContext.randomResourceName("pip", 14); + String pipName = generateRandomResourceName("pip", 14); PublicIpAddress.DefinitionStages.WithCreate pipDefinition = this .networkManager @@ -95,7 +90,7 @@ public void canDeleteRelatedResourcesFromFailedParallelVMCreations() { relatedDefinitions.add(pipDefinition); // Define a NIC for each VM - String nicName = sdkContext.randomResourceName("nic", 14); + String nicName = generateRandomResourceName("nic", 14); Creatable nicDefinition = networkManager .networkInterfaces() @@ -107,7 +102,7 @@ public void canDeleteRelatedResourcesFromFailedParallelVMCreations() { .withNewPrimaryPublicIPAddress(pipDefinition); // Define a storage account for each VM - String storageAccountName = sdkContext.randomResourceName("st", 14); + String storageAccountName = generateRandomResourceName("st", 14); Creatable storageAccountDefinition = storageManager .storageAccounts() @@ -117,7 +112,7 @@ public void canDeleteRelatedResourcesFromFailedParallelVMCreations() { relatedDefinitions.add(storageAccountDefinition); // Define an availability set for each VM - String availabilitySetName = sdkContext.randomResourceName("as", 14); + String availabilitySetName = generateRandomResourceName("as", 14); Creatable availabilitySetDefinition = computeManager .availabilitySets() @@ -126,7 +121,7 @@ public void canDeleteRelatedResourcesFromFailedParallelVMCreations() { .withExistingResourceGroup(resourceGroup); relatedDefinitions.add(availabilitySetDefinition); - String vmName = sdkContext.randomResourceName("vm", 14); + String vmName = generateRandomResourceName("vm", 14); // Define a VM String userName; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetBootDiagnosticsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetBootDiagnosticsTests.java index 3c671ac65b06..9ac7c585e1f3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetBootDiagnosticsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetBootDiagnosticsTests.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.StorageAccount; import java.util.ArrayList; import java.util.List; @@ -89,7 +89,7 @@ public void canEnableBootDiagnosticsWithImplicitStorageOnManagedVMSSCreation() t @Test public void canEnableBootDiagnosticsWithCreatableStorageOnManagedVMSSCreation() throws Exception { final String vmssName = generateRandomResourceName("vmss", 10); - final String storageName = sdkContext.randomResourceName("st", 14); + final String storageName = generateRandomResourceName("st", 14); ResourceGroup resourceGroup = this.resourceManager.resourceGroups().define(rgName).withRegion(region).create(); @@ -143,7 +143,7 @@ public void canEnableBootDiagnosticsWithCreatableStorageOnManagedVMSSCreation() @Test public void canEnableBootDiagnosticsWithExplicitStorageOnManagedVMSSCreation() throws Exception { final String vmssName = generateRandomResourceName("vmss", 10); - final String storageName = sdkContext.randomResourceName("st", 14); + final String storageName = generateRandomResourceName("st", 14); ResourceGroup resourceGroup = this.resourceManager.resourceGroups().define(rgName).withRegion(region).create(); @@ -325,7 +325,7 @@ public void bootDiagnosticsShouldUsesVMSSOSUnManagedDiskImplicitStorage() throws @Test public void bootDiagnosticsShouldUseVMSSUnManagedDisksExplicitStorage() throws Exception { - final String storageName = sdkContext.randomResourceName("st", 14); + final String storageName = generateRandomResourceName("st", 14); final String vmssName = generateRandomResourceName("vmss", 10); ResourceGroup resourceGroup = this.resourceManager.resourceGroups().define(rgName).withRegion(region).create(); @@ -395,7 +395,7 @@ public void bootDiagnosticsShouldUseVMSSUnManagedDisksExplicitStorage() throws E @Test public void canEnableBootDiagnosticsWithCreatableStorageOnUnManagedVMSSCreation() throws Exception { - final String storageName = sdkContext.randomResourceName("st", 14); + final String storageName = generateRandomResourceName("st", 14); final String vmssName = generateRandomResourceName("vmss", 10); ResourceGroup resourceGroup = this.resourceManager.resourceGroups().define(rgName).withRegion(region).create(); diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetEMSILMSIOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetEMSILMSIOperationsTests.java index f840c615165c..1172e8feee97 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetEMSILMSIOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetEMSILMSIOperationsTests.java @@ -3,7 +3,12 @@ package com.azure.resourcemanager.compute; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.core.http.rest.PagedIterable; import com.azure.resourcemanager.compute.models.KnownLinuxVirtualMachineImage; import com.azure.resourcemanager.compute.models.ResourceIdentityType; @@ -17,20 +22,26 @@ import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.network.models.TransportProtocol; import com.azure.resourcemanager.network.NetworkManager; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.models.ResourceGroup; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; -import java.io.IOException; +import java.time.temporal.ChronoUnit; import java.util.Iterator; +import java.util.List; import java.util.Set; + +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; import reactor.core.publisher.Mono; -public class VirtualMachineScaleSetEMSILMSIOperationsTests extends TestBase { +public class VirtualMachineScaleSetEMSILMSIOperationsTests extends ResourceManagerTestBase { private String rgName = ""; private Region region = Region.fromName("West Central US"); private final String vmssName = "javavmss"; @@ -41,8 +52,28 @@ public class VirtualMachineScaleSetEMSILMSIOperationsTests extends TestBase { private NetworkManager networkManager; @Override - protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) - throws IOException { + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + + @Override + protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); this.msiManager = MSIManager.authenticate(httpPipeline, profile, sdkContext); this.resourceManager = msiManager.resourceManager(); this.computeManager = ComputeManager.authenticate(httpPipeline, profile, sdkContext); diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetManagedDiskOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetManagedDiskOperationsTests.java index 277f7757115e..0bd121a3e445 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetManagedDiskOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetManagedDiskOperationsTests.java @@ -22,7 +22,7 @@ import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import java.util.Iterator; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetOperationsTests.java index 16e98bc1035d..236b8030c2ca 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/java/com/azure/resourcemanager/compute/VirtualMachineScaleSetOperationsTests.java @@ -49,7 +49,7 @@ import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.AvailabilityZoneId; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.StorageAccount; import com.azure.resourcemanager.storage.models.StorageAccountKey; import com.microsoft.azure.storage.CloudStorageAccount; diff --git a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/canCreateAllPopularImageVM.json b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/canCreateAllPopularImageVM.json index 22bbccdf4dd7..1eac3e919382 100644 --- a/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/canCreateAllPopularImageVM.json +++ b/sdk/resourcemanager/azure-resourcemanager-compute/src/test/resources/session-records/canCreateAllPopularImageVM.json @@ -1,4393 +1,5353 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ceda9a6e-1f77-4ba2-9cd4-e417d73a8502", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:31 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0bced738-ca3a-4779-a5ff-f47b832eec30", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075332Z:0bced738-ca3a-4779-a5ff-f47b832eec30", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0bced738-ca3a-4779-a5ff-f47b832eec30", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:30.687546600Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 12 Aug 2020 10:36:10 GMT", + "x-ms-correlation-request-id" : "090a1f56-5668-4ff4-9b1d-bd8be63e64c4", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103611Z:090a1f56-5668-4ff4-9b1d-bd8be63e64c4", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "090a1f56-5668-4ff4-9b1d-bd8be63e64c4", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4d6e1a19-a892-4dcf-a871-0ecc25443627", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:31 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1166", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d2b51391-bbd6-4f4c-9fa8-1d183e4f8738", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075332Z:d2b51391-bbd6-4f4c-9fa8-1d183e4f8738", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d2b51391-bbd6-4f4c-9fa8-1d183e4f8738", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:31.070813900Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 12 Aug 2020 10:36:10 GMT", + "x-ms-correlation-request-id" : "f4d4ace9-4617-444f-9bb7-39f77d6faf6c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103611Z:f4d4ace9-4617-444f-9bb7-39f77d6faf6c", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "f4d4ace9-4617-444f-9bb7-39f77d6faf6c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1967ecbb-4bb6-4722-85f3-912f777885e1", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:32 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "87cb0517-bbe5-4d9f-8a60-88f6045236fc", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075333Z:87cb0517-bbe5-4d9f-8a60-88f6045236fc", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "87cb0517-bbe5-4d9f-8a60-88f6045236fc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:30.559860400Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 12 Aug 2020 10:36:10 GMT", + "x-ms-correlation-request-id" : "d8b828ff-bb06-4f2b-b13b-25d3ee98be6f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103611Z:d8b828ff-bb06-4f2b-b13b-25d3ee98be6f", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "d8b828ff-bb06-4f2b-b13b-25d3ee98be6f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6d2f1758-d2a7-4091-acc1-6d12c7fa6361", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:32 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3812616a-5c18-49c6-9b28-1f5fedd73eb2", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075333Z:3812616a-5c18-49c6-9b28-1f5fedd73eb2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3812616a-5c18-49c6-9b28-1f5fedd73eb2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:31.031918800Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 12 Aug 2020 10:36:11 GMT", + "x-ms-correlation-request-id" : "a5c3ba54-54f7-4fbf-8242-65aae5ce8e10", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103611Z:a5c3ba54-54f7-4fbf-8242-65aae5ce8e10", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "a5c3ba54-54f7-4fbf-8242-65aae5ce8e10", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "cf1676a2-2076-4f4d-8601-bee0ccbdcf97", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:32 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2b83c54c-eb5c-41f4-a343-966dd9fea4ba", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075333Z:2b83c54c-eb5c-41f4-a343-966dd9fea4ba", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2b83c54c-eb5c-41f4-a343-966dd9fea4ba", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:31.197982600Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 12 Aug 2020 10:36:10 GMT", + "x-ms-correlation-request-id" : "ba9e93e6-c4cb-46df-a265-ba9f5e011580", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103611Z:ba9e93e6-c4cb-46df-a265-ba9f5e011580", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "ba9e93e6-c4cb-46df-a265-ba9f5e011580", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "24035fb5-a859-49fe-bffe-220266b98e93", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:32 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1160", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "26c5e7c0-f797-4d3b-9c1f-d9e6bfb26986", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075333Z:26c5e7c0-f797-4d3b-9c1f-d9e6bfb26986", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "26c5e7c0-f797-4d3b-9c1f-d9e6bfb26986", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:30.518970300Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 12 Aug 2020 10:36:11 GMT", + "x-ms-correlation-request-id" : "fe33e7d5-b5ee-4f83-9692-97baab56fd96", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103611Z:fe33e7d5-b5ee-4f83-9692-97baab56fd96", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "fe33e7d5-b5ee-4f83-9692-97baab56fd96", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "80e1b089-3801-4ca9-a639-ea35b8f231cd", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:32 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cd12acc0-5bf1-477e-9e9a-1b5599998b7b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075333Z:cd12acc0-5bf1-477e-9e9a-1b5599998b7b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "cd12acc0-5bf1-477e-9e9a-1b5599998b7b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:31.263805800Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:11 GMT", + "x-ms-correlation-request-id" : "79e1388b-c5da-4eb7-b714-44f6a81d48eb", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103611Z:79e1388b-c5da-4eb7-b714-44f6a81d48eb", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "79e1388b-c5da-4eb7-b714-44f6a81d48eb", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e0c21222-aaee-487e-87a8-cb0a6a5e0d03", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:32 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1160", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b28fea01-fa36-4799-872e-0f3860d6db14", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075333Z:b28fea01-fa36-4799-872e-0f3860d6db14", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b28fea01-fa36-4799-872e-0f3860d6db14", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:31.359549200Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 12 Aug 2020 10:36:11 GMT", + "x-ms-correlation-request-id" : "8825edd8-96a3-40fd-b6f9-bb13f62b60a0", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103611Z:8825edd8-96a3-40fd-b6f9-bb13f62b60a0", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "8825edd8-96a3-40fd-b6f9-bb13f62b60a0", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c3dbfc82-84c9-445f-a626-c82e51469963", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:32 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1177", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7338bc66-7052-417a-bdf2-0f452fc2f90b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075333Z:7338bc66-7052-417a-bdf2-0f452fc2f90b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7338bc66-7052-417a-bdf2-0f452fc2f90b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:31.369523300Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 12 Aug 2020 10:36:11 GMT", + "x-ms-correlation-request-id" : "bfed3bde-85da-4821-80ff-1bc84efd2003", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103611Z:bfed3bde-85da-4821-80ff-1bc84efd2003", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "bfed3bde-85da-4821-80ff-1bc84efd2003", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d65c4b85-29a2-47f7-8054-d9161e4f0d99", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:32 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "080fe9b5-0c84-439d-bbd3-3941e6af175f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075333Z:080fe9b5-0c84-439d-bbd3-3941e6af175f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "080fe9b5-0c84-439d-bbd3-3941e6af175f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:30.499024400Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 12 Aug 2020 10:36:11 GMT", + "x-ms-correlation-request-id" : "8b499de2-77f3-49d4-8bd3-c05949da26fd", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103611Z:8b499de2-77f3-49d4-8bd3-c05949da26fd", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "8b499de2-77f3-49d4-8bd3-c05949da26fd", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "42594406-a061-46c1-a80e-b0dee614b32a", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:32 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1161", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "83bef6ae-7a01-4c24-8a54-f2f358def81b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075333Z:83bef6ae-7a01-4c24-8a54-f2f358def81b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "83bef6ae-7a01-4c24-8a54-f2f358def81b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:31.024937500Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 12 Aug 2020 10:36:11 GMT", + "x-ms-correlation-request-id" : "dcfc987a-b74e-4151-8f7e-fdf6c73c2601", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103611Z:dcfc987a-b74e-4151-8f7e-fdf6c73c2601", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "dcfc987a-b74e-4151-8f7e-fdf6c73c2601", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6b5bae1e-5a52-4a6c-aff4-c962ad6b88ef", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:33 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1153", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "97eef0ab-3db8-4415-8d14-bc92322d2354", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075334Z:97eef0ab-3db8-4415-8d14-bc92322d2354", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "97eef0ab-3db8-4415-8d14-bc92322d2354", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:30.522959900Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 12 Aug 2020 10:36:11 GMT", + "x-ms-correlation-request-id" : "fb19c3b1-6521-48b9-9400-b946f28bcb5d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103612Z:fb19c3b1-6521-48b9-9400-b946f28bcb5d", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "fb19c3b1-6521-48b9-9400-b946f28bcb5d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "778d379c-839a-47f0-b522-146a5f7bdbc6", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:33 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1162", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2480cb1f-c6f3-476e-b0db-1d32de0668b3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075334Z:2480cb1f-c6f3-476e-b0db-1d32de0668b3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2480cb1f-c6f3-476e-b0db-1d32de0668b3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:31.222916800Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 12 Aug 2020 10:36:12 GMT", + "x-ms-correlation-request-id" : "50047c27-87c8-4f65-bbbc-5043ae55816d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103612Z:50047c27-87c8-4f65-bbbc-5043ae55816d", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "50047c27-87c8-4f65-bbbc-5043ae55816d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "afbe45d3-7fcd-4483-828b-d8c1b1ff7606", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:33 GMT", - "content-length" : "311", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1150", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "29002e8c-4220-4411-82be-e1ddf5917ada", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075334Z:29002e8c-4220-4411-82be-e1ddf5917ada", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "29002e8c-4220-4411-82be-e1ddf5917ada", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749\",\"name\":\"rg339749\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-28T07:53:30.810217100Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Wed, 12 Aug 2020 10:36:11 GMT", + "x-ms-correlation-request-id" : "811b661e-2c7a-496d-b939-7136cfc5d7ca", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103612Z:811b661e-2c7a-496d-b939-7136cfc5d7ca", + "Expires" : "-1", + "Content-Length" : "221", + "x-ms-request-id" : "811b661e-2c7a-496d-b939-7136cfc5d7ca", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490\",\"name\":\"rg125490\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet96626061fe?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet29013048b7?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "bdacf713-d4c5-4622-b5f4-ce53b8d6b5cf", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:36 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1150", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3bb0670c-8823-4667-89b9-53dd2fd400c2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "af63469c-7545-4381-89ee-d4f80a437ca4", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075337Z:3bb0670c-8823-4667-89b9-53dd2fd400c2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9ae93540-fb3c-49fa-9410-6fe652967b63", - "Body" : "{\r\n \"name\": \"vnet96626061fe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet96626061fe\",\r\n \"etag\": \"W/\\\"2033528e-6dd2-40a9-ad48-2bd88f62f07a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9e3b908c-b299-4512-8562-c4df3674592f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet96626061fe/subnets/subnet1\",\r\n \"etag\": \"W/\\\"2033528e-6dd2-40a9-ad48-2bd88f62f07a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/9ae93540-fb3c-49fa-9410-6fe652967b63?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:16 GMT", + "x-ms-correlation-request-id" : "477a4091-d903-43e2-b045-8678b39e155c", + "x-ms-arm-service-request-id" : "cfc5fcfb-89ae-48ce-a8dc-ff001fab6423", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103616Z:477a4091-d903-43e2-b045-8678b39e155c", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/08da2797-190d-4769-9e6a-22a9771d48f1?api-version=2020-05-01", + "x-ms-request-id" : "08da2797-190d-4769-9e6a-22a9771d48f1", + "Body" : "{\r\n \"name\": \"vnet29013048b7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet29013048b7\",\r\n \"etag\": \"W/\\\"934bbe25-f574-43eb-aa71-76cd9c037ba8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"62fa62fa-09bc-4506-8c39-527b6e2b1004\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet29013048b7/subnets/subnet1\",\r\n \"etag\": \"W/\\\"934bbe25-f574-43eb-aa71-76cd9c037ba8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet63350bd9ae?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet21104fb12d?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "7a2d146e-832d-44eb-a183-9a51dda0e785", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1150", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "56df75cd-b38b-4c6e-b875-0a0f5fc570b3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "94b0e10d-7401-47d2-867a-78783f15447e", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075338Z:56df75cd-b38b-4c6e-b875-0a0f5fc570b3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4ea76ba1-c97d-40f0-98ee-4224c0824d67", - "Body" : "{\r\n \"name\": \"vnet63350bd9ae\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet63350bd9ae\",\r\n \"etag\": \"W/\\\"997b2579-8d32-458b-90b9-a163a7b82db2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"075cdc11-b313-47dd-a60a-55537e86caf9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet63350bd9ae/subnets/subnet1\",\r\n \"etag\": \"W/\\\"997b2579-8d32-458b-90b9-a163a7b82db2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4ea76ba1-c97d-40f0-98ee-4224c0824d67?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:16 GMT", + "x-ms-correlation-request-id" : "ea70c133-b655-4a8b-80b8-01fcaf9e39d0", + "x-ms-arm-service-request-id" : "db00ba39-d4b8-484c-924d-3bec94807d42", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103617Z:ea70c133-b655-4a8b-80b8-01fcaf9e39d0", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/38088328-0407-48fe-9ef0-9212237045ae?api-version=2020-05-01", + "x-ms-request-id" : "38088328-0407-48fe-9ef0-9212237045ae", + "Body" : "{\r\n \"name\": \"vnet21104fb12d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet21104fb12d\",\r\n \"etag\": \"W/\\\"396fd19a-5744-45a4-aad9-83684cc9ae5f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b0a3b9a0-224d-4649-909d-1ff31022b6ad\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet21104fb12d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"396fd19a-5744-45a4-aad9-83684cc9ae5f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76063f4860?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1989715670?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e37176ff-10a7-4170-bc4c-cc6d2e05da19", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1150", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7d3273d3-0188-419d-aa56-0b0aaf4d6d28", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "c10e3397-9432-49e3-92e9-2f95ab269233", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075338Z:7d3273d3-0188-419d-aa56-0b0aaf4d6d28", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b180f217-918d-44cf-94e1-6bead05752dd", - "Body" : "{\r\n \"name\": \"vnet76063f4860\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76063f4860\",\r\n \"etag\": \"W/\\\"3f488f92-ae29-4534-a09e-2f7729042281\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c3a5e04b-eba0-4fa4-a8b9-78ab314763b6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76063f4860/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3f488f92-ae29-4534-a09e-2f7729042281\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b180f217-918d-44cf-94e1-6bead05752dd?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:17 GMT", + "x-ms-correlation-request-id" : "e0e7f06d-e1ce-4c0e-a792-6038c06d5ad0", + "x-ms-arm-service-request-id" : "0a49c44f-2b85-442a-b8f2-1f36d7f149fa", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103617Z:e0e7f06d-e1ce-4c0e-a792-6038c06d5ad0", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/eaf3b9ac-541f-400a-b750-fbe884ff6779?api-version=2020-05-01", + "x-ms-request-id" : "eaf3b9ac-541f-400a-b750-fbe884ff6779", + "Body" : "{\r\n \"name\": \"vnet1989715670\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1989715670\",\r\n \"etag\": \"W/\\\"85d8c450-8bce-47f0-b45f-b3f745f9fe4e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"cdacd858-dce1-4f22-b400-b043aa048e78\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1989715670/subnets/subnet1\",\r\n \"etag\": \"W/\\\"85d8c450-8bce-47f0-b45f-b3f745f9fe4e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5107984001?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1925985d5c?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "9db1b6bf-ed25-4189-8250-883ace7a88f6", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1a9e5dda-e885-45e3-b09a-f090871e87c7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7c847c76-ac41-4aa6-a59f-bd0f6d4218d7", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075338Z:1a9e5dda-e885-45e3-b09a-f090871e87c7", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a172c9f7-155c-4285-9d6c-6796f8830b3a", - "Body" : "{\r\n \"name\": \"vnet5107984001\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5107984001\",\r\n \"etag\": \"W/\\\"fbdaadc7-ef01-46d6-9ce9-278b0030a5e3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"9243da97-c3b8-4f77-b0fd-403d6c2cd593\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5107984001/subnets/subnet1\",\r\n \"etag\": \"W/\\\"fbdaadc7-ef01-46d6-9ce9-278b0030a5e3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a172c9f7-155c-4285-9d6c-6796f8830b3a?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:16 GMT", + "x-ms-correlation-request-id" : "79dcd62e-5437-4b23-ac57-f7ed4f04ac59", + "x-ms-arm-service-request-id" : "9c18e221-3dfc-4c80-a48d-c3fd1ccb1bcf", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103617Z:79dcd62e-5437-4b23-ac57-f7ed4f04ac59", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8a4f8998-fc56-4a4b-8435-e59cb01526b3?api-version=2020-05-01", + "x-ms-request-id" : "8a4f8998-fc56-4a4b-8435-e59cb01526b3", + "Body" : "{\r\n \"name\": \"vnet1925985d5c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1925985d5c\",\r\n \"etag\": \"W/\\\"cdc710ed-6630-45dc-b218-55c2e164fcec\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e0f3f6cd-615f-46b6-9d5d-e45a98871d09\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1925985d5c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"cdc710ed-6630-45dc-b218-55c2e164fcec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet382968e1bd?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet85080c1ce2?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0f1b830d-7829-4952-94ac-d7fc69def93b", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1156", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a0b1688b-01d8-4e87-a5c6-62e812c069eb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6edac3dc-a4a1-4153-949c-40945538efc7", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075338Z:a0b1688b-01d8-4e87-a5c6-62e812c069eb", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3654de78-9085-4534-8407-3f2a47d8321c", - "Body" : "{\r\n \"name\": \"vnet382968e1bd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet382968e1bd\",\r\n \"etag\": \"W/\\\"770ac116-513e-45ac-8cf0-e7cdcb044eec\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"2986f12d-bd40-49f8-b65e-d5e8398315dd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet382968e1bd/subnets/subnet1\",\r\n \"etag\": \"W/\\\"770ac116-513e-45ac-8cf0-e7cdcb044eec\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/3654de78-9085-4534-8407-3f2a47d8321c?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:16 GMT", + "x-ms-correlation-request-id" : "788a1437-bf1f-41cb-9346-5f2ae3d3f4f9", + "x-ms-arm-service-request-id" : "87cf3a2f-4f2f-48d1-9fbe-e4e341ed40d8", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103617Z:788a1437-bf1f-41cb-9346-5f2ae3d3f4f9", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2a2f093a-5f9e-4072-ad1e-62483207665a?api-version=2020-05-01", + "x-ms-request-id" : "2a2f093a-5f9e-4072-ad1e-62483207665a", + "Body" : "{\r\n \"name\": \"vnet85080c1ce2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet85080c1ce2\",\r\n \"etag\": \"W/\\\"babe3b02-2e42-4239-bf32-df2c968d3156\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8007480b-db2e-4567-88d7-7e7551ff2e72\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet85080c1ce2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"babe3b02-2e42-4239-bf32-df2c968d3156\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5433527d80?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet4771416f21?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "7c1379dd-b4e0-41e9-9935-843b50560359", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9b9246c3-8ca4-462b-9e3d-fc3cc5d7fb18", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "0da71023-7497-4a75-838c-76423f69baef", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075338Z:9b9246c3-8ca4-462b-9e3d-fc3cc5d7fb18", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "89962b8e-d4ed-421b-9544-d00c90fbb4b6", - "Body" : "{\r\n \"name\": \"vnet5433527d80\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5433527d80\",\r\n \"etag\": \"W/\\\"182d6450-d9ef-4813-a806-7256e93f64da\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"df51430f-21af-4f62-830e-c28e45680104\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5433527d80/subnets/subnet1\",\r\n \"etag\": \"W/\\\"182d6450-d9ef-4813-a806-7256e93f64da\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/89962b8e-d4ed-421b-9544-d00c90fbb4b6?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:16 GMT", + "x-ms-correlation-request-id" : "015c6117-6e02-4388-b90c-f0b1cc5ec188", + "x-ms-arm-service-request-id" : "4196c596-2632-44ea-84b2-5ba18e97d426", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103617Z:015c6117-6e02-4388-b90c-f0b1cc5ec188", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/40af14b4-40a3-41b9-ba18-f9467c8507b5?api-version=2020-05-01", + "x-ms-request-id" : "40af14b4-40a3-41b9-ba18-f9467c8507b5", + "Body" : "{\r\n \"name\": \"vnet4771416f21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet4771416f21\",\r\n \"etag\": \"W/\\\"25a5c23e-f589-4c52-8d37-c52897edeb79\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"03cb07bd-f13b-429c-bb6a-20c34cede7bd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet4771416f21/subnets/subnet1\",\r\n \"etag\": \"W/\\\"25a5c23e-f589-4c52-8d37-c52897edeb79\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet3286434862?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet6064313e28?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0e9e50b4-4df1-4b33-a842-b0ac1a9b7241", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1172", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:16 GMT", + "x-ms-correlation-request-id" : "eb7c2957-6a11-49af-ae83-00b15d3e81aa", + "x-ms-arm-service-request-id" : "6060b08f-b608-4a36-abf0-366b902973de", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103617Z:eb7c2957-6a11-49af-ae83-00b15d3e81aa", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8a1f3c88-50bc-4940-8292-90bfdc9df308?api-version=2020-05-01", + "x-ms-request-id" : "8a1f3c88-50bc-4940-8292-90bfdc9df308", + "Body" : "{\r\n \"name\": \"vnet6064313e28\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet6064313e28\",\r\n \"etag\": \"W/\\\"b861b0e6-18fa-483f-8147-bb52dd385406\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"02f3ddc6-72f3-4ffb-9e37-c31fb9fcb09d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet6064313e28/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b861b0e6-18fa-483f-8147-bb52dd385406\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet89346cb21b?api-version=2020-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "79b59a0a-a874-4e02-a524-e3d1b6ad32d2", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:17 GMT", + "x-ms-correlation-request-id" : "861a81f2-a3dc-4741-bfea-e52aba62045a", + "x-ms-arm-service-request-id" : "380756af-4877-4491-b4d3-faaac202ab7f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103617Z:861a81f2-a3dc-4741-bfea-e52aba62045a", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/133d19d7-638c-4301-a0b5-513c85986779?api-version=2020-05-01", + "x-ms-request-id" : "133d19d7-638c-4301-a0b5-513c85986779", + "Body" : "{\r\n \"name\": \"vnet89346cb21b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet89346cb21b\",\r\n \"etag\": \"W/\\\"df046d12-62d9-4ba3-9bce-7ccf05ddb8e2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8b7a9d7a-036d-4d66-9f7a-c3e4d61b2398\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet89346cb21b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"df046d12-62d9-4ba3-9bce-7ccf05ddb8e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet61259fa1ff?api-version=2020-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "7a1d0b2b-a680-43c7-b48f-10afbab17c51", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1186", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:16 GMT", + "x-ms-correlation-request-id" : "19813374-7da0-4df4-a6b7-364024f1a511", + "x-ms-arm-service-request-id" : "5ab8b7d4-ca7b-42ef-946b-487d9823dbc4", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103617Z:19813374-7da0-4df4-a6b7-364024f1a511", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/36f1a1e1-ec26-4790-8c18-f0e6e59fe87a?api-version=2020-05-01", + "x-ms-request-id" : "36f1a1e1-ec26-4790-8c18-f0e6e59fe87a", + "Body" : "{\r\n \"name\": \"vnet61259fa1ff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet61259fa1ff\",\r\n \"etag\": \"W/\\\"cc82db87-6dcd-4e12-865e-eca49df574c2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fe2020f1-381b-4cdc-b95b-a782b9c55012\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet61259fa1ff/subnets/subnet1\",\r\n \"etag\": \"W/\\\"cc82db87-6dcd-4e12-865e-eca49df574c2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1941477e27?api-version=2020-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5a18addb-491d-408c-9801-8d11cb7629fb", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:17 GMT", + "x-ms-correlation-request-id" : "16712b9e-4440-4cb1-8d7c-6205e405f315", + "x-ms-arm-service-request-id" : "d8214dfe-3257-4135-ab35-973d58072337", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103617Z:16712b9e-4440-4cb1-8d7c-6205e405f315", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/864ebce2-1142-4ba6-8eb1-1878ac4bb5e2?api-version=2020-05-01", + "x-ms-request-id" : "864ebce2-1142-4ba6-8eb1-1878ac4bb5e2", + "Body" : "{\r\n \"name\": \"vnet1941477e27\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1941477e27\",\r\n \"etag\": \"W/\\\"e62004a7-7be9-4219-a73f-fc25a2a2a85d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b685f72f-2b7f-4dbd-837a-5dd1dbceca41\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1941477e27/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e62004a7-7be9-4219-a73f-fc25a2a2a85d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet0130200ea0?api-version=2020-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e8067e12-a6bf-4d57-881a-e1c9db8dfc01", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:17 GMT", + "x-ms-correlation-request-id" : "ea15ffd3-928f-4a8b-ba32-9fd898a4f1a9", + "x-ms-arm-service-request-id" : "21e140d8-5e44-481c-8c97-851379bce5e7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103618Z:ea15ffd3-928f-4a8b-ba32-9fd898a4f1a9", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/72475f67-42f4-48eb-b2bb-540704f79de2?api-version=2020-05-01", + "x-ms-request-id" : "72475f67-42f4-48eb-b2bb-540704f79de2", + "Body" : "{\r\n \"name\": \"vnet0130200ea0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet0130200ea0\",\r\n \"etag\": \"W/\\\"d6e630a3-f558-4d4e-9507-0e0ffdf4775a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ddae8055-089a-47f2-b002-4e9fa109f96e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet0130200ea0/subnets/subnet1\",\r\n \"etag\": \"W/\\\"d6e630a3-f558-4d4e-9507-0e0ffdf4775a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet88972bc4e5?api-version=2020-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ff279e2c-88a5-4f91-96f2-14ec855c10d1", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8eb2537b-1162-4f7f-83ec-68162cab7a30", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "83c63170-ac7d-45d1-99b1-95ea7b6849cd", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075338Z:8eb2537b-1162-4f7f-83ec-68162cab7a30", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7c724268-dafb-446b-967c-61d5c80a279d", - "Body" : "{\r\n \"name\": \"vnet3286434862\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet3286434862\",\r\n \"etag\": \"W/\\\"f8abbcdb-fd94-44ba-bde6-57470114c4e0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c0ca3ca0-75d6-48fa-b0b8-b508917531e6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet3286434862/subnets/subnet1\",\r\n \"etag\": \"W/\\\"f8abbcdb-fd94-44ba-bde6-57470114c4e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7c724268-dafb-446b-967c-61d5c80a279d?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:18 GMT", + "x-ms-correlation-request-id" : "1426dc22-36bc-4fa9-a53e-fdb3c3364b19", + "x-ms-arm-service-request-id" : "7bfbde7c-4c81-4e42-9247-e767affc0f96", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103618Z:1426dc22-36bc-4fa9-a53e-fdb3c3364b19", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/39c9f158-82fc-42ac-9c8c-a591dd3f00ac?api-version=2020-05-01", + "x-ms-request-id" : "39c9f158-82fc-42ac-9c8c-a591dd3f00ac", + "Body" : "{\r\n \"name\": \"vnet88972bc4e5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet88972bc4e5\",\r\n \"etag\": \"W/\\\"6daa6e2a-d0af-453c-b407-a5325ede6cbe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"45a6385c-753a-4b41-9e56-1166432b302a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet88972bc4e5/subnets/subnet1\",\r\n \"etag\": \"W/\\\"6daa6e2a-d0af-453c-b407-a5325ede6cbe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet58487fc518?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet00325edc1d?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6bfd551c-d1f8-4ab3-9e3c-35ec3f2c281c", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:39 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1159", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:18 GMT", + "x-ms-correlation-request-id" : "5a9683f9-0c91-4602-a0d7-f1df13545c79", + "x-ms-arm-service-request-id" : "16aab50e-99bc-44f3-a60c-e223d8c9f2c4", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103618Z:5a9683f9-0c91-4602-a0d7-f1df13545c79", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b6b83425-15a4-452c-af06-71b0b3af937a?api-version=2020-05-01", + "x-ms-request-id" : "b6b83425-15a4-452c-af06-71b0b3af937a", + "Body" : "{\r\n \"name\": \"vnet00325edc1d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet00325edc1d\",\r\n \"etag\": \"W/\\\"96dcbf3b-2101-4ecf-81f2-295b229c2a1d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"842d8076-c1b5-453a-9826-f32120ac8cee\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet00325edc1d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"96dcbf3b-2101-4ecf-81f2-295b229c2a1d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/eaf3b9ac-541f-400a-b750-fbe884ff6779?api-version=2020-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4a51b38a-3bdb-4178-b358-33a2d83cb39b" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "ea8ee919-e630-40fe-81db-82aa921edd81", + "x-ms-arm-service-request-id" : "30e24f49-173d-4d4b-9f50-dff6f7c84862", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103620Z:ea8ee919-e630-40fe-81db-82aa921edd81", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "13ac8d3c-6a91-4330-ab7e-72c91ed2adac", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet78227e92c2?api-version=2020-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "22fc2998-63a3-4ec3-87de-15e37ccfdd53", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f86e4756-c33a-46cd-94fe-5b81c504aab5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f6704ff1-c27e-4f71-b978-0f77eeaf3641", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075339Z:f86e4756-c33a-46cd-94fe-5b81c504aab5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a85a7fe9-1eb3-40e8-b934-5e64de788f83", - "Body" : "{\r\n \"name\": \"vnet58487fc518\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet58487fc518\",\r\n \"etag\": \"W/\\\"aeb80a37-0bbc-4363-86d4-cae20c5279df\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"47f44d5b-9fc5-4dbf-9bf4-519ea8a84405\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet58487fc518/subnets/subnet1\",\r\n \"etag\": \"W/\\\"aeb80a37-0bbc-4363-86d4-cae20c5279df\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a85a7fe9-1eb3-40e8-b934-5e64de788f83?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "ac431cb4-f009-4f4e-a300-0162a47ba853", + "x-ms-arm-service-request-id" : "803a4036-fc02-468b-b6be-e329b596f640", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103620Z:ac431cb4-f009-4f4e-a300-0162a47ba853", + "Expires" : "-1", + "Content-Length" : "1338", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/594acea0-91d2-48e2-811f-f8a6b9666c3a?api-version=2020-05-01", + "x-ms-request-id" : "594acea0-91d2-48e2-811f-f8a6b9666c3a", + "Body" : "{\r\n \"name\": \"vnet78227e92c2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet78227e92c2\",\r\n \"etag\": \"W/\\\"0a9c05aa-c949-44e8-bf10-a48cfff9af36\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"84fef136-e735-45db-a165-74ccab278271\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet78227e92c2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"0a9c05aa-c949-44e8-bf10-a48cfff9af36\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7c724268-dafb-446b-967c-61d5c80a279d?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/38088328-0407-48fe-9ef0-9212237045ae?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6bc88ed9-632c-410d-aaf0-d8672919c60b" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:53:58 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6360", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2e2451b1-cc2d-4189-90ad-0e02f44090af", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ee579b5f-1313-4e68-bb05-59f7b3643805", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075359Z:2e2451b1-cc2d-4189-90ad-0e02f44090af", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "df200a50-30f8-4c59-9400-77fa53ceb92c", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "70125552-61da-4aaa-b3ee-97b706eb607d", + "x-ms-arm-service-request-id" : "e22660f5-4bad-48ee-a8b9-1b0eb93e23f1", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103620Z:70125552-61da-4aaa-b3ee-97b706eb607d", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "048635b6-63fd-483e-bf5d-7999c1ba0d37", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/9ae93540-fb3c-49fa-9410-6fe652967b63?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/08da2797-190d-4769-9e6a-22a9771d48f1?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ec0af2cc-22b8-4246-9514-612a5bc09c7b" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7598", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4f137134-e904-4ece-813f-fae1a56e4e2f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "8c62ee36-7cfc-4723-9d60-abf9b5d5fda0", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075400Z:4f137134-e904-4ece-813f-fae1a56e4e2f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "110f07f3-1147-490b-993e-754cd25b8b6f", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "91e1803c-c5a3-406c-adfd-2ea94382853b", + "x-ms-arm-service-request-id" : "ca3f8f78-05e7-4a31-937c-8fcaec2faad7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103620Z:91e1803c-c5a3-406c-adfd-2ea94382853b", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "ffca1e5d-d8d5-4a2d-8e57-b5ec7dff71d8", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a172c9f7-155c-4285-9d6c-6796f8830b3a?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1989715670?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5cd6100f-9cd2-4fe9-b4d5-1659da391be8" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5068", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c6aa81bc-1572-4794-b41a-4e81f0855496", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "eca913a5-62ff-44c0-94de-487b5c85813f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075400Z:c6aa81bc-1572-4794-b41a-4e81f0855496", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1cfd7ac8-77e8-4185-a351-3b46109ae1b5", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "d0771823-576c-49c0-bc11-f356f73e3a09", + "x-ms-arm-service-request-id" : "c1dcd406-f645-45ce-9286-9c0273c0a14e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"07db9e19-c793-478a-adad-8e9c23677a96\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:d0771823-576c-49c0-bc11-f356f73e3a09", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "f041382a-3840-48c6-8a99-1b2bf3e3903b", + "Body" : "{\r\n \"name\": \"vnet1989715670\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1989715670\",\r\n \"etag\": \"W/\\\"07db9e19-c793-478a-adad-8e9c23677a96\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"cdacd858-dce1-4f22-b400-b043aa048e78\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1989715670/subnets/subnet1\",\r\n \"etag\": \"W/\\\"07db9e19-c793-478a-adad-8e9c23677a96\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/89962b8e-d4ed-421b-9544-d00c90fbb4b6?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/864ebce2-1142-4ba6-8eb1-1878ac4bb5e2?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6a291f14-9cb2-4ad0-aa12-bdd39af3e5e3" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4432", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "091aa0fc-cc4c-4522-aff3-02524e57eae7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "65c2e916-d176-4cbd-97fa-6d80925d1f93", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075402Z:091aa0fc-cc4c-4522-aff3-02524e57eae7", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3624109b-c1b1-4591-a051-c8a27ad5fde0", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "deea95b7-bb75-4c41-a4da-525ce236708f", + "x-ms-arm-service-request-id" : "d5f55c71-c664-4a0c-a73b-a52ae9fcf90e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:deea95b7-bb75-4c41-a4da-525ce236708f", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "51e62783-4f69-4606-9499-faf27ea4f51d", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5433527d80?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8a4f8998-fc56-4a4b-8435-e59cb01526b3?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "71517039-f3c8-4274-8aa1-ef42c9494e3a" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6318", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cbc5d6f1-1a70-4a95-83fc-8b10e336a55a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "a138f925-4506-4e08-9cac-7f298606e587", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075403Z:cbc5d6f1-1a70-4a95-83fc-8b10e336a55a", - "etag" : "W/\"e7672cc8-f517-4f57-aebc-e27129d2a832\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f1380298-cfdd-4859-8bdd-ce3aacfe88bf", - "Body" : "{\r\n \"name\": \"vnet5433527d80\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5433527d80\",\r\n \"etag\": \"W/\\\"e7672cc8-f517-4f57-aebc-e27129d2a832\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"df51430f-21af-4f62-830e-c28e45680104\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5433527d80/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e7672cc8-f517-4f57-aebc-e27129d2a832\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "6b1af252-eb2c-4179-9ec1-72f99a393f5a", + "x-ms-arm-service-request-id" : "02fe7735-c695-4c51-bf39-de63e05c686a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:6b1af252-eb2c-4179-9ec1-72f99a393f5a", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "3183ee01-f83f-4987-afc7-3cd3b180ab84", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet6295412409?api-version=2020-05-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet29013048b7?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "97f58de2-3282-4c9d-a550-3b477e32d13f" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:05 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1147", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ac58edbc-7c33-4516-8701-b6f487e57129", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "052fa3ff-969e-4726-8a58-3186eb28abfd", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075405Z:ac58edbc-7c33-4516-8701-b6f487e57129", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "be186a3e-dc3e-4500-8233-05b50aaa3757", - "Body" : "{\r\n \"name\": \"vnet6295412409\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet6295412409\",\r\n \"etag\": \"W/\\\"3875c1e4-db37-49a5-b9d6-95854b7eb528\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"82d85513-b064-433d-bfd9-1063416d1690\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet6295412409/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3875c1e4-db37-49a5-b9d6-95854b7eb528\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/be186a3e-dc3e-4500-8233-05b50aaa3757?api-version=2020-05-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11997", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:21 GMT", + "x-ms-correlation-request-id" : "e29c88ca-c0fa-4e76-81fd-38dc0a22ecbd", + "x-ms-arm-service-request-id" : "db63bf12-88f4-4dae-85e8-66d97212232a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"f42d2edf-e649-45b0-a4ae-499971aa856a\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:e29c88ca-c0fa-4e76-81fd-38dc0a22ecbd", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "a2314a88-5e77-41e9-8d6f-8280a59af9b5", + "Body" : "{\r\n \"name\": \"vnet29013048b7\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet29013048b7\",\r\n \"etag\": \"W/\\\"f42d2edf-e649-45b0-a4ae-499971aa856a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"62fa62fa-09bc-4506-8c39-527b6e2b1004\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet29013048b7/subnets/subnet1\",\r\n \"etag\": \"W/\\\"f42d2edf-e649-45b0-a4ae-499971aa856a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet49407bfdd0?api-version=2020-05-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/40af14b4-40a3-41b9-ba18-f9467c8507b5?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "be4f1923-f5a6-4450-bc0e-72440fcdfab2" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:05 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1152", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "45993648-c26e-440a-a0d9-5d4cbf0d8320", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f6765376-0360-4b29-8e8b-f2feea898db6", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075406Z:45993648-c26e-440a-a0d9-5d4cbf0d8320", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ffa845e3-30c1-4a78-998f-4989530d4c05", - "Body" : "{\r\n \"name\": \"vnet49407bfdd0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet49407bfdd0\",\r\n \"etag\": \"W/\\\"a7839737-6894-49b7-acd7-c00cb95b5246\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"996bead7-2317-427c-9a12-4dc203ed87b3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet49407bfdd0/subnets/subnet1\",\r\n \"etag\": \"W/\\\"a7839737-6894-49b7-acd7-c00cb95b5246\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ffa845e3-30c1-4a78-998f-4989530d4c05?api-version=2020-05-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "04979097-8976-4729-b763-1f20d70db578", + "x-ms-arm-service-request-id" : "1ddbf24f-7d08-4f49-b524-eea11ef9a3b1", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:04979097-8976-4729-b763-1f20d70db578", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "f8b2f80d-cbdc-4630-9aa5-8ff382b31f1c", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet1063963941?api-version=2020-05-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/8a1f3c88-50bc-4940-8292-90bfdc9df308?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "64531200-a282-484f-8107-aaba859700c1" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:05 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "01a72753-24d5-4c63-8beb-fa0a54988d29", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "aee259e9-e2e4-471c-8af0-ac7003d4731a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075406Z:01a72753-24d5-4c63-8beb-fa0a54988d29", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "63f40174-617b-4658-85f2-f2d8675c3bdb", - "Body" : "{\r\n \"name\": \"vnet1063963941\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet1063963941\",\r\n \"etag\": \"W/\\\"b0663015-37ec-4310-ae8e-9d1da88f23c5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0a1f5b1c-84a0-4b8e-b692-4fb809fb80ce\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet1063963941/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b0663015-37ec-4310-ae8e-9d1da88f23c5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/63f40174-617b-4658-85f2-f2d8675c3bdb?api-version=2020-05-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "0f44eb9f-d1d7-4cb1-8d2e-7aa90999d5c9", + "x-ms-arm-service-request-id" : "8fdf5f35-6e2c-472f-9eaa-8c8329df0d66", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:0f44eb9f-d1d7-4cb1-8d2e-7aa90999d5c9", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "091d8910-05bc-4c44-922e-010955320abd", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet93745a29ac?api-version=2020-05-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/133d19d7-638c-4301-a0b5-513c85986779?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "092599c4-0b5e-4712-88f8-e38dcb0db10e" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:06 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1152", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "55549298-14d0-43c8-88c3-ab83dc7dbe55", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "fc0f5c08-6790-411c-82fb-fea688446c1c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075406Z:55549298-14d0-43c8-88c3-ab83dc7dbe55", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e168ee52-8dd5-4356-b4c8-01b79f2154d7", - "Body" : "{\r\n \"name\": \"vnet93745a29ac\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet93745a29ac\",\r\n \"etag\": \"W/\\\"e767517d-26a5-4f3c-971e-0de41300a583\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"93853706-538a-4418-ad96-e9c2c27ef790\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet93745a29ac/subnets/subnet1\",\r\n \"etag\": \"W/\\\"e767517d-26a5-4f3c-971e-0de41300a583\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e168ee52-8dd5-4356-b4c8-01b79f2154d7?api-version=2020-05-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11997", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:21 GMT", + "x-ms-correlation-request-id" : "3b319a00-5962-4681-8411-2a0724592fcb", + "x-ms-arm-service-request-id" : "12eb59a0-a20a-47b7-9426-6e7641488538", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:3b319a00-5962-4681-8411-2a0724592fcb", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "efdb7e21-943d-4f99-93ea-d5a248a57869", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76613186f4?api-version=2020-05-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2a2f093a-5f9e-4072-ad1e-62483207665a?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "eb934236-76cc-433a-989f-3d19fe419652" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:06 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1152", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f3598c14-6d3d-4441-b34b-71927f8d1174", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "09b9fd6e-1d3d-41b5-be79-608c72cf2cec", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075406Z:f3598c14-6d3d-4441-b34b-71927f8d1174", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6d069304-dc4f-4919-aa73-2844832221ce", - "Body" : "{\r\n \"name\": \"vnet76613186f4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76613186f4\",\r\n \"etag\": \"W/\\\"4873b0c5-155f-4f8e-8dd3-fc27baead7a3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"eb32f11a-b3d7-4bdd-a303-d409f0048f1b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76613186f4/subnets/subnet1\",\r\n \"etag\": \"W/\\\"4873b0c5-155f-4f8e-8dd3-fc27baead7a3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/6d069304-dc4f-4919-aa73-2844832221ce?api-version=2020-05-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "dda11680-d131-496d-8b6f-c921fd1bd08a", + "x-ms-arm-service-request-id" : "0d209590-17af-4f1e-a0e2-0b594261d86f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:dda11680-d131-496d-8b6f-c921fd1bd08a", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "549607ba-6be9-42f0-950f-7a2addce6f7f", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4ea76ba1-c97d-40f0-98ee-4224c0824d67?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/36f1a1e1-ec26-4790-8c18-f0e6e59fe87a?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0287d2a2-7c01-4e76-a808-52e74d3b9304" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6227", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "23bda9fe-bcb2-4f0b-9cae-fddcf178034e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b5ca8fa4-6681-4788-ae54-b96a301e2c46", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075411Z:23bda9fe-bcb2-4f0b-9cae-fddcf178034e", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "90e9dae3-952d-48ad-862d-daa612b49352", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "1703607b-31b9-48f2-a4f2-cbe9af166980", + "x-ms-arm-service-request-id" : "8f8d028c-19d1-42d1-89ae-76c35bc324df", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:1703607b-31b9-48f2-a4f2-cbe9af166980", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "8f5b81be-8543-4e7d-a4b5-14a60eec0f06", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/3654de78-9085-4534-8407-3f2a47d8321c?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet21104fb12d?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "95fb23eb-e43a-4e12-8d04-13500f3723c2" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4317", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "64d5b04c-a9c8-4963-b90a-53780e2b1ff6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "a1a488da-c065-49d0-a352-a38e8b04a080", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075412Z:64d5b04c-a9c8-4963-b90a-53780e2b1ff6", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "50b790ca-1cf2-47b2-9553-d66d7b3444bf", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:21 GMT", + "x-ms-correlation-request-id" : "0ed904c0-c5b5-4d8f-aab6-ea82d89de29e", + "x-ms-arm-service-request-id" : "41080e5f-3601-40b7-9279-680924e8397d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"b82c3c5e-1d89-4f88-bd5e-18496ea411b5\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:0ed904c0-c5b5-4d8f-aab6-ea82d89de29e", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "5468ad22-0e46-4481-8b2a-0f223d580947", + "Body" : "{\r\n \"name\": \"vnet21104fb12d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet21104fb12d\",\r\n \"etag\": \"W/\\\"b82c3c5e-1d89-4f88-bd5e-18496ea411b5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b0a3b9a0-224d-4649-909d-1ff31022b6ad\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet21104fb12d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"b82c3c5e-1d89-4f88-bd5e-18496ea411b5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet3286434862?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1941477e27?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "abcf20d3-1c1a-41a2-9c6d-f59b8bda277c" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:20 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4808", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c926aff8-4f84-455e-9045-b8f9167a743b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "04101577-57d2-43f9-816a-2fadace7b6f3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075421Z:c926aff8-4f84-455e-9045-b8f9167a743b", - "etag" : "W/\"aa2f230f-5bf7-4ac6-97f5-e7520f523a38\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6fd8bd0d-f5a2-4070-99e1-c6b8e5e3af5d", - "Body" : "{\r\n \"name\": \"vnet3286434862\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet3286434862\",\r\n \"etag\": \"W/\\\"aa2f230f-5bf7-4ac6-97f5-e7520f523a38\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c0ca3ca0-75d6-48fa-b0b8-b508917531e6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet3286434862/subnets/subnet1\",\r\n \"etag\": \"W/\\\"aa2f230f-5bf7-4ac6-97f5-e7520f523a38\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "2f92cee4-1e62-4122-b4a7-b7a155ca5b60", + "x-ms-arm-service-request-id" : "4c715bee-9508-40c9-9f3f-b6b479768dee", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"4ff68477-6123-4633-8080-d3b1fafe488a\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:2f92cee4-1e62-4122-b4a7-b7a155ca5b60", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "d2843d12-fb61-4834-9c18-b349c8566100", + "Body" : "{\r\n \"name\": \"vnet1941477e27\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1941477e27\",\r\n \"etag\": \"W/\\\"4ff68477-6123-4633-8080-d3b1fafe488a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b685f72f-2b7f-4dbd-837a-5dd1dbceca41\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1941477e27/subnets/subnet1\",\r\n \"etag\": \"W/\\\"4ff68477-6123-4633-8080-d3b1fafe488a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5107984001?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1925985d5c?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "174173dd-ceef-4ca2-9e57-f43d8bc396c0" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:23 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6100", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cfe8c874-21fc-4ac4-b9e0-d9fc15d2041b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1e9c96c5-7eda-4263-bc22-2dc7f914481a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075423Z:cfe8c874-21fc-4ac4-b9e0-d9fc15d2041b", - "etag" : "W/\"9e95bb0f-477f-4401-b157-de1e88403ec5\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d0d99c70-662a-42d2-9a2a-4739323180ca", - "Body" : "{\r\n \"name\": \"vnet5107984001\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5107984001\",\r\n \"etag\": \"W/\\\"9e95bb0f-477f-4401-b157-de1e88403ec5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9243da97-c3b8-4f77-b0fd-403d6c2cd593\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5107984001/subnets/subnet1\",\r\n \"etag\": \"W/\\\"9e95bb0f-477f-4401-b157-de1e88403ec5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "3777c447-9561-4daf-8dd8-2e82dd7759a6", + "x-ms-arm-service-request-id" : "05066f67-e89e-437a-99c0-5bdc29b9e1b3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"565b4bf8-d174-4312-ae78-699572f30ca5\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:3777c447-9561-4daf-8dd8-2e82dd7759a6", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "aabf9866-1ad9-4d95-b8d8-87b341ce8cc7", + "Body" : "{\r\n \"name\": \"vnet1925985d5c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1925985d5c\",\r\n \"etag\": \"W/\\\"565b4bf8-d174-4312-ae78-699572f30ca5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0f3f6cd-615f-46b6-9d5d-e45a98871d09\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1925985d5c/subnets/subnet1\",\r\n \"etag\": \"W/\\\"565b4bf8-d174-4312-ae78-699572f30ca5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet96626061fe?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet4771416f21?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1691e417-97be-4dc6-bd4f-168d20f0a0b3" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:40 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "3977", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6f4b007b-d4bf-49b8-814e-f8627723f0c4", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2c1a6721-30dc-4443-9e2d-1c3694079259", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075440Z:6f4b007b-d4bf-49b8-814e-f8627723f0c4", - "etag" : "W/\"2e1f936e-f01e-486a-acf7-17800bdc77fe\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3e57b327-8a48-49fc-911d-5c632732d514", - "Body" : "{\r\n \"name\": \"vnet96626061fe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet96626061fe\",\r\n \"etag\": \"W/\\\"2e1f936e-f01e-486a-acf7-17800bdc77fe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"9e3b908c-b299-4512-8562-c4df3674592f\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet96626061fe/subnets/subnet1\",\r\n \"etag\": \"W/\\\"2e1f936e-f01e-486a-acf7-17800bdc77fe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:21 GMT", + "x-ms-correlation-request-id" : "df2d5e95-c46a-4ede-84f6-8e220cb651c2", + "x-ms-arm-service-request-id" : "e45000bf-1961-4360-b528-93849b340fd3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"a0b182ed-6171-4f83-ba18-30e535fa337d\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:df2d5e95-c46a-4ede-84f6-8e220cb651c2", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "40d233af-010f-41d6-915e-dcfa51191c67", + "Body" : "{\r\n \"name\": \"vnet4771416f21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet4771416f21\",\r\n \"etag\": \"W/\\\"a0b182ed-6171-4f83-ba18-30e535fa337d\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03cb07bd-f13b-429c-bb6a-20c34cede7bd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet4771416f21/subnets/subnet1\",\r\n \"etag\": \"W/\\\"a0b182ed-6171-4f83-ba18-30e535fa337d\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e168ee52-8dd5-4356-b4c8-01b79f2154d7?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet6064313e28?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b023163a-0905-4a07-bd26-4654818d11c5" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7285", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b0dbe934-02e6-40cc-b13c-03bcfd37df18", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "c3b22adf-1345-4563-bc69-ba8c158e6f1b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075444Z:b0dbe934-02e6-40cc-b13c-03bcfd37df18", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1dcbe9c4-6142-4c72-b5e3-2e95ea312f60", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "7497f60c-123a-4a71-83a2-512ff1dd0c40", + "x-ms-arm-service-request-id" : "17524601-1272-4a47-bf32-1945c6c96ad7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"663fb028-a5c1-454f-812b-0784b5a72bad\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:7497f60c-123a-4a71-83a2-512ff1dd0c40", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "240a0677-cb04-44c1-927b-a35c7281311a", + "Body" : "{\r\n \"name\": \"vnet6064313e28\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet6064313e28\",\r\n \"etag\": \"W/\\\"663fb028-a5c1-454f-812b-0784b5a72bad\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"02f3ddc6-72f3-4ffb-9e37-c31fb9fcb09d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet6064313e28/subnets/subnet1\",\r\n \"etag\": \"W/\\\"663fb028-a5c1-454f-812b-0784b5a72bad\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ffa845e3-30c1-4a78-998f-4989530d4c05?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet89346cb21b?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1226cbcb-99d5-4524-8b47-5f7370f15ef6" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:48 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4448", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "853aad19-83f8-4a0c-b904-1e540c9cf150", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "968402fb-95fe-45b8-af71-52c0e9f226d2", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075449Z:853aad19-83f8-4a0c-b904-1e540c9cf150", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "cf9fdfd7-6e2c-408a-8ea0-434f368f0749", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:21 GMT", + "x-ms-correlation-request-id" : "4856b5d2-42c4-46f5-95a3-5dfd4da06c62", + "x-ms-arm-service-request-id" : "39466b5b-de77-4965-9931-5726c6422a57", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"13f054e9-6684-4bb0-a015-7624bae0450a\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:4856b5d2-42c4-46f5-95a3-5dfd4da06c62", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "8d120e9b-81f7-4685-8abd-8877086ba3af", + "Body" : "{\r\n \"name\": \"vnet89346cb21b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet89346cb21b\",\r\n \"etag\": \"W/\\\"13f054e9-6684-4bb0-a015-7624bae0450a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8b7a9d7a-036d-4d66-9f7a-c3e4d61b2398\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet89346cb21b/subnets/subnet1\",\r\n \"etag\": \"W/\\\"13f054e9-6684-4bb0-a015-7624bae0450a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/6d069304-dc4f-4919-aa73-2844832221ce?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet85080c1ce2?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "2860fe1b-8bac-455e-925f-d21cd6140f86" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:49 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "3872", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cd3b34ca-db3b-4906-9e55-61da3562ad6e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "358e9a47-2a62-49e5-8dc9-0f10c7ef8697", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075449Z:cd3b34ca-db3b-4906-9e55-61da3562ad6e", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e530618c-1eac-4ed7-ba9e-bed2e8134cfc", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "ef18c43b-6f58-4c20-9334-58f6d1ed69bd", + "x-ms-arm-service-request-id" : "42cad33e-4a6e-487c-b736-e9901cd24465", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"3c36cc63-8638-490e-8080-dec4f7806f43\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:ef18c43b-6f58-4c20-9334-58f6d1ed69bd", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "5ff63d02-c98f-4325-b5a3-5b75b4bf41c5", + "Body" : "{\r\n \"name\": \"vnet85080c1ce2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet85080c1ce2\",\r\n \"etag\": \"W/\\\"3c36cc63-8638-490e-8080-dec4f7806f43\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8007480b-db2e-4567-88d7-7e7551ff2e72\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet85080c1ce2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"3c36cc63-8638-490e-8080-dec4f7806f43\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b180f217-918d-44cf-94e1-6bead05752dd?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet61259fa1ff?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1302a8f8-763f-4947-a3b0-3d3c4b974612" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:54:54 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4362", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dbf6c884-07bc-4f17-be14-9defc88d694d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "8cee5f31-b536-4837-871b-d1cbb2385919", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075455Z:dbf6c884-07bc-4f17-be14-9defc88d694d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "cacacfd2-6f68-4776-8774-bd01dcf47f80", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:20 GMT", + "x-ms-correlation-request-id" : "0e6d2320-0dc2-4f45-b4d2-e22628972632", + "x-ms-arm-service-request-id" : "6ad5b1cf-58d7-4391-9c83-e8f4dbe2d096", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"ab0dd0b0-cc1a-4700-a20f-97ff82797380\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:0e6d2320-0dc2-4f45-b4d2-e22628972632", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "c8010f74-cc4c-4529-ad05-f00d6616a022", + "Body" : "{\r\n \"name\": \"vnet61259fa1ff\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet61259fa1ff\",\r\n \"etag\": \"W/\\\"ab0dd0b0-cc1a-4700-a20f-97ff82797380\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fe2020f1-381b-4cdc-b95b-a782b9c55012\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet61259fa1ff/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ab0dd0b0-cc1a-4700-a20f-97ff82797380\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm12456b3d573940?api-version=2020-05-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/39c9f158-82fc-42ac-9c8c-a591dd3f00ac?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1dc5040f-3e28-485a-be2e-de2172c4a401" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1157", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1885633c-ab4b-4365-8a37-967e0d7ba076", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b040cbd0-7ce6-4e63-bdd0-5c316c47358a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075503Z:1885633c-ab4b-4365-8a37-967e0d7ba076", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d186fe63-ae1d-4fc1-95d3-fca61c4b2630", - "Body" : "{\r\n \"name\": \"nicvm12456b3d573940\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm12456b3d573940\",\r\n \"etag\": \"W/\\\"d6f9ebe6-581c-4aeb-9068-8af93022e842\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fbc337a6-1f21-4f5e-88a7-4a92baa97e3c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm12456b3d573940/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d6f9ebe6-581c-4aeb-9068-8af93022e842\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5107984001/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"s5nehevyyn1u5mh3ia4wylgvsd.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d186fe63-ae1d-4fc1-95d3-fca61c4b2630?api-version=2020-05-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11987", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:21 GMT", + "x-ms-correlation-request-id" : "1c50559e-da0b-4f59-8754-9fee008f3d40", + "x-ms-arm-service-request-id" : "189602c8-91f0-4a8d-b9d8-9b725e5cbd94", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:1c50559e-da0b-4f59-8754-9fee008f3d40", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "a0cca5cb-d782-4e96-a92d-a2397e5ab260", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76063f4860?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/72475f67-42f4-48eb-b2bb-540704f79de2?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a9fa4f47-486c-4728-b18c-f3f6af4289b6" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:03 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7500", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4af1029c-a360-4836-adb4-e7e26a552e2b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "bcc4c604-ba5a-4b2e-8e51-dcffb258abbb", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075504Z:4af1029c-a360-4836-adb4-e7e26a552e2b", - "etag" : "W/\"126bdeb6-7137-49d9-80c6-008dff30535b\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "28c5fbc9-4eeb-4a71-9018-8bf1aed5add7", - "Body" : "{\r\n \"name\": \"vnet76063f4860\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76063f4860\",\r\n \"etag\": \"W/\\\"126bdeb6-7137-49d9-80c6-008dff30535b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c3a5e04b-eba0-4fa4-a8b9-78ab314763b6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76063f4860/subnets/subnet1\",\r\n \"etag\": \"W/\\\"126bdeb6-7137-49d9-80c6-008dff30535b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:21 GMT", + "x-ms-correlation-request-id" : "711f5bce-e249-4683-ac01-ee943fcfa57e", + "x-ms-arm-service-request-id" : "42eb22d0-4357-4fea-9521-bb995f4e1184", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103621Z:711f5bce-e249-4683-ac01-ee943fcfa57e", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "7473e9ee-466f-4813-8b23-4e59795e22a3", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a85a7fe9-1eb3-40e8-b934-5e64de788f83?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b6b83425-15a4-452c-af06-71b0b3af937a?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f77bc5ce-53ac-431c-8dd4-0fe46f031364" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "9152", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c733496b-9520-4ede-9706-2fa3c83c3449", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e237e168-e35e-4338-a795-212016f12474", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075511Z:c733496b-9520-4ede-9706-2fa3c83c3449", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ec1a9baf-415b-4fb3-8223-2793dcf0153b", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:21 GMT", + "x-ms-correlation-request-id" : "a688c8b5-5006-4ec2-a6ad-ece2e662e0ae", + "x-ms-arm-service-request-id" : "6a429ed5-5bcb-49c5-b491-3a6dfcf184cf", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103622Z:a688c8b5-5006-4ec2-a6ad-ece2e662e0ae", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "083610e2-c192-46cb-afd8-f5e0a2246554", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76613186f4?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet88972bc4e5?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "209e9549-8f8f-4c04-8cd5-610cb793ab19" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "8216", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "962c29bc-c380-47ee-bcdc-f48f4271741a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "50d38b61-ed57-4918-8ff8-2c032cb67485", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075511Z:962c29bc-c380-47ee-bcdc-f48f4271741a", - "etag" : "W/\"7ff6a40f-820a-455c-b1a0-ecedfe1e0742\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "83d172ae-8420-4c89-b0be-110c1ff515bf", - "Body" : "{\r\n \"name\": \"vnet76613186f4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76613186f4\",\r\n \"etag\": \"W/\\\"7ff6a40f-820a-455c-b1a0-ecedfe1e0742\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb32f11a-b3d7-4bdd-a303-d409f0048f1b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76613186f4/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7ff6a40f-820a-455c-b1a0-ecedfe1e0742\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:21 GMT", + "x-ms-correlation-request-id" : "00bd014c-a983-4f60-afa3-ce53b353e806", + "x-ms-arm-service-request-id" : "473e2fbf-49ed-4b95-98f9-e4672f2e75d1", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"5cd3616f-737e-470a-944e-d8bdfeac4b85\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103622Z:00bd014c-a983-4f60-afa3-ce53b353e806", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "861fcac1-1c6c-4222-820d-e84adc1ec72b", + "Body" : "{\r\n \"name\": \"vnet88972bc4e5\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet88972bc4e5\",\r\n \"etag\": \"W/\\\"5cd3616f-737e-470a-944e-d8bdfeac4b85\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"45a6385c-753a-4b41-9e56-1166432b302a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet88972bc4e5/subnets/subnet1\",\r\n \"etag\": \"W/\\\"5cd3616f-737e-470a-944e-d8bdfeac4b85\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet58487fc518?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet0130200ea0?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c299e8af-f9da-46e0-a480-d8151355ecc8" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:12 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "8212", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e0c6b34c-12ff-42b5-acdd-b3c03d98ca64", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f1d2f5ba-1624-4b58-8946-66159588e549", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075512Z:e0c6b34c-12ff-42b5-acdd-b3c03d98ca64", - "etag" : "W/\"18df7e76-46bc-4bd5-9f72-b6ec17106258\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b76575d5-a192-4f03-9d00-bda3486a7ad9", - "Body" : "{\r\n \"name\": \"vnet58487fc518\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet58487fc518\",\r\n \"etag\": \"W/\\\"18df7e76-46bc-4bd5-9f72-b6ec17106258\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"47f44d5b-9fc5-4dbf-9bf4-519ea8a84405\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet58487fc518/subnets/subnet1\",\r\n \"etag\": \"W/\\\"18df7e76-46bc-4bd5-9f72-b6ec17106258\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:21 GMT", + "x-ms-correlation-request-id" : "1c9d8782-30b4-4732-acd0-92fdefefba0e", + "x-ms-arm-service-request-id" : "801c9cc5-4538-4f06-b6d5-8ae6a06dbb8c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"7d213be8-c526-4258-a9b4-2e5ce5babdde\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103622Z:1c9d8782-30b4-4732-acd0-92fdefefba0e", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "a935b9a8-4913-42fb-a34f-f6724d6dfa98", + "Body" : "{\r\n \"name\": \"vnet0130200ea0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet0130200ea0\",\r\n \"etag\": \"W/\\\"7d213be8-c526-4258-a9b4-2e5ce5babdde\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ddae8055-089a-47f2-b002-4e9fa109f96e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet0130200ea0/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7d213be8-c526-4258-a9b4-2e5ce5babdde\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet00325edc1d?api-version=2020-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0ea2abff-42bf-4381-a7fb-8655c833835c" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:22 GMT", + "x-ms-correlation-request-id" : "1cd99dd9-6215-43e4-9d48-5f3694ca092e", + "x-ms-arm-service-request-id" : "90008005-1e27-4fe9-b27d-6b8086f53208", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"aa1cab79-bfd2-4ca1-bb41-b09e63ab7c13\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103622Z:1cd99dd9-6215-43e4-9d48-5f3694ca092e", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "46dbf83d-4329-4d0f-8c67-5e9f90a57f3f", + "Body" : "{\r\n \"name\": \"vnet00325edc1d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet00325edc1d\",\r\n \"etag\": \"W/\\\"aa1cab79-bfd2-4ca1-bb41-b09e63ab7c13\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"842d8076-c1b5-453a-9826-f32120ac8cee\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet00325edc1d/subnets/subnet1\",\r\n \"etag\": \"W/\\\"aa1cab79-bfd2-4ca1-bb41-b09e63ab7c13\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet9197212487?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic83223eea084?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "952985bb-7e5a-400a-a77a-9700eea5d39e", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:13 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1338", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1154", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "Pragma" : "no-cache", "retry-after" : "0", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9fccfda5-52a8-4eaf-bade-b8dce952706b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "466ce59f-3f50-4896-ae59-15ea6eee82e3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075514Z:9fccfda5-52a8-4eaf-bade-b8dce952706b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1874c849-2aab-48cd-b369-4f50ce8aac0b", - "Body" : "{\r\n \"name\": \"vnet9197212487\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet9197212487\",\r\n \"etag\": \"W/\\\"33b6c30c-f1fc-4163-8b3d-dcc82554a907\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e173bea9-47d2-4822-93d1-4fee31f47a9c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet9197212487/subnets/subnet1\",\r\n \"etag\": \"W/\\\"33b6c30c-f1fc-4163-8b3d-dcc82554a907\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1874c849-2aab-48cd-b369-4f50ce8aac0b?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:23 GMT", + "x-ms-correlation-request-id" : "3c6aed2a-64f1-45fe-9135-961b69f2e4a9", + "x-ms-arm-service-request-id" : "c174dc96-e720-45ad-89cd-95b5283fd79b", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103623Z:3c6aed2a-64f1-45fe-9135-961b69f2e4a9", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7a27c4c9-0235-4902-84e4-a1e585fba8f7?api-version=2020-05-01", + "x-ms-request-id" : "7a27c4c9-0235-4902-84e4-a1e585fba8f7", + "Body" : "{\r\n \"name\": \"nic83223eea084\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic83223eea084\",\r\n \"etag\": \"W/\\\"c97588b1-4753-4a63-9bf3-be3977915c36\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7be8f668-cb56-48c3-8d1f-cc1d8c3b7ab0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic83223eea084/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c97588b1-4753-4a63-9bf3-be3977915c36\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet61259fa1ff/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4eqcb5q1hdoezok1u4bltrkqcc.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm936330e3b15668?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic24843cad856?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "94ca1bfa-7c2b-4374-8c87-e3fcefb03d2d", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:16 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1154", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "Pragma" : "no-cache", "retry-after" : "0", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "499e0333-ac97-45b7-a505-058dbc453bf2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "257ddeb8-088c-4050-b06a-bf0ea2730104", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075516Z:499e0333-ac97-45b7-a505-058dbc453bf2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "84eb73cf-f92a-4c30-8aca-bcfb9fbe2d2a", - "Body" : "{\r\n \"name\": \"nicvm936330e3b15668\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm936330e3b15668\",\r\n \"etag\": \"W/\\\"4234ab7d-cf66-4028-ac12-fb4aed887149\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4270c47-ecb3-4ccd-b8e0-435c752ab968\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm936330e3b15668/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4234ab7d-cf66-4028-ac12-fb4aed887149\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76063f4860/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"jpqklq3a3ose5kfzpcvtcr1dwg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/84eb73cf-f92a-4c30-8aca-bcfb9fbe2d2a?api-version=2020-05-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet49407bfdd0?api-version=2020-05-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:16 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7351", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6224d58c-f120-4b7e-a5d1-6c8bfc426ecb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "56413736-eb91-4271-9258-e9270b974e95", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075516Z:6224d58c-f120-4b7e-a5d1-6c8bfc426ecb", - "etag" : "W/\"7ed2c6a6-6301-47d7-980f-e62500089262\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "bff119bf-fc37-47d7-b29c-6e42944ebcc1", - "Body" : "{\r\n \"name\": \"vnet49407bfdd0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet49407bfdd0\",\r\n \"etag\": \"W/\\\"7ed2c6a6-6301-47d7-980f-e62500089262\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"996bead7-2317-427c-9a12-4dc203ed87b3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet49407bfdd0/subnets/subnet1\",\r\n \"etag\": \"W/\\\"7ed2c6a6-6301-47d7-980f-e62500089262\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:23 GMT", + "x-ms-correlation-request-id" : "dbaa4230-4b48-45bf-9c2c-a61704ace775", + "x-ms-arm-service-request-id" : "7ec70913-61d5-4131-a1b9-27aa70c7cfcf", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103623Z:dbaa4230-4b48-45bf-9c2c-a61704ace775", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/dd9b7065-fb37-480f-bed5-a3b7285cc356?api-version=2020-05-01", + "x-ms-request-id" : "dd9b7065-fb37-480f-bed5-a3b7285cc356", + "Body" : "{\r\n \"name\": \"nic24843cad856\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic24843cad856\",\r\n \"etag\": \"W/\\\"c6ea26b6-38c0-4032-b631-d11975421c03\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d74f7bd9-fafd-4c8c-b223-e102dea3084c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic24843cad856/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c6ea26b6-38c0-4032-b631-d11975421c03\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1941477e27/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"f51ylnt5fo4u1a10lxi3xtwkib.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm5730733c404159?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic42289a0a68b?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "9fc8f3ee-d234-468e-a081-84f49c673b48", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:15 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1152", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "Pragma" : "no-cache", "retry-after" : "0", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "128cb946-1f54-4128-aa86-4dfdd34b04a1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "18a68b49-97b1-42bd-b100-84d880f25b7e", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075516Z:128cb946-1f54-4128-aa86-4dfdd34b04a1", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e1b275aa-bb99-4c3e-9232-b4040ec1733b", - "Body" : "{\r\n \"name\": \"nicvm5730733c404159\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm5730733c404159\",\r\n \"etag\": \"W/\\\"51fe45f2-a754-4ea1-9a90-04aadfcc93bb\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"07b01470-6faf-4d11-929b-7404f0f9cb17\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm5730733c404159/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"51fe45f2-a754-4ea1-9a90-04aadfcc93bb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet96626061fe/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rsidxhuzwijelblcytptm3czfh.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e1b275aa-bb99-4c3e-9232-b4040ec1733b?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:23 GMT", + "x-ms-correlation-request-id" : "58309cf0-97ec-46a0-b71f-a19feddfc8ce", + "x-ms-arm-service-request-id" : "b879ddc3-512d-4eee-9428-343f284029c4", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103624Z:58309cf0-97ec-46a0-b71f-a19feddfc8ce", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1e794dc4-ecb3-4d08-adc4-dd1608ea921c?api-version=2020-05-01", + "x-ms-request-id" : "1e794dc4-ecb3-4d08-adc4-dd1608ea921c", + "Body" : "{\r\n \"name\": \"nic42289a0a68b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic42289a0a68b\",\r\n \"etag\": \"W/\\\"2d495c87-15c3-4b4d-9be1-37257c67bae7\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"73a56e0d-c783-428a-a1b6-c894d9cd72b1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic42289a0a68b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2d495c87-15c3-4b4d-9be1-37257c67bae7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet89346cb21b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pkoxvc1nante1h10ypsnmgzdta.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/594acea0-91d2-48e2-811f-f8a6b9666c3a?api-version=2020-05-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d7961b9a-a649-4eb4-a2c7-d34edc143e28" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:24 GMT", + "x-ms-correlation-request-id" : "5852445d-7cc6-45fb-9ff7-1a2ce1261767", + "x-ms-arm-service-request-id" : "22ba36d1-6833-418a-a048-420db022caae", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103624Z:5852445d-7cc6-45fb-9ff7-1a2ce1261767", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "ff736694-33ea-4cd5-9252-9bdde2f839f9", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm454650a9f33449?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic33319f5097a?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "83d84723-c28a-4f92-ad16-41b555561a1a", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1165", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "Pragma" : "no-cache", "retry-after" : "0", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0cc5c1b9-4ef1-46b2-8794-9fdc144835a7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d61ee6de-b8d5-4cc9-86a7-43d0d3847e15", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075517Z:0cc5c1b9-4ef1-46b2-8794-9fdc144835a7", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "550a3054-e2ed-4538-b447-4bd2053af632", - "Body" : "{\r\n \"name\": \"nicvm454650a9f33449\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm454650a9f33449\",\r\n \"etag\": \"W/\\\"9bc85ad0-9434-42a9-8b43-33f9273447ef\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"de2293a5-b3df-4d54-80fb-d190c45d3a7e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm454650a9f33449/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9bc85ad0-9434-42a9-8b43-33f9273447ef\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76613186f4/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"dlytf04xwpouxiyd0qe5abepdd.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/550a3054-e2ed-4538-b447-4bd2053af632?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:23 GMT", + "x-ms-correlation-request-id" : "187c053e-dd06-405c-a6fc-5e362d293ba6", + "x-ms-arm-service-request-id" : "2c359565-e8b0-402f-863b-a77a120f992d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103624Z:187c053e-dd06-405c-a6fc-5e362d293ba6", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ae032ef6-1d71-4725-ad81-3951507f9b5e?api-version=2020-05-01", + "x-ms-request-id" : "ae032ef6-1d71-4725-ad81-3951507f9b5e", + "Body" : "{\r\n \"name\": \"nic33319f5097a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic33319f5097a\",\r\n \"etag\": \"W/\\\"d9038e0d-3093-4bc5-8346-1a10924c42c9\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"86c05987-c0c4-4af7-be0e-08f1d358504e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic33319f5097a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d9038e0d-3093-4bc5-8346-1a10924c42c9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet6064313e28/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"y1o5gaxtol3u5hrxymp1t5fqtf.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm54046d59996856?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic0200828439d?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3256b013-071a-4c97-9b91-73f17290d4fd", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1150", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "Pragma" : "no-cache", "retry-after" : "0", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6207bb60-008d-4602-8eba-a708fd6996f7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "94df5200-a99c-4919-a2ec-48c066d16aaf", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075531Z:6207bb60-008d-4602-8eba-a708fd6996f7", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4acb0a9f-d0a3-4cbe-a5c0-314a881f81ef", - "Body" : "{\r\n \"name\": \"nicvm54046d59996856\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm54046d59996856\",\r\n \"etag\": \"W/\\\"f82284e3-5414-4997-b9d7-48aa537c1f3a\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb5e9612-0cc1-4abb-8739-c89f060296ce\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm54046d59996856/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f82284e3-5414-4997-b9d7-48aa537c1f3a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet58487fc518/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lng5ir4ft45u1g5ukgpkrkceaf.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4acb0a9f-d0a3-4cbe-a5c0-314a881f81ef?api-version=2020-05-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1874c849-2aab-48cd-b369-4f50ce8aac0b?api-version=2020-05-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:35 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7961", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cb8daf15-8b37-4643-b970-d23c5f4fde95", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "0c1cca82-1a51-4739-8b36-6cc3d52218ad", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075535Z:cb8daf15-8b37-4643-b970-d23c5f4fde95", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7d97bea8-e3a5-4a7b-985b-99b5af4fca52", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:24 GMT", + "x-ms-correlation-request-id" : "e9eb5bcd-736c-4de7-a5f6-d886105c8e95", + "x-ms-arm-service-request-id" : "9bd6f16f-3b87-47ec-a674-4826a1cd8a47", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103624Z:e9eb5bcd-736c-4de7-a5f6-d886105c8e95", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/02c64ecb-0e50-46a8-9f41-4aad75169065?api-version=2020-05-01", + "x-ms-request-id" : "02c64ecb-0e50-46a8-9f41-4aad75169065", + "Body" : "{\r\n \"name\": \"nic0200828439d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic0200828439d\",\r\n \"etag\": \"W/\\\"91ffea85-b746-44df-9229-218ec59a18b0\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2b32ded0-973c-45b2-ad86-d3126ce0fcff\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic0200828439d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"91ffea85-b746-44df-9229-218ec59a18b0\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet29013048b7/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"5jrpuyv2bedeldbzkj3w2kyqae.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm79322165841179?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic299826df37d?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4fbfe8b1-c746-433b-9757-d937dd58dac1", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:36 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1163", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "Pragma" : "no-cache", "retry-after" : "0", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3b35345a-bf18-4e5e-977a-f1cbd15ce780", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "163b061a-1882-4942-a219-452ea66063a9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075536Z:3b35345a-bf18-4e5e-977a-f1cbd15ce780", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9d592581-b26b-49a2-9b91-5765d121458d", - "Body" : "{\r\n \"name\": \"nicvm79322165841179\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm79322165841179\",\r\n \"etag\": \"W/\\\"7b52e5c1-f113-4e13-9546-e9bb1b1f5d66\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa25d854-1bcd-4375-8e6e-f2c305b1db86\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm79322165841179/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7b52e5c1-f113-4e13-9546-e9bb1b1f5d66\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet49407bfdd0/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"05vgxgixen4efgqsjxbah1mhwd.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/9d592581-b26b-49a2-9b91-5765d121458d?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:24 GMT", + "x-ms-correlation-request-id" : "023c6872-0a29-4312-8112-3dbdc5d52479", + "x-ms-arm-service-request-id" : "a81622ad-e853-44c0-9bcc-c0fbf9450511", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103624Z:023c6872-0a29-4312-8112-3dbdc5d52479", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a48062c2-a21b-4baf-9655-62f01293be0d?api-version=2020-05-01", + "x-ms-request-id" : "a48062c2-a21b-4baf-9655-62f01293be0d", + "Body" : "{\r\n \"name\": \"nic299826df37d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic299826df37d\",\r\n \"etag\": \"W/\\\"9a18e98e-a374-4d8c-bfc3-bde9c27051fe\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4530ef9-a958-44a9-a421-f8da639876f6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic299826df37d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9a18e98e-a374-4d8c-bfc3-bde9c27051fe\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1989715670/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ldmkztpb1qre5naawbb0ubeopa.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm00034c39543765?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic323272e0039?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "48ee3406-6299-4d61-b100-2b768d31a83d", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:42 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1176", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "Pragma" : "no-cache", "retry-after" : "0", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "26b9ee83-b2fd-4bae-8437-5fa6e864faeb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "e186d208-37cd-4cef-b5b3-1cd66f513a1f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075543Z:26b9ee83-b2fd-4bae-8437-5fa6e864faeb", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0f69452a-5938-4545-ba36-7fb805b59502", - "Body" : "{\r\n \"name\": \"nicvm00034c39543765\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm00034c39543765\",\r\n \"etag\": \"W/\\\"5d3ff16c-226f-46d5-89a7-91e692598786\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8b2be136-06b7-4166-a03a-826fd6069c09\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm00034c39543765/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5d3ff16c-226f-46d5-89a7-91e692598786\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet3286434862/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ua4mvqgwox3ermfywuejc3jr2g.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0f69452a-5938-4545-ba36-7fb805b59502?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:24 GMT", + "x-ms-correlation-request-id" : "5b8fddad-b35f-4658-810a-c3afd5dc53f5", + "x-ms-arm-service-request-id" : "d2d9c2dc-0970-40ba-99be-9a6e7b876c2c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103624Z:5b8fddad-b35f-4658-810a-c3afd5dc53f5", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/60dd42e8-0c87-417e-8d2b-06089ad38226?api-version=2020-05-01", + "x-ms-request-id" : "60dd42e8-0c87-417e-8d2b-06089ad38226", + "Body" : "{\r\n \"name\": \"nic323272e0039\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic323272e0039\",\r\n \"etag\": \"W/\\\"eb52fe59-9dcf-4bfc-9be6-b035ed2fb620\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"42978e50-25b4-4a78-aad6-67f48d47666c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic323272e0039/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"eb52fe59-9dcf-4bfc-9be6-b035ed2fb620\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet21104fb12d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uc20hmcnejeunee3d5zraivwvf.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/e1b275aa-bb99-4c3e-9232-b4040ec1733b?api-version=2020-05-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic97905350a55?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "df83d70f-482d-45e6-8361-71ee3f5cf196", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:48 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "8878", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9fc1f7f2-ad53-4eb7-9894-c928b250f515", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "62af9989-9649-4fff-b6c6-9719de34509b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075549Z:9fc1f7f2-ad53-4eb7-9894-c928b250f515", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4ed050a2-f0a0-4c6a-9832-40b8b3ac9c70", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:23 GMT", + "x-ms-correlation-request-id" : "e9a2044c-3dfd-4ff6-9ac9-b2d0c4f25121", + "x-ms-arm-service-request-id" : "b5172567-252a-4119-bd2a-9516803b7dd8", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103624Z:e9a2044c-3dfd-4ff6-9ac9-b2d0c4f25121", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/76b9a26c-6a46-45a1-9353-2f6e1df9d3dd?api-version=2020-05-01", + "x-ms-request-id" : "76b9a26c-6a46-45a1-9353-2f6e1df9d3dd", + "Body" : "{\r\n \"name\": \"nic97905350a55\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic97905350a55\",\r\n \"etag\": \"W/\\\"09a9037b-df6a-4971-87e7-509fe5e81ffb\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d2af6829-18a4-469c-8d24-d869dbcab57a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic97905350a55/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"09a9037b-df6a-4971-87e7-509fe5e81ffb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1925985d5c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zx1phyc5mg1enhk32rnjrby3bb.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/be186a3e-dc3e-4500-8233-05b50aaa3757?api-version=2020-05-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic514531f7111?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "99658576-810d-4ba3-a055-f4966fe2ac25", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:49 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "8877", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "95bff964-30f8-4e63-bd3d-da220737ef53", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7661725e-2690-41d7-bd56-a62dd94c1dba", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075549Z:95bff964-30f8-4e63-bd3d-da220737ef53", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f38b8358-9d82-40d9-a82d-74814fb28b1c", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:24 GMT", + "x-ms-correlation-request-id" : "f9bd7502-0963-4ed4-8ead-320b04a790c5", + "x-ms-arm-service-request-id" : "73865430-58c8-4d34-bce1-f564e99f9abd", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103624Z:f9bd7502-0963-4ed4-8ead-320b04a790c5", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/266d28b2-6744-49a5-b915-065571a3f490?api-version=2020-05-01", + "x-ms-request-id" : "266d28b2-6744-49a5-b915-065571a3f490", + "Body" : "{\r\n \"name\": \"nic514531f7111\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic514531f7111\",\r\n \"etag\": \"W/\\\"ee123416-8d15-4a93-bb1d-ebe738a1c5ee\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ecb96a0f-99d8-41eb-83c5-59c996221523\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic514531f7111/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ee123416-8d15-4a93-bb1d-ebe738a1c5ee\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet85080c1ce2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"bneapabo1ntulcgxpz0vd5zooc.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/550a3054-e2ed-4538-b447-4bd2053af632?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet78227e92c2?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "76abd59d-f9af-4680-bb1c-02ee38bd82fb" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:50 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7804", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fc65f693-0703-4530-911f-f98889e1c0fb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1c002878-ed00-4240-bf6f-ebe96012fc57", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075550Z:fc65f693-0703-4530-911f-f98889e1c0fb", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "bf1475d8-46d1-4ce6-b780-93cc5a21fa6a", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:24 GMT", + "x-ms-correlation-request-id" : "3172c6ff-f625-487a-9d0f-ddb89128a373", + "x-ms-arm-service-request-id" : "f1b6ecd7-7fc2-43c3-a538-1befe973c4d3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"ad93baaa-8a0f-4dea-88d4-29cd05fe2a5a\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103624Z:3172c6ff-f625-487a-9d0f-ddb89128a373", + "Expires" : "-1", + "Content-Length" : "1340", + "x-ms-request-id" : "393ac3b8-ab28-4aa4-be82-acea7bb2b15d", + "Body" : "{\r\n \"name\": \"vnet78227e92c2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet78227e92c2\",\r\n \"etag\": \"W/\\\"ad93baaa-8a0f-4dea-88d4-29cd05fe2a5a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"84fef136-e735-45db-a165-74ccab278271\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet78227e92c2/subnets/subnet1\",\r\n \"etag\": \"W/\\\"ad93baaa-8a0f-4dea-88d4-29cd05fe2a5a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet93745a29ac?api-version=2020-05-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic7097948b727?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5c884068-14de-45ad-8faa-da7e17be1b11", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:55:56 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1179", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6823", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "38510259-9e23-43aa-b245-92f082246c57", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "44da546f-951f-42ca-a788-2bf8e537e1cb", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075556Z:38510259-9e23-43aa-b245-92f082246c57", - "etag" : "W/\"9a96872f-cc4f-44b1-b11d-8648d63a3453\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "622f465d-b092-419b-a646-7738cad4d46e", - "Body" : "{\r\n \"name\": \"vnet93745a29ac\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet93745a29ac\",\r\n \"etag\": \"W/\\\"9a96872f-cc4f-44b1-b11d-8648d63a3453\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"93853706-538a-4418-ad96-e9c2c27ef790\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet93745a29ac/subnets/subnet1\",\r\n \"etag\": \"W/\\\"9a96872f-cc4f-44b1-b11d-8648d63a3453\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:23 GMT", + "x-ms-correlation-request-id" : "272250f6-2839-4223-9462-03854eeccf27", + "x-ms-arm-service-request-id" : "aa5681bc-91c2-4988-843a-d09e15e3eb39", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103624Z:272250f6-2839-4223-9462-03854eeccf27", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0685aef0-e4f3-47e4-b4f3-5dee9e6cbf21?api-version=2020-05-01", + "x-ms-request-id" : "0685aef0-e4f3-47e4-b4f3-5dee9e6cbf21", + "Body" : "{\r\n \"name\": \"nic7097948b727\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic7097948b727\",\r\n \"etag\": \"W/\\\"9b8c8a2a-2f66-46f6-abb1-b19b0af5314c\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d4b3c788-1211-4551-8591-c526eedeceda\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic7097948b727/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9b8c8a2a-2f66-46f6-abb1-b19b0af5314c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet0130200ea0/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"kwak3xm0bdzepmacj0p0ccpzng.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet6295412409?api-version=2020-05-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic68701cef329?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "660e4398-be8b-4bb3-a05e-4ff971c99910", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:03 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "8772", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "28ada915-137e-4157-a68b-d48f5f94b960", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "9b2e9572-fc94-4e4b-88e1-cc06cf2d1151", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075603Z:28ada915-137e-4157-a68b-d48f5f94b960", - "etag" : "W/\"1a8e7d62-5210-4f4b-baa8-338baddb60bf\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0d7c9152-4e44-434c-9121-44a4eb070cbe", - "Body" : "{\r\n \"name\": \"vnet6295412409\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet6295412409\",\r\n \"etag\": \"W/\\\"1a8e7d62-5210-4f4b-baa8-338baddb60bf\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"82d85513-b064-433d-bfd9-1063416d1690\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet6295412409/subnets/subnet1\",\r\n \"etag\": \"W/\\\"1a8e7d62-5210-4f4b-baa8-338baddb60bf\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:24 GMT", + "x-ms-correlation-request-id" : "b3834c81-5620-47cf-85cd-280c232796ad", + "x-ms-arm-service-request-id" : "c65b190c-3b76-4dff-96c5-bb38204ad9bf", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103625Z:b3834c81-5620-47cf-85cd-280c232796ad", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/6450fd0e-f820-48ab-9435-a23408613b35?api-version=2020-05-01", + "x-ms-request-id" : "6450fd0e-f820-48ab-9435-a23408613b35", + "Body" : "{\r\n \"name\": \"nic68701cef329\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic68701cef329\",\r\n \"etag\": \"W/\\\"51baf2b1-c402-42fe-a2a6-5ea567493516\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"460f4978-a620-4883-b530-e6c2b3334fec\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic68701cef329/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"51baf2b1-c402-42fe-a2a6-5ea567493516\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet00325edc1d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"o0ac1bfvye3elgbg4mqsblem3g.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm454650a9f33449?api-version=2020-05-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic92104086355?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d41b6e80-70da-417b-a224-1d7725d19206", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:03 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6727", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a6eed539-4455-4c95-a9d1-a46eef05dc3b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "20ef8492-fac2-458a-8d36-070192d470ca", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075604Z:a6eed539-4455-4c95-a9d1-a46eef05dc3b", - "etag" : "W/\"9bc85ad0-9434-42a9-8b43-33f9273447ef\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d25a6e46-4c29-484e-8ba2-8a55341e5a37", - "Body" : "{\r\n \"name\": \"nicvm454650a9f33449\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm454650a9f33449\",\r\n \"etag\": \"W/\\\"9bc85ad0-9434-42a9-8b43-33f9273447ef\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"de2293a5-b3df-4d54-80fb-d190c45d3a7e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm454650a9f33449/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9bc85ad0-9434-42a9-8b43-33f9273447ef\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76613186f4/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"dlytf04xwpouxiyd0qe5abepdd.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:24 GMT", + "x-ms-correlation-request-id" : "1c36fe9a-b3af-4b01-a78a-4ef5bfdad629", + "x-ms-arm-service-request-id" : "b4f6ae65-ae4f-4b82-9d49-10df0e4694d8", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103625Z:1c36fe9a-b3af-4b01-a78a-4ef5bfdad629", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/25fc9fad-c874-4d01-9ee4-40928c69268c?api-version=2020-05-01", + "x-ms-request-id" : "25fc9fad-c874-4d01-9ee4-40928c69268c", + "Body" : "{\r\n \"name\": \"nic92104086355\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic92104086355\",\r\n \"etag\": \"W/\\\"6069c3bc-34e9-470f-9aa5-f0db7b222999\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"28580f01-7edc-46e5-a169-d6da65caf6cb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic92104086355/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6069c3bc-34e9-470f-9aa5-f0db7b222999\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet88972bc4e5/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lq2kmrj0ovauxhswcftegkzqfc.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm38208d82127342?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic758068060a2?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a04e3f8a-bff8-4850-9b9b-3b7649e77284", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1148", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "Pragma" : "no-cache", "retry-after" : "0", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "da8f6ddb-d353-4dbf-94ea-630491808513", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6177c758-40d6-4ba1-84f7-49ae3f2e522c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075608Z:da8f6ddb-d353-4dbf-94ea-630491808513", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "584e2ca4-626f-44ee-af1b-7a34fae3beb6", - "Body" : "{\r\n \"name\": \"nicvm38208d82127342\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm38208d82127342\",\r\n \"etag\": \"W/\\\"a1d93473-d912-4661-9940-ee7557f11dc7\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5c06bb8-d4e1-4997-b79e-9049a48cdb72\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm38208d82127342/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a1d93473-d912-4661-9940-ee7557f11dc7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet6295412409/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cnk3ratewa4uhp4zcbruc1iwsa.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/584e2ca4-626f-44ee-af1b-7a34fae3beb6?api-version=2020-05-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm5730733c404159?api-version=2020-05-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:14 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7534", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6389acac-e6d5-49a7-b9b4-11c923340c83", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "06bf4c16-1dfb-4ff0-a9ed-ae1f24674180", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075615Z:6389acac-e6d5-49a7-b9b4-11c923340c83", - "etag" : "W/\"51fe45f2-a754-4ea1-9a90-04aadfcc93bb\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f02763b0-25c9-427a-9aff-5ac6ea830f6c", - "Body" : "{\r\n \"name\": \"nicvm5730733c404159\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm5730733c404159\",\r\n \"etag\": \"W/\\\"51fe45f2-a754-4ea1-9a90-04aadfcc93bb\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"07b01470-6faf-4d11-929b-7404f0f9cb17\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm5730733c404159/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"51fe45f2-a754-4ea1-9a90-04aadfcc93bb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet96626061fe/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"rsidxhuzwijelblcytptm3czfh.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4acb0a9f-d0a3-4cbe-a5c0-314a881f81ef?api-version=2020-05-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" - }, - "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6555", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3c529eb9-45ee-4149-ac96-bfeea7c86426", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "73fb3961-add7-4961-a122-5b3809d68460", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075618Z:3c529eb9-45ee-4149-ac96-bfeea7c86426", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e1953cf0-fc51-433b-94b8-b33bc689a632", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:25 GMT", + "x-ms-correlation-request-id" : "28d505e7-aaf4-430a-a178-79715dc8674a", + "x-ms-arm-service-request-id" : "64cb5821-64d7-46dc-831d-791f55c5acd3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103625Z:28d505e7-aaf4-430a-a178-79715dc8674a", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c48a4d43-7107-48ab-99be-7b761a237354?api-version=2020-05-01", + "x-ms-request-id" : "c48a4d43-7107-48ab-99be-7b761a237354", + "Body" : "{\r\n \"name\": \"nic758068060a2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic758068060a2\",\r\n \"etag\": \"W/\\\"d9ff21cf-32df-486b-a38b-b6cd355cf621\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"894096d0-055b-456b-8e66-44d0f8cdf1aa\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic758068060a2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d9ff21cf-32df-486b-a38b-b6cd355cf621\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet4771416f21/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xud2waz14goefo1kedbuz1phxf.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm37921ee6895661?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic78048e61c4e?api-version=2020-05-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c6413206-8e9f-4572-93e8-e59926fdfebf", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:19 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1145", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1178", + "Pragma" : "no-cache", "retry-after" : "0", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b2774121-0026-434c-94d0-b9418798262a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "196d4e00-a220-4082-acc9-9a101fa8ad99", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075620Z:b2774121-0026-434c-94d0-b9418798262a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "497ec5de-7f04-4142-8ada-81e964437ade", - "Body" : "{\r\n \"name\": \"nicvm37921ee6895661\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm37921ee6895661\",\r\n \"etag\": \"W/\\\"f0077edb-7a18-4309-9814-f6afde381340\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"68da34ba-ba30-4141-bc25-a6f825c30eb9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm37921ee6895661/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f0077edb-7a18-4309-9814-f6afde381340\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet93745a29ac/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ay1yle2kkmmejlmw3hbme5xxsa.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/497ec5de-7f04-4142-8ada-81e964437ade?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:26 GMT", + "x-ms-correlation-request-id" : "e3e27a26-ae31-486f-9879-4a1aa1b2b1ec", + "x-ms-arm-service-request-id" : "df086a0a-2503-4e4b-a99e-f2771f007d4b", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103627Z:e3e27a26-ae31-486f-9879-4a1aa1b2b1ec", + "Expires" : "-1", + "Content-Length" : "1653", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f61f9553-8b8e-4f0c-a7ba-1737b7ec486c?api-version=2020-05-01", + "x-ms-request-id" : "f61f9553-8b8e-4f0c-a7ba-1737b7ec486c", + "Body" : "{\r\n \"name\": \"nic78048e61c4e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic78048e61c4e\",\r\n \"etag\": \"W/\\\"0c3434ad-9677-44d6-9940-529b95ab913b\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0592f178-2415-4427-a560-7e7f8a51b331\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic78048e61c4e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0c3434ad-9677-44d6-9940-529b95ab913b\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet78227e92c2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"g1y53bbv25nulilfotgkwj2cob.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/84eb73cf-f92a-4c30-8aca-bcfb9fbe2d2a?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7a27c4c9-0235-4902-84e4-a1e585fba8f7?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "aaa3ada3-df65-47df-8bca-4d41415e2ffb" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6508", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fa3fc24d-a1af-4cd9-8c9e-43753ecadd7b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b2448538-18cd-4cea-b7df-bed0e3fbb1a9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075621Z:fa3fc24d-a1af-4cd9-8c9e-43753ecadd7b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "707f6813-f8c2-4cc2-adc6-b87534857f12", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:53 GMT", + "x-ms-correlation-request-id" : "ef40e21e-43c9-4b18-8d60-4129dbcc5c0d", + "x-ms-arm-service-request-id" : "3082ff04-1993-42cc-9ee0-b5927829c73b", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103654Z:ef40e21e-43c9-4b18-8d60-4129dbcc5c0d", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "09f0923d-9d52-4dbe-868e-1cf8c8d5a290", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0f69452a-5938-4545-ba36-7fb805b59502?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/dd9b7065-fb37-480f-bed5-a3b7285cc356?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ccff881b-e225-465b-bbb5-448443ce2f15" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6488", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f8c8417e-6394-44fe-b160-40bfab06bb68", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7262b9d9-0378-4665-af98-dab27935a10b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075623Z:f8c8417e-6394-44fe-b160-40bfab06bb68", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d46cca70-9a6e-4cdb-8f29-acf2cd258762", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "6c4b68dc-7127-42cf-ba58-50b506432ff6", + "x-ms-arm-service-request-id" : "a7a15510-aca8-4e9c-8577-c2e490e91d1a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103654Z:6c4b68dc-7127-42cf-ba58-50b506432ff6", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "22b66aea-369f-42aa-9744-318a77f6d6da", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm54046d59996856?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1e794dc4-ecb3-4d08-adc4-dd1608ea921c?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f5789289-b070-4b90-acca-3192249f43da" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6387", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "499d6295-0101-4821-b67b-23473d20db4a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "18eb3a37-06bb-4324-858e-ed9ed63f3676", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075630Z:499d6295-0101-4821-b67b-23473d20db4a", - "etag" : "W/\"f82284e3-5414-4997-b9d7-48aa537c1f3a\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2afcc9b0-1f5d-4216-9240-9e0c2c6eeb3e", - "Body" : "{\r\n \"name\": \"nicvm54046d59996856\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm54046d59996856\",\r\n \"etag\": \"W/\\\"f82284e3-5414-4997-b9d7-48aa537c1f3a\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"eb5e9612-0cc1-4abb-8739-c89f060296ce\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm54046d59996856/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f82284e3-5414-4997-b9d7-48aa537c1f3a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet58487fc518/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lng5ir4ft45u1g5ukgpkrkceaf.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:53 GMT", + "x-ms-correlation-request-id" : "2f0371a3-a55a-489b-960d-96113ce95b0f", + "x-ms-arm-service-request-id" : "f90e6168-3718-4549-a1cb-84ace1524b48", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103654Z:2f0371a3-a55a-489b-960d-96113ce95b0f", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "c6e9ce0f-9cab-4567-bcb6-fab43337aec8", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm00034c39543765?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ae032ef6-1d71-4725-ad81-3951507f9b5e?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ff47af60-3951-452a-a2b8-760282083e72" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7343", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "99d2b2d4-28c2-4f30-8691-13975e03e143", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "a5afd387-905a-4574-9caa-cdd0bfec9fe6", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075633Z:99d2b2d4-28c2-4f30-8691-13975e03e143", - "etag" : "W/\"5d3ff16c-226f-46d5-89a7-91e692598786\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "696d828d-1ca5-423a-aed0-445df24edd0e", - "Body" : "{\r\n \"name\": \"nicvm00034c39543765\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm00034c39543765\",\r\n \"etag\": \"W/\\\"5d3ff16c-226f-46d5-89a7-91e692598786\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8b2be136-06b7-4166-a03a-826fd6069c09\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm00034c39543765/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"5d3ff16c-226f-46d5-89a7-91e692598786\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet3286434862/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ua4mvqgwox3ermfywuejc3jr2g.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "96313740-ead3-4771-b7f1-5ad9d1abf77a", + "x-ms-arm-service-request-id" : "38112836-0747-4dbf-a768-44cf44cf2bca", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103654Z:96313740-ead3-4771-b7f1-5ad9d1abf77a", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "35122555-79b7-4e80-a006-7c097f26e741", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm936330e3b15668?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic83223eea084?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "212d1f39-2ff7-4499-8d55-b25ef933d59d" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6197", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "038202ed-247e-4942-a8bd-cf2355020780", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "107e571f-659e-4869-aa01-7b7c6e3e772d", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075633Z:038202ed-247e-4942-a8bd-cf2355020780", - "etag" : "W/\"4234ab7d-cf66-4028-ac12-fb4aed887149\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a8499cd1-67ae-4f23-bed6-a6259f2e6b2f", - "Body" : "{\r\n \"name\": \"nicvm936330e3b15668\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm936330e3b15668\",\r\n \"etag\": \"W/\\\"4234ab7d-cf66-4028-ac12-fb4aed887149\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c4270c47-ecb3-4ccd-b8e0-435c752ab968\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm936330e3b15668/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"4234ab7d-cf66-4028-ac12-fb4aed887149\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet76063f4860/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"jpqklq3a3ose5kfzpcvtcr1dwg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "bd9debaf-da19-440d-814c-aed142b9836d", + "x-ms-arm-service-request-id" : "d7034e8e-17ac-4107-82b8-25943d7f0cd4", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"c97588b1-4753-4a63-9bf3-be3977915c36\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103654Z:bd9debaf-da19-440d-814c-aed142b9836d", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "e20e8e5a-c43b-454c-b6ed-7806ce059733", + "Body" : "{\r\n \"name\": \"nic83223eea084\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic83223eea084\",\r\n \"etag\": \"W/\\\"c97588b1-4753-4a63-9bf3-be3977915c36\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7be8f668-cb56-48c3-8d1f-cc1d8c3b7ab0\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic83223eea084/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c97588b1-4753-4a63-9bf3-be3977915c36\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet61259fa1ff/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"4eqcb5q1hdoezok1u4bltrkqcc.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm454650?api-version=2019-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/02c64ecb-0e50-46a8-9f41-4aad75169065?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "42df3044-1c67-466d-8b46-01efe643bb2a" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:34 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1519", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1158", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "090f930a-22dc-49fd-a49e-f349c84adeb1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075634Z:090f930a-22dc-49fd-a49e-f349c84adeb1", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "bef7b92f-3c2a-4a26-a30a-a177baedf7dc", - "Body" : "{\r\n \"name\": \"vm454650\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm454650\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"612d65e4-bbab-4846-bc47-1585a54d628f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsDesktop\",\r\n \"offer\": \"Windows-10\",\r\n \"sku\": \"20h1-pro\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"19041.388.2007101729\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm454650\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm454650a9f33449\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bef7b92f-3c2a-4a26-a30a-a177baedf7dc?api-version=2019-12-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11980", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:53 GMT", + "x-ms-correlation-request-id" : "b9d1d2bf-6676-47f9-9067-f0929c80b7f6", + "x-ms-arm-service-request-id" : "a3fd18bc-cc99-44ea-b4fb-851335352c2f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103654Z:b9d1d2bf-6676-47f9-9067-f0929c80b7f6", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "e0ff1673-9be3-4e68-8054-b617979c1330", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm54046d?api-version=2019-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic42289a0a68b?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "acb7941b-4d19-40f8-8348-7fcb756b4cfc" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1490", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1147", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e7ef7360-36b7-4125-94c8-16328037549a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075637Z:e7ef7360-36b7-4125-94c8-16328037549a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "896855eb-0f8c-460e-a7d6-a22e0b193cb9", - "Body" : "{\r\n \"name\": \"vm54046d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm54046d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"534cc59d-04a0-429b-bd1e-8d4dc2ca0a27\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"sles-15-sp1\",\r\n \"sku\": \"gen1\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"2020.06.10\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm54046d\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm54046d59996856\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/896855eb-0f8c-460e-a7d6-a22e0b193cb9?api-version=2019-12-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "3879b72e-e00b-47ad-8467-d905edb7c2a3", + "x-ms-arm-service-request-id" : "63eed43b-4ad9-40cc-881b-d573159dad4a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"2d495c87-15c3-4b4d-9be1-37257c67bae7\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103654Z:3879b72e-e00b-47ad-8467-d905edb7c2a3", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "817de5d7-8a0b-4e31-964e-e67119c87a0d", + "Body" : "{\r\n \"name\": \"nic42289a0a68b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic42289a0a68b\",\r\n \"etag\": \"W/\\\"2d495c87-15c3-4b4d-9be1-37257c67bae7\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"73a56e0d-c783-428a-a1b6-c894d9cd72b1\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic42289a0a68b/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2d495c87-15c3-4b4d-9be1-37257c67bae7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet89346cb21b/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pkoxvc1nante1h10ypsnmgzdta.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm8434231ed96034?api-version=2020-05-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/60dd42e8-0c87-417e-8d2b-06089ad38226?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0a8ca4c2-0d1e-4702-b02c-cef2b55a37c1" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1140", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "20c2e5c6-6328-40d3-8909-bd10b0afc976", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "2b2e81c9-6811-4cc8-950c-9db6385df15c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075638Z:20c2e5c6-6328-40d3-8909-bd10b0afc976", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "86ed5442-f42d-4222-8c94-3376a0ce575a", - "Body" : "{\r\n \"name\": \"nicvm8434231ed96034\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm8434231ed96034\",\r\n \"etag\": \"W/\\\"0aeb5fa7-65f4-43c4-9e0e-12f68bcecb8b\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d4531266-81a6-405f-88db-f6d15e8cc99f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm8434231ed96034/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0aeb5fa7-65f4-43c4-9e0e-12f68bcecb8b\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5433527d80/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"b3bvdx3pefre5ayoykhek0abae.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/86ed5442-f42d-4222-8c94-3376a0ce575a?api-version=2020-05-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11978", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:53 GMT", + "x-ms-correlation-request-id" : "0e6756e9-dd71-448b-8dcb-28964da115fd", + "x-ms-arm-service-request-id" : "4952bb46-fa01-490d-9015-ff8d7543d745", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103654Z:0e6756e9-dd71-448b-8dcb-28964da115fd", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "551b481b-3dab-4cec-bc86-601d975a9e8d", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm573073?api-version=2019-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/76b9a26c-6a46-45a1-9353-2f6e1df9d3dd?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6568cbf6-6e97-4d84-b006-56c9b6c26511" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1492", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e15ff222-8f53-47a6-a6bc-7d2099b0a7cf", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075638Z:e15ff222-8f53-47a6-a6bc-7d2099b0a7cf", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f257e1b3-3340-418b-a896-deef763da97e", - "Body" : "{\r\n \"name\": \"vm573073\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm573073\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"561d2f3b-1605-4445-b445-a2a7a6b01f99\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"openSUSE-Leap\",\r\n \"sku\": \"15-1\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"2019.06.18\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm573073\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm5730733c404159\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f257e1b3-3340-418b-a896-deef763da97e?api-version=2019-12-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11977", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:53 GMT", + "x-ms-correlation-request-id" : "26ec5cd6-73bf-48a0-ad54-a524356e9773", + "x-ms-arm-service-request-id" : "db70584f-fb80-4d18-9c23-a3b81154c337", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103654Z:26ec5cd6-73bf-48a0-ad54-a524356e9773", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "4c648913-e523-4c64-bfb3-84a49a34a618", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm936330?api-version=2019-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/266d28b2-6744-49a5-b915-065571a3f490?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0912ccda-046c-4c30-a9aa-f7c52b7ecedb" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1508", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1140", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "92e7f516-d9f7-4ca2-9ef7-80d8c8add738", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1196", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075638Z:92e7f516-d9f7-4ca2-9ef7-80d8c8add738", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "5cac5266-62f6-48ad-97e9-6c3631118a6a", - "Body" : "{\r\n \"name\": \"vm936330\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm936330\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b34983e0-7548-4e77-9fbf-f644dcff2e62\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202007161\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm936330\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm936330e3b15668\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5cac5266-62f6-48ad-97e9-6c3631118a6a?api-version=2019-12-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11976", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:53 GMT", + "x-ms-correlation-request-id" : "854b5965-7a1f-411e-acfb-7a002722ac4b", + "x-ms-arm-service-request-id" : "d4f9cba8-1195-4415-86e8-b41a97e7da8b", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103654Z:854b5965-7a1f-411e-acfb-7a002722ac4b", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "37b84d44-4bbd-42b3-992e-0b98908e1320", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/63f40174-617b-4658-85f2-f2d8675c3bdb?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic0200828439d?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ff7a45eb-aa9b-4375-8529-a21cf7354536" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:41 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6241", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e5563fdf-104f-408c-9d96-99bdda292dbc", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "c73a54da-158b-4c81-8d01-01821362dfe3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075642Z:e5563fdf-104f-408c-9d96-99bdda292dbc", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "35a193f3-38e5-4bb8-8c59-a0a37df882b9", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:53 GMT", + "x-ms-correlation-request-id" : "9416bdf6-e0e5-4f64-a08c-5f44ff4bf2ab", + "x-ms-arm-service-request-id" : "5e3e32cf-b9d7-42bc-909b-6553be612d59", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"91ffea85-b746-44df-9229-218ec59a18b0\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103654Z:9416bdf6-e0e5-4f64-a08c-5f44ff4bf2ab", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "11be2e22-6b59-48c1-b4c6-91a7d67c6516", + "Body" : "{\r\n \"name\": \"nic0200828439d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic0200828439d\",\r\n \"etag\": \"W/\\\"91ffea85-b746-44df-9229-218ec59a18b0\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2b32ded0-973c-45b2-ad86-d3126ce0fcff\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic0200828439d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"91ffea85-b746-44df-9229-218ec59a18b0\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet29013048b7/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"5jrpuyv2bedeldbzkj3w2kyqae.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet63350bd9ae?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic323272e0039?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3216962b-5036-4255-888e-c283ec58f138" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:43 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7237", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2de96c52-effe-4ed6-8248-45da07d9b62b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b5990096-5457-490f-bf15-9734c65e3d75", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075643Z:2de96c52-effe-4ed6-8248-45da07d9b62b", - "etag" : "W/\"0ae611f7-bb72-40e6-acc3-ee84ded807ce\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1d803289-369c-42ef-ad20-44a2fd2d3db1", - "Body" : "{\r\n \"name\": \"vnet63350bd9ae\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet63350bd9ae\",\r\n \"etag\": \"W/\\\"0ae611f7-bb72-40e6-acc3-ee84ded807ce\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"075cdc11-b313-47dd-a60a-55537e86caf9\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet63350bd9ae/subnets/subnet1\",\r\n \"etag\": \"W/\\\"0ae611f7-bb72-40e6-acc3-ee84ded807ce\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "c51e95e5-8a68-447e-ab4b-bf8292ef5596", + "x-ms-arm-service-request-id" : "c41178ec-62d0-4e13-b3a9-e263057fd972", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"eb52fe59-9dcf-4bfc-9be6-b035ed2fb620\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103654Z:c51e95e5-8a68-447e-ab4b-bf8292ef5596", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "29c939cf-3eee-4687-abeb-22d70ad0f949", + "Body" : "{\r\n \"name\": \"nic323272e0039\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic323272e0039\",\r\n \"etag\": \"W/\\\"eb52fe59-9dcf-4bfc-9be6-b035ed2fb620\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"42978e50-25b4-4a78-aad6-67f48d47666c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic323272e0039/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"eb52fe59-9dcf-4bfc-9be6-b035ed2fb620\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet21104fb12d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uc20hmcnejeunee3d5zraivwvf.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet382968e1bd?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/0685aef0-e4f3-47e4-b4f3-5dee9e6cbf21?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "10352339-47aa-456d-a6f3-1d5d3ac05af9" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6223", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "844723ae-164e-4bff-8b31-39806fe9da2d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "13bbdd40-819a-42ee-96a5-30b743460eb5", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075644Z:844723ae-164e-4bff-8b31-39806fe9da2d", - "etag" : "W/\"c38e318e-39d9-43c7-a4bc-7b84e1c0e331\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a76fcc71-d8ce-4c58-8282-caf148d8ab64", - "Body" : "{\r\n \"name\": \"vnet382968e1bd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet382968e1bd\",\r\n \"etag\": \"W/\\\"c38e318e-39d9-43c7-a4bc-7b84e1c0e331\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"2986f12d-bd40-49f8-b65e-d5e8398315dd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet382968e1bd/subnets/subnet1\",\r\n \"etag\": \"W/\\\"c38e318e-39d9-43c7-a4bc-7b84e1c0e331\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "f9013ae0-778b-47af-8ae2-abe9cc64ae26", + "x-ms-arm-service-request-id" : "43ac95e6-0728-4d22-b54e-c6b12848f22e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103654Z:f9013ae0-778b-47af-8ae2-abe9cc64ae26", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "d7b1cb1a-4384-4586-b417-481d6610ef44", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/584e2ca4-626f-44ee-af1b-7a34fae3beb6?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/a48062c2-a21b-4baf-9655-62f01293be0d?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "52a6c67d-6da5-4d38-8967-e4cd7cd596fe" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:43 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6062", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "24c9dfdc-5ae6-44b1-ac20-44bccb81f765", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "d4476acd-0ee1-4de9-892e-d7a09eb042e9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075644Z:24c9dfdc-5ae6-44b1-ac20-44bccb81f765", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4f083c1a-c545-41fd-87bb-7ab6e105b7f5", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "2da4d946-7d9a-46c6-a0df-a84d122f2f1b", + "x-ms-arm-service-request-id" : "20a07c9b-dd26-424e-aa89-1c3e8b0ce92c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103655Z:2da4d946-7d9a-46c6-a0df-a84d122f2f1b", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "9bd3b63d-1d11-409d-99e6-7711608fa90a", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet1063963941?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic97905350a55?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "85ee0f2a-6251-4e20-a493-7ef6af722c89" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:45 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7213", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cfd0c7f6-072b-4bd5-89c8-81f358407b8a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "432cb9a2-2739-4ae9-8308-6f3cf98f58d1", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075645Z:cfd0c7f6-072b-4bd5-89c8-81f358407b8a", - "etag" : "W/\"f2ba8485-54af-4e32-b2ec-756ed2b9c37f\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0a72684d-0c44-49a4-b58b-a5b5f37d0501", - "Body" : "{\r\n \"name\": \"vnet1063963941\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet1063963941\",\r\n \"etag\": \"W/\\\"f2ba8485-54af-4e32-b2ec-756ed2b9c37f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0a1f5b1c-84a0-4b8e-b692-4fb809fb80ce\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet1063963941/subnets/subnet1\",\r\n \"etag\": \"W/\\\"f2ba8485-54af-4e32-b2ec-756ed2b9c37f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "e37a8376-9f73-450d-b0de-7cdb6bdd98e1", + "x-ms-arm-service-request-id" : "8471da13-ea9b-43bd-9005-06f213a35992", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"09a9037b-df6a-4971-87e7-509fe5e81ffb\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103655Z:e37a8376-9f73-450d-b0de-7cdb6bdd98e1", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "a645f9a6-662e-47ac-bb3d-00cf1afa21d0", + "Body" : "{\r\n \"name\": \"nic97905350a55\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic97905350a55\",\r\n \"etag\": \"W/\\\"09a9037b-df6a-4971-87e7-509fe5e81ffb\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d2af6829-18a4-469c-8d24-d869dbcab57a\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic97905350a55/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"09a9037b-df6a-4971-87e7-509fe5e81ffb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1925985d5c/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zx1phyc5mg1enhk32rnjrby3bb.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm38208d82127342?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic514531f7111?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "164ad3ef-6af1-4c02-85c2-9786b9acfd4c" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:46 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7205", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "88765368-eccf-4bbb-9ca4-3842b5ca7a07", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "93f544c6-26a3-4408-9ec6-0ed5aa212327", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075646Z:88765368-eccf-4bbb-9ca4-3842b5ca7a07", - "etag" : "W/\"a1d93473-d912-4661-9940-ee7557f11dc7\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "24b8c7bd-7290-49f5-8190-fdf22ec1c99a", - "Body" : "{\r\n \"name\": \"nicvm38208d82127342\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm38208d82127342\",\r\n \"etag\": \"W/\\\"a1d93473-d912-4661-9940-ee7557f11dc7\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a5c06bb8-d4e1-4997-b79e-9049a48cdb72\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm38208d82127342/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"a1d93473-d912-4661-9940-ee7557f11dc7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet6295412409/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"cnk3ratewa4uhp4zcbruc1iwsa.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "826c8616-ef2c-4cc1-8731-ad9eb768168f", + "x-ms-arm-service-request-id" : "92654ac4-efb4-4283-8a8e-44fa07e85fca", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"ee123416-8d15-4a93-bb1d-ebe738a1c5ee\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103655Z:826c8616-ef2c-4cc1-8731-ad9eb768168f", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "8c999499-cddb-4c40-bcb4-d33fe230ceb5", + "Body" : "{\r\n \"name\": \"nic514531f7111\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic514531f7111\",\r\n \"etag\": \"W/\\\"ee123416-8d15-4a93-bb1d-ebe738a1c5ee\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ecb96a0f-99d8-41eb-83c5-59c996221523\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic514531f7111/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ee123416-8d15-4a93-bb1d-ebe738a1c5ee\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet85080c1ce2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"bneapabo1ntulcgxpz0vd5zooc.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm00034c?api-version=2019-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic24843cad856?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e9ac735e-9445-4eca-b569-7f8622576977" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:46 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1529", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1156", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c731f2dd-d976-47ba-b36b-c8f493ff69c0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;233,Microsoft.Compute/PutVM30Min;1193", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075647Z:c731f2dd-d976-47ba-b36b-c8f493ff69c0", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b9a144af-50df-4b3c-b505-2f0672fa652c", - "Body" : "{\r\n \"name\": \"vm00034c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm00034c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"42d2b339-7c79-4f13-8f3d-966634917c23\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.1339.2007101755\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm00034c\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm00034c39543765\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/b9a144af-50df-4b3c-b505-2f0672fa652c?api-version=2019-12-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "2d485eb2-244a-48e4-a3bf-ed17b43ac237", + "x-ms-arm-service-request-id" : "cb4ed661-3bd8-4235-ba4b-7288c3f1a458", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"c6ea26b6-38c0-4032-b631-d11975421c03\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103655Z:2d485eb2-244a-48e4-a3bf-ed17b43ac237", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "57927a7b-92d3-4ce2-87d0-e3a3d472f02a", + "Body" : "{\r\n \"name\": \"nic24843cad856\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic24843cad856\",\r\n \"etag\": \"W/\\\"c6ea26b6-38c0-4032-b631-d11975421c03\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d74f7bd9-fafd-4c8c-b223-e102dea3084c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic24843cad856/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"c6ea26b6-38c0-4032-b631-d11975421c03\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1941477e27/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"f51ylnt5fo4u1a10lxi3xtwkib.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bef7b92f-3c2a-4a26-a30a-a177baedf7dc?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic33319f5097a?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5b8e0a46-537c-4b28-a487-d41c4cc2be77" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:47 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7197", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "71d7def8-8dc5-4962-aa3e-f9da18df8677", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075647Z:71d7def8-8dc5-4962-aa3e-f9da18df8677", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "dbe28fd7-9666-4a31-bf27-adb33e10de80", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:33.5212003+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bef7b92f-3c2a-4a26-a30a-a177baedf7dc\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "4383289b-063c-465c-b4bf-8f1c3ba7165f", + "x-ms-arm-service-request-id" : "349e3fde-a394-4756-b028-816f2f299773", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"d9038e0d-3093-4bc5-8346-1a10924c42c9\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103655Z:4383289b-063c-465c-b4bf-8f1c3ba7165f", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "f874647a-7286-405c-a9a7-0ea9e2adbef5", + "Body" : "{\r\n \"name\": \"nic33319f5097a\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic33319f5097a\",\r\n \"etag\": \"W/\\\"d9038e0d-3093-4bc5-8346-1a10924c42c9\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"86c05987-c0c4-4af7-be0e-08f1d358504e\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic33319f5097a/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d9038e0d-3093-4bc5-8346-1a10924c42c9\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet6064313e28/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"y1o5gaxtol3u5hrxymp1t5fqtf.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm03203c37d03361?api-version=2020-05-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic7097948b727?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "2a2843eb-ddd8-4d4c-bd86-65e0cd1a6fda" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:47 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1169", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3e39dd0a-879c-41e6-9b77-e88edd85a511", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "8dc5fb16-46ac-4c3a-9eaa-db2bf3b4a964", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075648Z:3e39dd0a-879c-41e6-9b77-e88edd85a511", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2defcd7c-c0e9-4189-9a34-f4befede17e7", - "Body" : "{\r\n \"name\": \"nicvm03203c37d03361\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm03203c37d03361\",\r\n \"etag\": \"W/\\\"62fe6f95-7962-4bae-bdae-15981c2a62cf\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b4013e17-eb94-4800-9466-4aec03696326\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm03203c37d03361/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"62fe6f95-7962-4bae-bdae-15981c2a62cf\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet382968e1bd/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"fxyymkkaxx2etns40xudtayv1f.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2defcd7c-c0e9-4189-9a34-f4befede17e7?api-version=2020-05-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "089265e1-5998-42e9-a3fd-73c5f2b892ca", + "x-ms-arm-service-request-id" : "d6f60e02-b786-4458-861d-6d9c5d72a3d9", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"9b8c8a2a-2f66-46f6-abb1-b19b0af5314c\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103655Z:089265e1-5998-42e9-a3fd-73c5f2b892ca", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "f499b50d-1cc8-4e68-8003-742c26ad283e", + "Body" : "{\r\n \"name\": \"nic7097948b727\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic7097948b727\",\r\n \"etag\": \"W/\\\"9b8c8a2a-2f66-46f6-abb1-b19b0af5314c\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d4b3c788-1211-4551-8591-c526eedeceda\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic7097948b727/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9b8c8a2a-2f66-46f6-abb1-b19b0af5314c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet0130200ea0/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"kwak3xm0bdzepmacj0p0ccpzng.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm73887950566279?api-version=2020-05-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic299826df37d?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "7f93816b-f3de-4999-8d99-7045d801fe3a" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:50 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1136", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f77d3f29-6c49-46f4-ac1a-061df7a6fa7d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ab4e2974-379a-4944-bf39-80d475ac6e67", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075651Z:f77d3f29-6c49-46f4-ac1a-061df7a6fa7d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7a337117-e927-421e-833a-6acc84618c5f", - "Body" : "{\r\n \"name\": \"nicvm73887950566279\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm73887950566279\",\r\n \"etag\": \"W/\\\"2e5f7ace-9986-48f4-9af4-c4cc086ff972\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"86d28213-fe2f-409b-83e0-3578f6b840ef\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm73887950566279/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2e5f7ace-9986-48f4-9af4-c4cc086ff972\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet63350bd9ae/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"chofybytwpoupjqkkvjx3bwk5b.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7a337117-e927-421e-833a-6acc84618c5f?api-version=2020-05-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "ada84bf5-57c5-4163-8469-386bc8d6753e", + "x-ms-arm-service-request-id" : "a3c02edb-1ec3-4a9b-b970-1486cec84da3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"9a18e98e-a374-4d8c-bfc3-bde9c27051fe\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103655Z:ada84bf5-57c5-4163-8469-386bc8d6753e", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "20986ef2-c38e-43f9-badb-78edd2973082", + "Body" : "{\r\n \"name\": \"nic299826df37d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic299826df37d\",\r\n \"etag\": \"W/\\\"9a18e98e-a374-4d8c-bfc3-bde9c27051fe\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4530ef9-a958-44a9-a421-f8da639876f6\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic299826df37d/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"9a18e98e-a374-4d8c-bfc3-bde9c27051fe\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet1989715670/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ldmkztpb1qre5naawbb0ubeopa.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d186fe63-ae1d-4fc1-95d3-fca61c4b2630?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/6450fd0e-f820-48ab-9435-a23408613b35?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a30d2394-ec76-4d67-af2b-2b962807ea52" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5888", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "124ae450-ce9e-4936-87e0-085bfb0cfb6b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b1ec496b-f37f-427a-86f6-602730097cbc", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075659Z:124ae450-ce9e-4936-87e0-085bfb0cfb6b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ccc8cde2-4435-4e43-8d82-a3fa411792ed", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:55 GMT", + "x-ms-correlation-request-id" : "1ee8e312-d5f9-4c7c-9af3-ba226a116346", + "x-ms-arm-service-request-id" : "3554e6d8-1c93-46da-bed8-55923ab37b4f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103655Z:1ee8e312-d5f9-4c7c-9af3-ba226a116346", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "e5bb1022-3314-4fce-9a28-29e1710dcfb7", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet9197212487?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/25fc9fad-c874-4d01-9ee4-40928c69268c?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e852e8e9-d274-410c-aecf-75f0f6ccc674" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:56:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1340", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7064", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8509ff36-69d3-4f67-a72d-ab581848554a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "dbfb56ad-8193-453f-9500-93a1ea3e9bf6", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075659Z:8509ff36-69d3-4f67-a72d-ab581848554a", - "etag" : "W/\"86aac88c-929a-4ebd-8441-be91578d39b3\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "953c5389-4f68-4bd9-b92a-1c0f2f9315c8", - "Body" : "{\r\n \"name\": \"vnet9197212487\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet9197212487\",\r\n \"etag\": \"W/\\\"86aac88c-929a-4ebd-8441-be91578d39b3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e173bea9-47d2-4822-93d1-4fee31f47a9c\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/24\"\r\n ]\r\n },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet9197212487/subnets/subnet1\",\r\n \"etag\": \"W/\\\"86aac88c-929a-4ebd-8441-be91578d39b3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:55 GMT", + "x-ms-correlation-request-id" : "0597e959-b376-4137-b32f-dd063bd0b1a3", + "x-ms-arm-service-request-id" : "65879377-ffe6-44f8-867a-f2546e781e18", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103655Z:0597e959-b376-4137-b32f-dd063bd0b1a3", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "6558b30d-0a05-485f-9749-ce88aafd61fc", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/9d592581-b26b-49a2-9b91-5765d121458d?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic68701cef329?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d516c835-bf1b-40ef-befa-d0f1bb2a0033" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:01 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7046", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5bfbdfb8-0232-4232-8593-e7204776ea28", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "6fe8b9ab-7546-456a-9117-5aa7e75c78f2", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075702Z:5bfbdfb8-0232-4232-8593-e7204776ea28", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1cc30321-66ac-4203-84d7-2b8564e537f9", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "38449612-9aeb-4309-a3d8-522780e86048", + "x-ms-arm-service-request-id" : "652a2fbe-fd7b-4973-a01d-2542f3d17f6f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"51baf2b1-c402-42fe-a2a6-5ea567493516\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103655Z:38449612-9aeb-4309-a3d8-522780e86048", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "46bf5b7d-8a3d-4c0d-85cc-add1ef29fb46", + "Body" : "{\r\n \"name\": \"nic68701cef329\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic68701cef329\",\r\n \"etag\": \"W/\\\"51baf2b1-c402-42fe-a2a6-5ea567493516\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"460f4978-a620-4883-b530-e6c2b3334fec\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic68701cef329/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"51baf2b1-c402-42fe-a2a6-5ea567493516\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet00325edc1d/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"o0ac1bfvye3elgbg4mqsblem3g.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5cac5266-62f6-48ad-97e9-6c3631118a6a?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic92104086355?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c97a9be2-b5a1-40fc-a38c-a01629e1c951" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:02 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7029", + "x-ms-ratelimit-remaining-subscription-reads" : "11971", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b738a1ec-b658-4466-9d49-f76ad949b8c1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075703Z:b738a1ec-b658-4466-9d49-f76ad949b8c1", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f205950c-9dc2-462f-9715-179bd70ae094", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:37.6306449+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5cac5266-62f6-48ad-97e9-6c3631118a6a\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:54 GMT", + "x-ms-correlation-request-id" : "c9786d16-28ed-48af-8bb2-10d34d510116", + "x-ms-arm-service-request-id" : "baa237dc-ae34-490b-be9b-bdb8c858aea4", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"6069c3bc-34e9-470f-9aa5-f0db7b222999\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103655Z:c9786d16-28ed-48af-8bb2-10d34d510116", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "0b5093c2-a9ce-4f5d-813b-d7522a7e3e00", + "Body" : "{\r\n \"name\": \"nic92104086355\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic92104086355\",\r\n \"etag\": \"W/\\\"6069c3bc-34e9-470f-9aa5-f0db7b222999\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"28580f01-7edc-46e5-a169-d6da65caf6cb\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic92104086355/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"6069c3bc-34e9-470f-9aa5-f0db7b222999\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet88972bc4e5/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lq2kmrj0ovauxhswcftegkzqfc.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f257e1b3-3340-418b-a896-deef763da97e?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c48a4d43-7107-48ab-99be-7b761a237354?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "63546dfa-373f-4704-b5ea-a23859c182c3" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:06 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6989", + "x-ms-ratelimit-remaining-subscription-reads" : "11970", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5b0b365a-2354-4f14-a083-efc2596d880f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075707Z:5b0b365a-2354-4f14-a083-efc2596d880f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "fd556d2a-ea5b-4de6-ba59-2ac129300adc", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:36.7712606+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f257e1b3-3340-418b-a896-deef763da97e\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:55 GMT", + "x-ms-correlation-request-id" : "9573286e-3753-488e-be60-f192d2faedf6", + "x-ms-arm-service-request-id" : "54a06c6e-e221-45e6-905f-63b1521525ba", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103656Z:9573286e-3753-488e-be60-f192d2faedf6", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "647a7791-a650-4054-aaa9-3e8722a148ed", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/b9a144af-50df-4b3c-b505-2f0672fa652c?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic758068060a2?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "bb102405-24c8-4696-b282-e077db46449f" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:07 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6987", + "x-ms-ratelimit-remaining-subscription-reads" : "11969", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e5debc98-cfc3-4279-9d13-a6dc8109f879", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075707Z:e5debc98-cfc3-4279-9d13-a6dc8109f879", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0d33fae3-d896-4cfe-9eb9-ac3843c033a3", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:45.8807416+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b9a144af-50df-4b3c-b505-2f0672fa652c\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:55 GMT", + "x-ms-correlation-request-id" : "082e0b79-dc46-40a7-841c-f719fa31b5d5", + "x-ms-arm-service-request-id" : "72bd30ec-08a5-469f-bb1c-01cb0fa340bf", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"d9ff21cf-32df-486b-a38b-b6cd355cf621\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103656Z:082e0b79-dc46-40a7-841c-f719fa31b5d5", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "80c18b06-7854-4c4a-afa6-5cc08b882921", + "Body" : "{\r\n \"name\": \"nic758068060a2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic758068060a2\",\r\n \"etag\": \"W/\\\"d9ff21cf-32df-486b-a38b-b6cd355cf621\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"894096d0-055b-456b-8e66-44d0f8cdf1aa\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic758068060a2/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d9ff21cf-32df-486b-a38b-b6cd355cf621\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet4771416f21/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"xud2waz14goefo1kedbuz1phxf.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/896855eb-0f8c-460e-a7d6-a22e0b193cb9?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f61f9553-8b8e-4f0c-a7ba-1737b7ec486c?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "216f0b29-a804-4dd5-82b4-5dd825f99269" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:07 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "133", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5919", + "x-ms-ratelimit-remaining-subscription-reads" : "11968", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7a382583-b680-4ba1-bfeb-bd3ec21f8eff", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075707Z:7a382583-b680-4ba1-bfeb-bd3ec21f8eff", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4026fe33-9f27-44c2-8d81-749a68c09346", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:36.286895+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"896855eb-0f8c-460e-a7d6-a22e0b193cb9\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:56 GMT", + "x-ms-correlation-request-id" : "10ae0f24-8235-4c66-b19a-c12374ba12ed", + "x-ms-arm-service-request-id" : "a6107b9c-c7d2-4fa7-87ed-4e9c0f6a027a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103657Z:10ae0f24-8235-4c66-b19a-c12374ba12ed", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "df8df108-c2bc-4122-a293-1fd907b1d832", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm12456b3d573940?api-version=2020-05-01", + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm083090?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "caba43aa-b5b6-40c7-86b7-7ad40c751fb6", + "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:07 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6980", - "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "56007a30-995f-4458-aa25-276b69e5368b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "48191130-92e5-49c6-ab8a-542a7ea74790", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075707Z:56007a30-995f-4458-aa25-276b69e5368b", - "etag" : "W/\"d6f9ebe6-581c-4aeb-9068-8af93022e842\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "16f2e188-b7c8-404a-b595-e652d84eebf7", - "Body" : "{\r\n \"name\": \"nicvm12456b3d573940\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm12456b3d573940\",\r\n \"etag\": \"W/\\\"d6f9ebe6-581c-4aeb-9068-8af93022e842\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fbc337a6-1f21-4f5e-88a7-4a92baa97e3c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm12456b3d573940/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"d6f9ebe6-581c-4aeb-9068-8af93022e842\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5107984001/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"s5nehevyyn1u5mh3ia4wylgvsd.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1172", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:56 GMT", + "x-ms-correlation-request-id" : "e86913d2-845f-4f92-b252-84c969863f6b", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103657Z:e86913d2-845f-4f92-b252-84c969863f6b", + "Expires" : "-1", + "Content-Length" : "1524", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/274f0f3a-1ebf-4590-929d-a0911f0cb2b8?api-version=2019-12-01", + "x-ms-request-id" : "274f0f3a-1ebf-4590-929d-a0911f0cb2b8", + "Body" : "{\r\n \"name\": \"vm083090\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm083090\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"221ecd2f-732a-4723-8d39-1ae7c81ba17b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.1339.2007101755\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm083090\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic83223eea084\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm79322165841179?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic78048e61c4e?api-version=2020-05-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "81bd3969-c673-427b-b4f0-586e956d96fc" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:07 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6976", + "x-ms-ratelimit-remaining-subscription-reads" : "11967", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e7ca8f9d-0e59-4add-b3c5-328b3b593951", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b6171c4d-78a4-4545-8530-c46a932b0be8", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075708Z:e7ca8f9d-0e59-4add-b3c5-328b3b593951", - "etag" : "W/\"7b52e5c1-f113-4e13-9546-e9bb1b1f5d66\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d72f0e70-95b7-4d3d-88bd-02783e42b849", - "Body" : "{\r\n \"name\": \"nicvm79322165841179\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm79322165841179\",\r\n \"etag\": \"W/\\\"7b52e5c1-f113-4e13-9546-e9bb1b1f5d66\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fa25d854-1bcd-4375-8e6e-f2c305b1db86\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm79322165841179/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"7b52e5c1-f113-4e13-9546-e9bb1b1f5d66\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet49407bfdd0/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"05vgxgixen4efgqsjxbah1mhwd.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:36:56 GMT", + "x-ms-correlation-request-id" : "2e99260c-db36-4b8f-b2b1-3d625a523e55", + "x-ms-arm-service-request-id" : "bc1c3e92-0259-420c-9ba7-d4ec0e7aea46", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"0c3434ad-9677-44d6-9940-529b95ab913b\"", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103657Z:2e99260c-db36-4b8f-b2b1-3d625a523e55", + "Expires" : "-1", + "Content-Length" : "1653", + "x-ms-request-id" : "2dc438bd-60c2-478b-97c9-97c95c73dc95", + "Body" : "{\r\n \"name\": \"nic78048e61c4e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic78048e61c4e\",\r\n \"etag\": \"W/\\\"0c3434ad-9677-44d6-9940-529b95ab913b\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0592f178-2415-4427-a560-7e7f8a51b331\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic78048e61c4e/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0c3434ad-9677-44d6-9940-529b95ab913b\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/virtualNetworks/vnet78227e92c2/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"g1y53bbv25nulilfotgkwj2cob.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm39853639b82681?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm517785?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "48378d08-7e83-4c03-a855-99beb6a8c5e2", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:08 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1133", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2852e91c-62a3-4578-903f-5319fb944316", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "af3a40b4-8283-4a0a-8af3-3f8699d186e0", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075709Z:2852e91c-62a3-4578-903f-5319fb944316", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "10204310-e074-4269-8b63-dc4719cd3ad7", - "Body" : "{\r\n \"name\": \"nicvm39853639b82681\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm39853639b82681\",\r\n \"etag\": \"W/\\\"ff067e9a-15f4-4180-877a-024ecd7a9420\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"024278fe-c2ec-4a75-88e7-90682016d8b9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm39853639b82681/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ff067e9a-15f4-4180-877a-024ecd7a9420\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet9197212487/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vg5hhyosi2rere4rj5xdd3d0te.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/10204310-e074-4269-8b63-dc4719cd3ad7?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:57 GMT", + "x-ms-correlation-request-id" : "679c39d4-dd23-435d-8878-2676a32c4fb3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103657Z:679c39d4-dd23-435d-8878-2676a32c4fb3", + "Expires" : "-1", + "Content-Length" : "1524", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4601d46b-1506-400f-8d4d-24d8dbe4c29e?api-version=2019-12-01", + "x-ms-request-id" : "4601d46b-1506-400f-8d4d-24d8dbe4c29e", + "Body" : "{\r\n \"name\": \"vm517785\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm517785\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2244d517-c04f-4d66-8dc3-1d5fe3503a05\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.3808.2007101707\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm517785\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic42289a0a68b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm38208d?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm27948c?api-version=2019-12-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "66070f25-6f5e-43e7-ad9b-0aff85449d2b", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1529", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1133", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:57 GMT", + "x-ms-correlation-request-id" : "cc13e020-45e0-4c93-bc28-7e34a4830904", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;236,Microsoft.Compute/PutVM30Min;1196", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103658Z:cc13e020-45e0-4c93-bc28-7e34a4830904", + "Expires" : "-1", + "Content-Length" : "1527", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4f2897e9-0c51-4068-a38d-962f2227e6b0?api-version=2019-12-01", + "x-ms-request-id" : "4f2897e9-0c51-4068-a38d-962f2227e6b0", + "Body" : "{\r\n \"name\": \"vm27948c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm27948c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5d96d318-2962-4836-8ca1-14333beef157\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.19756.2007111612\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm27948c\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic0200828439d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm667425?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6c212ca0-652e-4896-9c46-86f12baf7502", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:57 GMT", + "x-ms-correlation-request-id" : "5bbec642-ad7c-4721-af2e-116988828ef5", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;235,Microsoft.Compute/PutVM30Min;1195", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103658Z:5bbec642-ad7c-4721-af2e-116988828ef5", + "Expires" : "-1", + "Content-Length" : "1481", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f08df175-a7ea-4300-88ac-a9a37a952c16?api-version=2019-12-01", + "x-ms-request-id" : "f08df175-a7ea-4300-88ac-a9a37a952c16", + "Body" : "{\r\n \"name\": \"vm667425\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm667425\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"4622c5cc-089d-4a7e-8117-eb65c52e38c9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Oracle\",\r\n \"offer\": \"Oracle-Linux\",\r\n \"sku\": \"81\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"8.1.2\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm667425\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic97905350a55\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm102932?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "11fd6a71-a21f-4634-a6cd-102b1afc4af7", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:57 GMT", + "x-ms-correlation-request-id" : "c1a695a1-90ec-4387-82ef-bb3db27c2252", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;233,Microsoft.Compute/PutVM30Min;1193", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103658Z:c1a695a1-90ec-4387-82ef-bb3db27c2252", + "Expires" : "-1", + "Content-Length" : "1514", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", + "x-ms-request-id" : "3b7d4311-a548-4601-9fee-1ab8073793de", + "Body" : "{\r\n \"name\": \"vm102932\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm102932\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e6fb95d7-9753-4685-8a07-c256932a1a17\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsDesktop\",\r\n \"offer\": \"Windows-10\",\r\n \"sku\": \"20h1-pro\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"19041.450.2008080726\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm102932\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic33319f5097a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm710791?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "2ae548d0-c66d-4a7c-8938-99acf21e42ce", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:57 GMT", + "x-ms-correlation-request-id" : "eff0db68-5a44-4179-b4ca-65f714f47615", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;234,Microsoft.Compute/PutVM30Min;1194", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103658Z:eff0db68-5a44-4179-b4ca-65f714f47615", + "Expires" : "-1", + "Content-Length" : "1503", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/69aa85fc-7565-40a3-9295-4413bb3114ab?api-version=2019-12-01", + "x-ms-request-id" : "69aa85fc-7565-40a3-9295-4413bb3114ab", + "Body" : "{\r\n \"name\": \"vm710791\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm710791\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b011d222-256c-48d3-a26a-917b52ce577c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202008070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm710791\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic24843cad856\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm522002?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "96a97cb7-bf06-455b-81a2-70fcdec0e080", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7e88c3a6-b428-4239-bb98-53c0bcf03944", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", + "Date" : "Wed, 12 Aug 2020 10:36:57 GMT", + "x-ms-correlation-request-id" : "6ae7421f-6cb2-4c22-939f-2ba6f068dae9", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;231,Microsoft.Compute/PutVM30Min;1191", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075710Z:7e88c3a6-b428-4239-bb98-53c0bcf03944", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "17f4f018-ebd3-46bf-8d49-ebb0072315cb", - "Body" : "{\r\n \"name\": \"vm38208d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm38208d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"63c428cb-1853-48e4-8532-5a7d33fb3807\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.3808.2007101707\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm38208d\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm38208d82127342\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/17f4f018-ebd3-46bf-8d49-ebb0072315cb?api-version=2019-12-01" - } + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103658Z:6ae7421f-6cb2-4c22-939f-2ba6f068dae9", + "Expires" : "-1", + "Content-Length" : "1487", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/8f86bd0b-44c9-4c3d-b0a8-adfef5fd3e07?api-version=2019-12-01", + "x-ms-request-id" : "8f86bd0b-44c9-4c3d-b0a8-adfef5fd3e07", + "Body" : "{\r\n \"name\": \"vm522002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm522002\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9c73abbc-beb1-4f6f-8d69-9df483546ca1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"openSUSE-Leap\",\r\n \"sku\": \"15-1\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"2019.06.18\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm522002\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic514531f7111\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm91630b6ca21232?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm298071?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.network/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "356911e4-bebb-4b5a-b7d4-367fd9813468", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1668", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1141", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "da9f5e60-b401-4908-9a16-337b9a863e7f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "cccbb943-99ef-47f4-a8a0-f42408df05a4", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075711Z:da9f5e60-b401-4908-9a16-337b9a863e7f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1384c3bb-e70d-434c-a5cb-bfb7a18eff4a", - "Body" : "{\r\n \"name\": \"nicvm91630b6ca21232\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm91630b6ca21232\",\r\n \"etag\": \"W/\\\"13e12b9e-f19a-4e97-97a6-5b1a2c4ea4c3\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c15b5ca4-8609-469e-96c6-7f809ecb47e8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm91630b6ca21232/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"13e12b9e-f19a-4e97-97a6-5b1a2c4ea4c3\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet1063963941/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"drnr4cvaqshexnusj42at42azg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1384c3bb-e70d-434c-a5cb-bfb7a18eff4a?api-version=2020-05-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:57 GMT", + "x-ms-correlation-request-id" : "9449d37e-9bcc-49ac-9bac-cba9f4d98d6b", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;232,Microsoft.Compute/PutVM30Min;1192", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103658Z:9449d37e-9bcc-49ac-9bac-cba9f4d98d6b", + "Expires" : "-1", + "Content-Length" : "1487", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/72a25487-3206-4c92-bc0a-86b601b6afd3?api-version=2019-12-01", + "x-ms-request-id" : "72a25487-3206-4c92-bc0a-86b601b6afd3", + "Body" : "{\r\n \"name\": \"vm298071\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm298071\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3f2de922-206f-4fb2-bc63-fc75e3ce4dc3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"0.20200803.347\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm298071\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic323272e0039\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm793221?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm565448?api-version=2019-12-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "7adad5fe-7090-44aa-813e-165ada2d32f3", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:12 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1493", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1141", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6b352a84-a55c-4751-bc3c-1fd8d7fd45ef", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;229,Microsoft.Compute/PutVM30Min;1189", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075712Z:6b352a84-a55c-4751-bc3c-1fd8d7fd45ef", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6da82bbe-6620-4902-a911-c79e6718757e", - "Body" : "{\r\n \"name\": \"vm793221\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm793221\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d32c3c83-8714-4ac9-81a0-1e351af5b6ff\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"8_1\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"8.1.2020062400\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm793221\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm79322165841179\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6da82bbe-6620-4902-a911-c79e6718757e?api-version=2019-12-01" - } + "Date" : "Wed, 12 Aug 2020 10:36:57 GMT", + "x-ms-correlation-request-id" : "f8a76898-a62d-48d6-ab50-914686c415ef", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;237,Microsoft.Compute/PutVM30Min;1197", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103658Z:f8a76898-a62d-48d6-ab50-914686c415ef", + "Expires" : "-1", + "Content-Length" : "1485", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/cfd9c9e8-d30b-4265-bc60-7a72c313e3b7?api-version=2019-12-01", + "x-ms-request-id" : "cfd9c9e8-d30b-4265-bc60-7a72c313e3b7", + "Body" : "{\r\n \"name\": \"vm565448\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm565448\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"4340451c-746a-405d-a967-019bec207cb8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"sles-15-sp1\",\r\n \"sku\": \"gen1\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"2020.06.10\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm565448\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic299826df37d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm12456b?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm32513e?api-version=2019-12-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a58a52b7-32a6-4f02-9686-37c00b82c16e", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:13 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1488", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1153", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:58 GMT", + "x-ms-correlation-request-id" : "0c6fdcb5-7996-4304-ac0f-af8d5a2c3a41", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;230,Microsoft.Compute/PutVM30Min;1190", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103658Z:0c6fdcb5-7996-4304-ac0f-af8d5a2c3a41", + "Expires" : "-1", + "Content-Length" : "1483", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/49a07cea-a2c8-4eb4-bd3e-e54eeeb95d70?api-version=2019-12-01", + "x-ms-request-id" : "49a07cea-a2c8-4eb4-bd3e-e54eeeb95d70", + "Body" : "{\r\n \"name\": \"vm32513e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm32513e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0ec8ee59-73ac-4ac4-83f6-12db1a658d6a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"credativ\",\r\n \"offer\": \"Debian\",\r\n \"sku\": \"9\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9.20200722.0\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm32513e\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic7097948b727\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm04945e?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "143094d8-ea67-4379-8a22-65ef4c669642", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:58 GMT", + "x-ms-correlation-request-id" : "95c7950d-7d9b-4132-b401-dd99e207942d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;227,Microsoft.Compute/PutVM30Min;1187", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103659Z:95c7950d-7d9b-4132-b401-dd99e207942d", + "Expires" : "-1", + "Content-Length" : "1483", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9888bc0a-8aa7-44cc-b1ad-c9085751c642?api-version=2019-12-01", + "x-ms-request-id" : "9888bc0a-8aa7-44cc-b1ad-c9085751c642", + "Body" : "{\r\n \"name\": \"vm04945e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm04945e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"05685074-637e-4e24-8fa1-7e2053922383\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"8.2\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"8.2.2020050811\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 64\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm04945e\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic758068060a2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm686769?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4baa83eb-9442-46d8-b3f0-59e9cbabbe52", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "526b60c7-d8e0-4960-b6d7-85011648a680", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", + "Date" : "Wed, 12 Aug 2020 10:36:59 GMT", + "x-ms-correlation-request-id" : "3726be36-22cc-4ed1-8ddb-2687082694bc", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;228,Microsoft.Compute/PutVM30Min;1188", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075713Z:526b60c7-d8e0-4960-b6d7-85011648a680", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4818ee8a-8053-42c1-be82-c5a3a2c9cbe0", - "Body" : "{\r\n \"name\": \"vm12456b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm12456b\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9008a588-e75f-475c-9979-fd3829ddecd7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"8.2\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"8.2.2020050811\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 64\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm12456b\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm12456b3d573940\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4818ee8a-8053-42c1-be82-c5a3a2c9cbe0?api-version=2019-12-01" - } + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103659Z:3726be36-22cc-4ed1-8ddb-2687082694bc", + "Expires" : "-1", + "Content-Length" : "1488", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6ccda068-bbc0-45e4-88cf-6d6311cf45c9?api-version=2019-12-01", + "x-ms-request-id" : "6ccda068-bbc0-45e4-88cf-6d6311cf45c9", + "Body" : "{\r\n \"name\": \"vm686769\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm686769\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7b90690d-cced-496c-a76f-cc5bf465ef0d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"8_1\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"8.1.2020062400\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm686769\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic68701cef329\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm23539c?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e53cdb2e-5a47-4839-bce3-9ad1d674386f", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:59 GMT", + "x-ms-correlation-request-id" : "adb1b4ad-4e11-4580-a84a-eb56562a37cf", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;229,Microsoft.Compute/PutVM30Min;1189", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103659Z:adb1b4ad-4e11-4580-a84a-eb56562a37cf", + "Expires" : "-1", + "Content-Length" : "1540", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/769b9c60-6e1f-4057-947d-90dbf8efa842?api-version=2019-12-01", + "x-ms-request-id" : "769b9c60-6e1f-4057-947d-90dbf8efa842", + "Body" : "{\r\n \"name\": \"vm23539c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm23539c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8208e065-ee51-4862-8d97-e2dedd3ddcb2\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter-with-Containers\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.1339.2007101755\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm23539c\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic92104086355\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "PUT", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm37062b?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "9a37d8cf-dc86-4837-bfc0-b34d5740aab3", + "Content-Type" : "application/json" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1171", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", + "StatusCode" : "201", + "Date" : "Wed, 12 Aug 2020 10:36:59 GMT", + "x-ms-correlation-request-id" : "01743315-2ecb-4b9a-9af2-76954508a231", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;226,Microsoft.Compute/PutVM30Min;1186", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103700Z:01743315-2ecb-4b9a-9af2-76954508a231", + "Expires" : "-1", + "Content-Length" : "1501", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ae7d6437-cb5f-4201-ab79-a05edbd4c237?api-version=2019-12-01", + "x-ms-request-id" : "ae7d6437-cb5f-4201-ab79-a05edbd4c237", + "Body" : "{\r\n \"name\": \"vm37062b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm37062b\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b8e71176-0916-4894-96db-bc7b5c1fd416\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202007290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm37062b\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic78048e61c4e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/86ed5442-f42d-4222-8c94-3376a0ce575a?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/274f0f3a-1ebf-4590-929d-a0911f0cb2b8?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3ea905f7-d61a-467d-9bb7-de9f9e1f734c" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5788", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11966", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5cfcbb41-2cbc-43b8-a4fd-f47cc4b1fa0f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "0ad06445-b14a-46b3-9c37-91ee37cb6397", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075717Z:5cfcbb41-2cbc-43b8-a4fd-f47cc4b1fa0f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "946bee07-c38c-416e-a5dc-8f8fda5124e3", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:37:06 GMT", + "x-ms-correlation-request-id" : "1293207d-47f9-4b0e-9df3-a6541aa183ce", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103707Z:1293207d-47f9-4b0e-9df3-a6541aa183ce", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "555486a9-3dd5-499f-a370-cf6a96178314", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.2778059+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"274f0f3a-1ebf-4590-929d-a0911f0cb2b8\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/2defcd7c-c0e9-4189-9a34-f4befede17e7?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4601d46b-1506-400f-8d4d-24d8dbe4c29e?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "fab182af-7762-41bd-82b3-50099b3d3e1b" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6794", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:37:08 GMT", + "x-ms-correlation-request-id" : "b6336571-8ae9-4c0b-a879-2249d4dd577a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103708Z:b6336571-8ae9-4c0b-a879-2249d4dd577a", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "49eff415-a00e-43cd-8034-09cf97ae4f30", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.4340905+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4601d46b-1506-400f-8d4d-24d8dbe4c29e\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4f2897e9-0c51-4068-a38d-962f2227e6b0?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "20886d4a-da50-49d1-9e41-8d00e5177466" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "59a41e78-b4a8-4844-a46f-37cb89d2a9f0", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "a21da123-6e31-439f-bbc8-323d78f5cc13", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075725Z:59a41e78-b4a8-4844-a46f-37cb89d2a9f0", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "36ffb98d-9dcf-4cbb-8001-e48e3f341520", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:37:07 GMT", + "x-ms-correlation-request-id" : "73256f7c-be6d-4fb4-8641-58b08744002c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103708Z:73256f7c-be6d-4fb4-8641-58b08744002c", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "cf4c8d09-32b1-4190-94e6-ed03d81948c8", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.7309273+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f2897e9-0c51-4068-a38d-962f2227e6b0\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/17f4f018-ebd3-46bf-8d49-ebb0072315cb?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f08df175-a7ea-4300-88ac-a9a37a952c16?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e83b1a51-157b-4cf0-90f4-2bcee1b2ecb8" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:26 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "8192", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fee2df3c-826d-4372-8af4-ed4101fbe155", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", + "Date" : "Wed, 12 Aug 2020 10:37:07 GMT", + "x-ms-correlation-request-id" : "f3b48beb-7162-4bba-a60b-695e5736b9a9", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103708Z:f3b48beb-7162-4bba-a60b-695e5736b9a9", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "975fff31-d787-42b7-a3ce-bf9f3b91e9d9", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.8402827+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f08df175-a7ea-4300-88ac-a9a37a952c16\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6448e0f5-7bc3-41b0-9d17-216a7451ff09" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:37:07 GMT", + "x-ms-correlation-request-id" : "a8757e1a-44cb-453b-b840-3f67013bb644", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103708Z:a8757e1a-44cb-453b-b840-3f67013bb644", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "b3ec2e68-56f6-4d32-9da9-b4c41429bf2e", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/69aa85fc-7565-40a3-9295-4413bb3114ab?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b32cbb9f-135c-4a49-aefb-4be2ad349a03" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:37:08 GMT", + "x-ms-correlation-request-id" : "51dd8cd7-b671-49cd-8950-65b650de883d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103708Z:51dd8cd7-b671-49cd-8950-65b650de883d", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "5e22f930-dcc7-4d67-ba69-cfcc88c7cbf4", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.9184048+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"69aa85fc-7565-40a3-9295-4413bb3114ab\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/8f86bd0b-44c9-4c3d-b0a8-adfef5fd3e07?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "039af1e1-55e3-466f-96ab-884c96667301" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:37:07 GMT", + "x-ms-correlation-request-id" : "52c14cdd-f4e2-4657-b5fb-2ed25709f985", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103708Z:52c14cdd-f4e2-4657-b5fb-2ed25709f985", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "f1d6d1ce-484b-45be-a5c4-edf1b1ff8d1d", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0590977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8f86bd0b-44c9-4c3d-b0a8-adfef5fd3e07\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/72a25487-3206-4c92-bc0a-86b601b6afd3?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "11184ab4-e6f9-45f0-9557-9b4bc3062d12" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11962", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:37:07 GMT", + "x-ms-correlation-request-id" : "3b146385-a8d4-434c-93d7-315e25dfcbb7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103708Z:3b146385-a8d4-434c-93d7-315e25dfcbb7", + "Expires" : "-1", + "Content-Length" : "133", + "x-ms-request-id" : "405ba57b-578b-478d-9ee6-22892cb08aac", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.043399+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"72a25487-3206-4c92-bc0a-86b601b6afd3\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/cfd9c9e8-d30b-4265-bc60-7a72c313e3b7?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "378c7092-eca1-45a3-b9fa-83a1d4d7ce57" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:37:08 GMT", + "x-ms-correlation-request-id" : "22fb2996-a912-46fd-a886-28c0441435ab", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29991", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075726Z:fee2df3c-826d-4372-8af4-ed4101fbe155", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c4545492-6919-4c90-8915-f8fdbc1a1558", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:09.5841528+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"17f4f018-ebd3-46bf-8d49-ebb0072315cb\"\r\n}" - } + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103708Z:22fb2996-a912-46fd-a886-28c0441435ab", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "2e03ef8c-2da6-4379-92c3-8d131932d77e", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.6684311+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cfd9c9e8-d30b-4265-bc60-7a72c313e3b7\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6da82bbe-6620-4902-a911-c79e6718757e?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/49a07cea-a2c8-4eb4-bd3e-e54eeeb95d70?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "924d05d8-66dc-4656-8733-bd2604fc004f" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:27 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6760", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:37:08 GMT", + "x-ms-correlation-request-id" : "3d881de1-50c8-4ef5-bfb9-0f8928485c06", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29990", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103708Z:3d881de1-50c8-4ef5-bfb9-0f8928485c06", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "5c8f426c-92f6-445d-9f33-64d615f1e1fd", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.5434437+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"49a07cea-a2c8-4eb4-bd3e-e54eeeb95d70\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9888bc0a-8aa7-44cc-b1ad-c9085751c642?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5369d562-5efe-4138-b32d-8d2a5dd3de48" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11961", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "03469b82-7925-44d2-a493-222f09e348fe", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", + "Date" : "Wed, 12 Aug 2020 10:37:08 GMT", + "x-ms-correlation-request-id" : "debb5cbe-0eb7-4800-a096-90b9e4637ab6", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29989", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075728Z:03469b82-7925-44d2-a493-222f09e348fe", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "97835652-8db2-435d-a71e-8b2d69e75723", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:11.5060728+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6da82bbe-6620-4902-a911-c79e6718757e\"\r\n}" - } + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103709Z:debb5cbe-0eb7-4800-a096-90b9e4637ab6", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "e5ec1256-f71a-4038-8772-b6dce16a8017", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.9184133+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9888bc0a-8aa7-44cc-b1ad-c9085751c642\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4818ee8a-8053-42c1-be82-c5a3a2c9cbe0?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6ccda068-bbc0-45e4-88cf-6d6311cf45c9?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "35400012-ab41-4a2e-95a0-9ca61d564cbc" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:30 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6724", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:37:09 GMT", + "x-ms-correlation-request-id" : "49cd21e0-4bf5-45d4-bd3d-1533c179e235", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14988,Microsoft.Compute/GetOperation30Min;29988", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103709Z:49cd21e0-4bf5-45d4-bd3d-1533c179e235", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "4ed1d5c5-29ca-4180-a679-f47ad7a1fb9d", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.8246496+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6ccda068-bbc0-45e4-88cf-6d6311cf45c9\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/769b9c60-6e1f-4057-947d-90dbf8efa842?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "88cd486e-0d68-4035-abb2-6b5ae80f56b1" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0747c948-49df-449e-9b10-5ec7ba24298a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", + "Date" : "Wed, 12 Aug 2020 10:37:09 GMT", + "x-ms-correlation-request-id" : "ffe4d505-b07d-4171-9901-f6540a84a9a0", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29987", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103709Z:ffe4d505-b07d-4171-9901-f6540a84a9a0", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "4a995855-9041-402c-808e-93f813e354a2", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.6215322+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"769b9c60-6e1f-4057-947d-90dbf8efa842\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ae7d6437-cb5f-4201-ab79-a05edbd4c237?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3b09a2f1-4d27-4259-b8dd-a3d4d1ababc2" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11960", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:37:09 GMT", + "x-ms-correlation-request-id" : "29ea3a71-cbdf-4acc-939b-3de2dc4527a7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29986", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075731Z:0747c948-49df-449e-9b10-5ec7ba24298a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "891c1090-320a-44bf-81ff-94b9ab115fd6", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:12.4279409+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4818ee8a-8053-42c1-be82-c5a3a2c9cbe0\"\r\n}" - } + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103710Z:29ea3a71-cbdf-4acc-939b-3de2dc4527a7", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "1a601cf0-3392-4664-8b1e-27f6cc4866a9", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:59.1527743+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ae7d6437-cb5f-4201-ab79-a05edbd4c237\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm03203c37d03361?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f08df175-a7ea-4300-88ac-a9a37a952c16?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "9c2c0561-97db-41ee-b2f0-e29b1cbe524f" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5496", + "x-ms-ratelimit-remaining-subscription-reads" : "11958", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0551ef1f-877b-4661-b6e6-708de726f48c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "4d6b3c85-5772-46d3-8c7f-1303bb0fe4b6", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075732Z:0551ef1f-877b-4661-b6e6-708de726f48c", - "etag" : "W/\"62fe6f95-7962-4bae-bdae-15981c2a62cf\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "90aa0f24-cf7c-45fd-bde1-e1cd02826301", - "Body" : "{\r\n \"name\": \"nicvm03203c37d03361\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm03203c37d03361\",\r\n \"etag\": \"W/\\\"62fe6f95-7962-4bae-bdae-15981c2a62cf\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b4013e17-eb94-4800-9466-4aec03696326\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm03203c37d03361/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"62fe6f95-7962-4bae-bdae-15981c2a62cf\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet382968e1bd/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"fxyymkkaxx2etns40xudtayv1f.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:37:43 GMT", + "x-ms-correlation-request-id" : "0605e90c-45c4-49bc-a371-03145522ae0e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29985", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103743Z:0605e90c-45c4-49bc-a371-03145522ae0e", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "28622575-c93e-443e-8382-31d5907d0efe", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.8402827+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f08df175-a7ea-4300-88ac-a9a37a952c16\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/497ec5de-7f04-4142-8ada-81e964437ade?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/69aa85fc-7565-40a3-9295-4413bb3114ab?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1b1440a3-ad14-486a-befd-4906275f975d" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5485", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1a4df9d8-ddcf-4d93-aa2e-b17d8cb467c2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "5195b040-0ef1-4e1f-a531-23ea06e29a52", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075733Z:1a4df9d8-ddcf-4d93-aa2e-b17d8cb467c2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4dce78c9-e52c-4b6c-be1f-751d272e85a5", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:37:43 GMT", + "x-ms-correlation-request-id" : "7611486c-e59d-4328-9ce8-9a5980c5aa07", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29984", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103743Z:7611486c-e59d-4328-9ce8-9a5980c5aa07", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "a01a303b-dfdf-433a-b2cd-5adcaa2088fa", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.9184048+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"69aa85fc-7565-40a3-9295-4413bb3114ab\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7a337117-e927-421e-833a-6acc84618c5f?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/8f86bd0b-44c9-4c3d-b0a8-adfef5fd3e07?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f72228db-19b0-4cc4-8792-d4ee63f56a7e" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "8109", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "adfadc50-b8f4-4ccf-b9ff-1748d0dd479a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "193b82c5-cba0-4b3f-b017-dc0ebaa104d2", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075737Z:adfadc50-b8f4-4ccf-b9ff-1748d0dd479a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e11c6dab-a8ef-4f0b-a458-afb861ce9e99", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:37:43 GMT", + "x-ms-correlation-request-id" : "3c772848-f4e0-4a0b-b261-732e8ff40198", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29983", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103743Z:3c772848-f4e0-4a0b-b261-732e8ff40198", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "77f96e12-27ad-4a7a-a042-a313d6e5bf60", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0590977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8f86bd0b-44c9-4c3d-b0a8-adfef5fd3e07\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm03203c?api-version=2019-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/72a25487-3206-4c92-bc0a-86b601b6afd3?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "83fdbec1-86a9-4507-af8d-b3812cb6f739" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:37 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1532", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1152", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "79a7e7e5-e49c-4c6d-b200-f7ea4ea6865d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;225,Microsoft.Compute/PutVM30Min;1185", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075738Z:79a7e7e5-e49c-4c6d-b200-f7ea4ea6865d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b5d91266-fc3b-405e-bdef-68c9c521c624", - "Body" : "{\r\n \"name\": \"vm03203c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm03203c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"47989b7a-28c3-4676-b985-6d7b28dee98d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.19756.2007111612\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm03203c\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm03203c37d03361\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/b5d91266-fc3b-405e-bdef-68c9c521c624?api-version=2019-12-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11957", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:37:43 GMT", + "x-ms-correlation-request-id" : "c10a7ca4-8499-4b16-a6ca-11d6b35d3471", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29982", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103743Z:c10a7ca4-8499-4b16-a6ca-11d6b35d3471", + "Expires" : "-1", + "Content-Length" : "133", + "x-ms-request-id" : "ef393795-0c2f-423c-9907-3052a31b0f3b", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.043399+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"72a25487-3206-4c92-bc0a-86b601b6afd3\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm37921ee6895661?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/cfd9c9e8-d30b-4265-bc60-7a72c313e3b7?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ab6b0d48-b3a2-42e7-9d00-22f9862fafd2" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:40 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "8086", + "x-ms-ratelimit-remaining-subscription-reads" : "11957", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "15fe6a77-910d-4011-8ac7-25fc7d972b93", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "184bdaa2-9e01-4286-b03d-3624b10068d7", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075740Z:15fe6a77-910d-4011-8ac7-25fc7d972b93", - "etag" : "W/\"f0077edb-7a18-4309-9814-f6afde381340\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "777e7d86-e1f6-429c-a6b4-8f351662b29d", - "Body" : "{\r\n \"name\": \"nicvm37921ee6895661\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm37921ee6895661\",\r\n \"etag\": \"W/\\\"f0077edb-7a18-4309-9814-f6afde381340\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"68da34ba-ba30-4141-bc25-a6f825c30eb9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm37921ee6895661/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"f0077edb-7a18-4309-9814-f6afde381340\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet93745a29ac/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ay1yle2kkmmejlmw3hbme5xxsa.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:37:43 GMT", + "x-ms-correlation-request-id" : "9fdbc80d-43b0-4c9b-acdd-14610df94c4d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14981,Microsoft.Compute/GetOperation30Min;29981", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103743Z:9fdbc80d-43b0-4c9b-acdd-14610df94c4d", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "9b071678-df46-4338-a6a7-ca12098c1ab8", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.6684311+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cfd9c9e8-d30b-4265-bc60-7a72c313e3b7\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/10204310-e074-4269-8b63-dc4719cd3ad7?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/49a07cea-a2c8-4eb4-bd3e-e54eeeb95d70?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "8bf33626-97bf-4466-8e1b-1cb8dcfdc283" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:40 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5481", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3534b180-177d-4045-bd94-4c3034d76465", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "f009a52c-b628-4508-bad3-752a33d24122", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075741Z:3534b180-177d-4045-bd94-4c3034d76465", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2ecae4c8-9f1a-4c55-9b00-0924adee7cbe", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:37:43 GMT", + "x-ms-correlation-request-id" : "990350d1-afa3-4522-b873-e7a42a617350", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14980,Microsoft.Compute/GetOperation30Min;29980", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103744Z:990350d1-afa3-4522-b873-e7a42a617350", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "447178ac-daee-49f6-bdd7-9951451adda7", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.5434437+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"49a07cea-a2c8-4eb4-bd3e-e54eeeb95d70\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/1384c3bb-e70d-434c-a5cb-bfb7a18eff4a?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9888bc0a-8aa7-44cc-b1ad-c9085751c642?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a85c0ed3-5daa-460e-8a0c-c90d19ad0480" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:41 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5469", + "x-ms-ratelimit-remaining-subscription-reads" : "11956", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "aa34b2a6-91f1-449c-ac57-a0190b6010c4", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "20d8b550-f3e6-4c66-aae8-ca746dbb8621", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075742Z:aa34b2a6-91f1-449c-ac57-a0190b6010c4", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7f456085-9c3f-4cef-8c69-c10d37bcbb69", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:37:44 GMT", + "x-ms-correlation-request-id" : "b57d2dfe-abfc-47bc-bcd9-5bc72e20fc1a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14979,Microsoft.Compute/GetOperation30Min;29979", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103744Z:b57d2dfe-abfc-47bc-bcd9-5bc72e20fc1a", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "624b83d9-717d-4fd7-988f-6d2c0134ca01", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.9184133+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9888bc0a-8aa7-44cc-b1ad-c9085751c642\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/896855eb-0f8c-460e-a7d6-a22e0b193cb9?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6ccda068-bbc0-45e4-88cf-6d6311cf45c9?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e3952583-139a-4128-b70f-4398457bca88" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:42 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "133", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6606", + "x-ms-ratelimit-remaining-subscription-reads" : "11955", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "940d7b68-696a-41d0-bc2c-9ae4ce7e9bbd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29985", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075743Z:940d7b68-696a-41d0-bc2c-9ae4ce7e9bbd", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0fa97e20-a3b6-4cb4-8dae-670a70a59058", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:36.286895+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"896855eb-0f8c-460e-a7d6-a22e0b193cb9\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:37:45 GMT", + "x-ms-correlation-request-id" : "f9eb7b23-1a9b-4a2d-948a-741cd1bf96e1", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29978", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103745Z:f9eb7b23-1a9b-4a2d-948a-741cd1bf96e1", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "287cff46-9392-44f6-a645-1d0b704eefd4", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.8246496+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"6ccda068-bbc0-45e4-88cf-6d6311cf45c9\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f257e1b3-3340-418b-a896-deef763da97e?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ae7d6437-cb5f-4201-ab79-a05edbd4c237?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "93510b7a-72cd-4976-a331-d9f511856ee4" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:43 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "8064", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ab60073b-72af-4ba9-abb3-51906ed34389", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29984", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075744Z:ab60073b-72af-4ba9-abb3-51906ed34389", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d7ddc5e9-3d3b-4674-9056-350fb4c7aa9b", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:36.7712606+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"f257e1b3-3340-418b-a896-deef763da97e\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:37:45 GMT", + "x-ms-correlation-request-id" : "a7d3f964-4a9c-4c20-a466-ed5c6bea6425", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14977,Microsoft.Compute/GetOperation30Min;29977", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103746Z:a7d3f964-4a9c-4c20-a466-ed5c6bea6425", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "700f1ffa-73d3-41f8-826c-09bce1a4bb50", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:59.1527743+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ae7d6437-cb5f-4201-ab79-a05edbd4c237\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm73887950566279?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/274f0f3a-1ebf-4590-929d-a0911f0cb2b8?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e472ee0e-3723-4880-9e23-a672c679d48b" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:43 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5440", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7e1d2717-0ad7-4d03-b2ec-ba34778e71d1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "346b5e7e-3735-4685-898c-6eaf687a27e6", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075744Z:7e1d2717-0ad7-4d03-b2ec-ba34778e71d1", - "etag" : "W/\"2e5f7ace-9986-48f4-9af4-c4cc086ff972\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d2033650-d734-44e9-ab14-e4e726dfe240", - "Body" : "{\r\n \"name\": \"nicvm73887950566279\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm73887950566279\",\r\n \"etag\": \"W/\\\"2e5f7ace-9986-48f4-9af4-c4cc086ff972\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"86d28213-fe2f-409b-83e0-3578f6b840ef\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm73887950566279/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"2e5f7ace-9986-48f4-9af4-c4cc086ff972\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet63350bd9ae/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"chofybytwpoupjqkkvjx3bwk5b.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:37:57 GMT", + "x-ms-correlation-request-id" : "b0b7a8c2-4294-4a2b-bdaf-55d275c299dc", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29974", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103758Z:b0b7a8c2-4294-4a2b-bdaf-55d275c299dc", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "4b3d9e99-1f24-40cf-8559-ffae0df2af8f", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.2778059+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"274f0f3a-1ebf-4590-929d-a0911f0cb2b8\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm37921e?api-version=2019-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4601d46b-1506-400f-8d4d-24d8dbe4c29e?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "464d5f53-d603-48a8-8d0c-78f7cf3e139f" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:43 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1488", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1149", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "91ba3fc1-71c6-40fd-a525-5291e7031beb", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;224,Microsoft.Compute/PutVM30Min;1184", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075744Z:91ba3fc1-71c6-40fd-a525-5291e7031beb", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ddefae37-b642-4f76-b529-f3eb5117fa84", - "Body" : "{\r\n \"name\": \"vm37921e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm37921e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f0b2208a-dae0-4463-b15c-1ea70c1f5f5e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"credativ\",\r\n \"offer\": \"Debian\",\r\n \"sku\": \"9\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9.20200722.0\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm37921e\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm37921ee6895661\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ddefae37-b642-4f76-b529-f3eb5117fa84?api-version=2019-12-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11954", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:37:58 GMT", + "x-ms-correlation-request-id" : "1edb03d2-5a48-49c2-98f6-beb98c57ea8e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29973", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103758Z:1edb03d2-5a48-49c2-98f6-beb98c57ea8e", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "3ed71063-a765-444a-b6dd-444906eb7a33", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.4340905+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4601d46b-1506-400f-8d4d-24d8dbe4c29e\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/5cac5266-62f6-48ad-97e9-6c3631118a6a?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4f2897e9-0c51-4068-a38d-962f2227e6b0?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ad80529a-0fce-4878-ad88-3148ad784690" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "8060", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ddfcdd02-67ca-4567-b5d5-159af54648bd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29983", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075744Z:ddfcdd02-67ca-4567-b5d5-159af54648bd", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "991b84f5-4492-4239-9d78-e95259de07ca", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:37.6306449+00:00\",\r\n \"endTime\": \"2020-07-28T07:57:27.2093909+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5cac5266-62f6-48ad-97e9-6c3631118a6a\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:37:58 GMT", + "x-ms-correlation-request-id" : "19b17d42-2beb-4fcf-846f-1066b66f4f37", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14972,Microsoft.Compute/GetOperation30Min;29972", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103758Z:19b17d42-2beb-4fcf-846f-1066b66f4f37", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "8fba33d9-917f-42df-ab66-65efd2fa501d", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.7309273+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f2897e9-0c51-4068-a38d-962f2227e6b0\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bef7b92f-3c2a-4a26-a30a-a177baedf7dc?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "408aec2a-2acf-427f-ac3c-9c0a08b73140" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:43 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5355", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e8e07bc8-c653-4334-bc2b-26ef0f26e809", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29982", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075744Z:e8e07bc8-c653-4334-bc2b-26ef0f26e809", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "89ead6b9-244c-475e-a49a-ae1c867e5ef6", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:33.5212003+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bef7b92f-3c2a-4a26-a30a-a177baedf7dc\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:37:58 GMT", + "x-ms-correlation-request-id" : "08a42717-f2a9-4c75-a736-ed87bef5134e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14971,Microsoft.Compute/GetOperation30Min;29971", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103758Z:08a42717-f2a9-4c75-a736-ed87bef5134e", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "09ef91dd-05e0-46ec-bba6-73b2a9a1c6ec", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm91630b6ca21232?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/769b9c60-6e1f-4057-947d-90dbf8efa842?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b4a37339-bb59-403a-b01b-e7720af31845" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:47 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5391", + "x-ms-ratelimit-remaining-subscription-reads" : "11953", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "843fdc18-734d-41a0-afd3-aef45ab648b4", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1e766b36-5b60-4f79-b2c9-d896049ffdbd", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075747Z:843fdc18-734d-41a0-afd3-aef45ab648b4", - "etag" : "W/\"13e12b9e-f19a-4e97-97a6-5b1a2c4ea4c3\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6679a8d1-ae83-48d3-995f-8f0b081e23d3", - "Body" : "{\r\n \"name\": \"nicvm91630b6ca21232\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm91630b6ca21232\",\r\n \"etag\": \"W/\\\"13e12b9e-f19a-4e97-97a6-5b1a2c4ea4c3\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c15b5ca4-8609-469e-96c6-7f809ecb47e8\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm91630b6ca21232/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"13e12b9e-f19a-4e97-97a6-5b1a2c4ea4c3\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet1063963941/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"drnr4cvaqshexnusj42at42azg.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:00 GMT", + "x-ms-correlation-request-id" : "890e9ea4-1d4f-4c92-b873-012647a212c9", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29969", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103800Z:890e9ea4-1d4f-4c92-b873-012647a212c9", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "e9009737-c6d4-491e-bab9-2901853a4e6a", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.6215322+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"769b9c60-6e1f-4057-947d-90dbf8efa842\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm936330?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f08df175-a7ea-4300-88ac-a9a37a952c16?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c2e87276-40e5-43fb-8bbf-92843c8c5a62" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:47 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1761", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5311", + "x-ms-ratelimit-remaining-subscription-reads" : "11951", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "408a9405-b200-449a-b821-0efbdd4e3bff", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31995", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075748Z:408a9405-b200-449a-b821-0efbdd4e3bff", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "917fa42b-42f1-45e7-b8ea-a53f127dda83", - "Body" : "{\r\n \"name\": \"vm936330\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm936330\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b34983e0-7548-4e77-9fbf-f644dcff2e62\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202007161\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm936330_OsDisk_1_0b5dd5eb3fe749a894f7390beeb699ca\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm936330_OsDisk_1_0b5dd5eb3fe749a894f7390beeb699ca\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm936330\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm936330e3b15668\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:13 GMT", + "x-ms-correlation-request-id" : "2c01aea4-d1b8-4c4a-b1c3-ecefb404c653", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29967", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103813Z:2c01aea4-d1b8-4c4a-b1c3-ecefb404c653", + "Expires" : "-1", + "Content-Length" : "183", + "x-ms-request-id" : "6c644ed4-820d-4dff-ab4c-469a5586eee6", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.8402827+00:00\",\r\n \"endTime\": \"2020-08-12T10:38:09.902761+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f08df175-a7ea-4300-88ac-a9a37a952c16\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm39853639b82681?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/69aa85fc-7565-40a3-9295-4413bb3114ab?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "66054780-fe15-4657-b368-b5c54a5a7b3a" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:48 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "8028", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3672360e-35cf-4fad-bae8-0635ca4982c8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b094edad-1a83-4263-be3e-4ef0b3974559", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075749Z:3672360e-35cf-4fad-bae8-0635ca4982c8", - "etag" : "W/\"ff067e9a-15f4-4180-877a-024ecd7a9420\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "06408d8d-19bb-4cce-a537-c2c5236ffdff", - "Body" : "{\r\n \"name\": \"nicvm39853639b82681\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm39853639b82681\",\r\n \"etag\": \"W/\\\"ff067e9a-15f4-4180-877a-024ecd7a9420\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"024278fe-c2ec-4a75-88e7-90682016d8b9\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm39853639b82681/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"ff067e9a-15f4-4180-877a-024ecd7a9420\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet9197212487/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"vg5hhyosi2rere4rj5xdd3d0te.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:13 GMT", + "x-ms-correlation-request-id" : "8fefa556-1d23-462f-bd32-3a949752fbe0", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29966", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103813Z:8fefa556-1d23-462f-bd32-3a949752fbe0", + "Expires" : "-1", + "Content-Length" : "182", + "x-ms-request-id" : "904074d7-be12-403d-ba6b-625aec467823", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.9184048+00:00\",\r\n \"endTime\": \"2020-08-12T10:37:49.66844+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"69aa85fc-7565-40a3-9295-4413bb3114ab\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm738879?api-version=2019-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/8f86bd0b-44c9-4c3d-b0a8-adfef5fd3e07?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "23a0c842-02f9-473c-ac46-0a9916480c21" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:50 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1545", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1128", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f863cb75-8eca-48b1-91e0-a5d986440cf7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;223,Microsoft.Compute/PutVM30Min;1183", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075751Z:f863cb75-8eca-48b1-91e0-a5d986440cf7", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "439082e6-14ae-4b47-8b5f-6af0eedd0a2e", - "Body" : "{\r\n \"name\": \"vm738879\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm738879\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"aa6b98db-478f-45b6-9a14-d877b872aee3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter-with-Containers\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.1339.2007101755\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm738879\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm73887950566279\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/439082e6-14ae-4b47-8b5f-6af0eedd0a2e?api-version=2019-12-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11985", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:38:13 GMT", + "x-ms-correlation-request-id" : "a91e7db7-3e0e-4158-8549-16bbbf74a5f7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29965", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103814Z:a91e7db7-3e0e-4158-8549-16bbbf74a5f7", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "cc823b4a-5cf3-40b7-8c20-b198841e6938", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0590977+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8f86bd0b-44c9-4c3d-b0a8-adfef5fd3e07\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ddefae37-b642-4f76-b529-f3eb5117fa84?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/cfd9c9e8-d30b-4265-bc60-7a72c313e3b7?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "06ac806b-3bbc-4bd3-92f1-d449a73eed4f" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:54 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5299", + "x-ms-ratelimit-remaining-subscription-reads" : "11949", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3812cfac-07b5-4c3f-bb01-2ad491f65446", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14978,Microsoft.Compute/GetOperation30Min;29978", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075754Z:3812cfac-07b5-4c3f-bb01-2ad491f65446", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ffbc515a-a41e-421a-810c-e9d02028de5d", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:43.1158592+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"ddefae37-b642-4f76-b529-f3eb5117fa84\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:13 GMT", + "x-ms-correlation-request-id" : "3505b512-5147-4bb6-bab1-8278a2b1aa6c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14964,Microsoft.Compute/GetOperation30Min;29964", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103814Z:3505b512-5147-4bb6-bab1-8278a2b1aa6c", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "955e2685-252c-4b5a-98e4-33d91f6ae75c", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.6684311+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cfd9c9e8-d30b-4265-bc60-7a72c313e3b7\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm8434231ed96034?api-version=2020-05-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm667425?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4a16fdf6-b0f7-49f2-badd-739889b9e3ab" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:55 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1668", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5276", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "27ef73e0-9143-44fd-81f6-a7cea03d37a5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b4981e6b-3e55-4c68-9008-cdf72aa16c71", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075756Z:27ef73e0-9143-44fd-81f6-a7cea03d37a5", - "etag" : "W/\"0aeb5fa7-65f4-43c4-9e0e-12f68bcecb8b\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "bb36522d-c03a-492d-8d19-af6a52fb3a33", - "Body" : "{\r\n \"name\": \"nicvm8434231ed96034\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm8434231ed96034\",\r\n \"etag\": \"W/\\\"0aeb5fa7-65f4-43c4-9e0e-12f68bcecb8b\\\"\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d4531266-81a6-405f-88db-f6d15e8cc99f\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"primary\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm8434231ed96034/ipConfigurations/primary\",\r\n \"etag\": \"W/\\\"0aeb5fa7-65f4-43c4-9e0e-12f68bcecb8b\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/virtualNetworks/vnet5433527d80/subnets/subnet1\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"b3bvdx3pefre5ayoykhek0abae.jx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"hostedWorkloads\": [],\r\n \"tapConfigurations\": [],\r\n \"nicType\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:13 GMT", + "x-ms-correlation-request-id" : "50ecca9e-0c06-4e15-82de-1cdc5c1d0def", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31992", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103814Z:50ecca9e-0c06-4e15-82de-1cdc5c1d0def", + "Expires" : "-1", + "Content-Length" : "1734", + "x-ms-request-id" : "d5883ebb-d652-466b-a2a6-8128817d5e84", + "Body" : "{\r\n \"name\": \"vm667425\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm667425\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"4622c5cc-089d-4a7e-8117-eb65c52e38c9\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Oracle\",\r\n \"offer\": \"Oracle-Linux\",\r\n \"sku\": \"81\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"8.1.2\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm667425_OsDisk_1_a19b33a1c99a4c97a92bb3cbd29dc115\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm667425_OsDisk_1_a19b33a1c99a4c97a92bb3cbd29dc115\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm667425\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic97905350a55\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm398536?api-version=2019-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/72a25487-3206-4c92-bc0a-86b601b6afd3?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "099785c1-c146-4d38-b1cf-db55a4bee1d4" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:57 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1492", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1136", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c39b9977-76be-4cef-b6c1-dee3ba889dc8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;222,Microsoft.Compute/PutVM30Min;1182", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075757Z:c39b9977-76be-4cef-b6c1-dee3ba889dc8", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "38bbd4ba-dd35-4a0c-967f-ba3840e0b20c", - "Body" : "{\r\n \"name\": \"vm398536\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm398536\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"30d0f89a-41a5-46b3-be7b-2040678ad227\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"0.20200610.293\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm398536\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm39853639b82681\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/38bbd4ba-dd35-4a0c-967f-ba3840e0b20c?api-version=2019-12-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11948", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:38:14 GMT", + "x-ms-correlation-request-id" : "2a7fe4c7-368a-474c-b79c-212492a0becd", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14962,Microsoft.Compute/GetOperation30Min;29962", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103814Z:2a7fe4c7-368a-474c-b79c-212492a0becd", + "Expires" : "-1", + "Content-Length" : "183", + "x-ms-request-id" : "b1e85668-b8dd-4bf7-b759-9f1371a98ce2", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.043399+00:00\",\r\n \"endTime\": \"2020-08-12T10:37:54.6840291+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"72a25487-3206-4c92-bc0a-86b601b6afd3\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm91630b?api-version=2019-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm710791?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "61e0b6f6-d75d-4f8b-85be-72b746b18162" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1486", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1144", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3f95133c-fa25-4ff4-9fa4-a28849e5e519", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;221,Microsoft.Compute/PutVM30Min;1181", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075800Z:3f95133c-fa25-4ff4-9fa4-a28849e5e519", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7780afa8-01a3-448d-a34a-1058013b2911", - "Body" : "{\r\n \"name\": \"vm91630b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm91630b\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ca5a8c0c-e7df-46e6-bc22-e9a1c55df61b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Oracle\",\r\n \"offer\": \"Oracle-Linux\",\r\n \"sku\": \"81\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"8.1.2\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm91630b\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm91630b6ca21232\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/7780afa8-01a3-448d-a34a-1058013b2911?api-version=2019-12-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11948", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:38:14 GMT", + "x-ms-correlation-request-id" : "54359478-6243-4ae0-a151-285d3d3efb6d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3990,Microsoft.Compute/LowCostGet30Min;31990", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103814Z:54359478-6243-4ae0-a151-285d3d3efb6d", + "Expires" : "-1", + "Content-Length" : "1756", + "x-ms-request-id" : "9fe0cc85-8c9d-462c-a621-3feb07f42710", + "Body" : "{\r\n \"name\": \"vm710791\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm710791\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b011d222-256c-48d3-a26a-917b52ce577c\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"16.04.0-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"16.04.202008070\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm710791_OsDisk_1_ecaba0c439b64bf0be5187b363048194\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm710791_OsDisk_1_ecaba0c439b64bf0be5187b363048194\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm710791\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic24843cad856\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { - "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm843423?api-version=2019-12-01", + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm298071?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.compute/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", - "Content-Type" : "application/json" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1c810d73-fe3e-4d10-ac1b-23ea94ca426c" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:57:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "1506", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1144", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d6cc8703-de52-4ea5-a9b4-ec17f19ca651", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/PutVM3Min;220,Microsoft.Compute/PutVM30Min;1180", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075800Z:d6cc8703-de52-4ea5-a9b4-ec17f19ca651", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c7777332-a4e2-43b3-a35f-d1ad33f35ab6", - "Body" : "{\r\n \"name\": \"vm843423\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm843423\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ab6da76a-9600-4148-b0a8-989a798359d2\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202007160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm843423\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm8434231ed96034\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/c7777332-a4e2-43b3-a35f-d1ad33f35ab6?api-version=2019-12-01" - } + "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:38:14 GMT", + "x-ms-correlation-request-id" : "d6c33c4b-6332-4140-bb7f-dab20c039ca6", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3989,Microsoft.Compute/LowCostGet30Min;31989", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103814Z:d6c33c4b-6332-4140-bb7f-dab20c039ca6", + "Expires" : "-1", + "Content-Length" : "1740", + "x-ms-request-id" : "19e6578b-57ac-41fb-b016-784ddd2818d9", + "Body" : "{\r\n \"name\": \"vm298071\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm298071\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"3f2de922-206f-4fb2-bc63-fc75e3ce4dc3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"0.20200803.347\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm298071_OsDisk_1_7058fc88b1ed42008a91e47d520bd694\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm298071_OsDisk_1_7058fc88b1ed42008a91e47d520bd694\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm298071\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic323272e0039\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/b5d91266-fc3b-405e-bdef-68c9c521c624?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/49a07cea-a2c8-4eb4-bd3e-e54eeeb95d70?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0f4858b9-227f-49de-a181-8d1f65c52730" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:58:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7935", + "x-ms-ratelimit-remaining-subscription-reads" : "11948", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6173b236-cecf-476c-b345-43485043ea4f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29976", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075801Z:6173b236-cecf-476c-b345-43485043ea4f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "5a5f5d4e-747e-419d-9ad4-25b9bd7f6c47", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:37.0220105+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b5d91266-fc3b-405e-bdef-68c9c521c624\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:14 GMT", + "x-ms-correlation-request-id" : "e5011b8c-5fc7-47f1-9090-eade1989bea5", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14961,Microsoft.Compute/GetOperation30Min;29961", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103815Z:e5011b8c-5fc7-47f1-9090-eade1989bea5", + "Expires" : "-1", + "Content-Length" : "184", + "x-ms-request-id" : "05313310-4161-417a-b27c-975cde5ffb39", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.5434437+00:00\",\r\n \"endTime\": \"2020-08-12T10:38:03.8089638+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"49a07cea-a2c8-4eb4-bd3e-e54eeeb95d70\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/b9a144af-50df-4b3c-b505-2f0672fa652c?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm32513e?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f65f6f07-e26b-4314-bfce-6d617e2898ac" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:58:01 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5135", + "x-ms-ratelimit-remaining-subscription-reads" : "11947", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b9cefb37-636e-41b4-8b9c-283d4d7d89aa", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29975", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075802Z:b9cefb37-636e-41b4-8b9c-283d4d7d89aa", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b77030f0-5193-4752-b7fc-602a2f4efa27", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:45.8807416+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b9a144af-50df-4b3c-b505-2f0672fa652c\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:15 GMT", + "x-ms-correlation-request-id" : "c03ab83b-64ec-4461-99a4-1816a5fcf2f6", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3988,Microsoft.Compute/LowCostGet30Min;31988", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103815Z:c03ab83b-64ec-4461-99a4-1816a5fcf2f6", + "Expires" : "-1", + "Content-Length" : "1736", + "x-ms-request-id" : "ea744076-bfd2-40f3-8d2d-d64881e53c79", + "Body" : "{\r\n \"name\": \"vm32513e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm32513e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"0ec8ee59-73ac-4ac4-83f6-12db1a658d6a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"credativ\",\r\n \"offer\": \"Debian\",\r\n \"sku\": \"9\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9.20200722.0\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm32513e_OsDisk_1_1bf20488635e4aa6a6721ec828cdd3c2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm32513e_OsDisk_1_1bf20488635e4aa6a6721ec828cdd3c2\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm32513e\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic7097948b727\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/439082e6-14ae-4b47-8b5f-6af0eedd0a2e?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9888bc0a-8aa7-44cc-b1ad-c9085751c642?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "dce3ec44-de5d-45f2-ac90-85608afcefd5" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:58:03 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5107", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1b8a79db-67c1-4ff1-8068-c1ef3c21b08d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14973,Microsoft.Compute/GetOperation30Min;29973", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075804Z:1b8a79db-67c1-4ff1-8068-c1ef3c21b08d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6a3df089-b8f4-4b66-8d35-ed2215a832cf", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:49.7565459+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"439082e6-14ae-4b47-8b5f-6af0eedd0a2e\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:14 GMT", + "x-ms-correlation-request-id" : "2ac815cf-474f-4f14-b044-84700cebc18b", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14960,Microsoft.Compute/GetOperation30Min;29960", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103815Z:2ac815cf-474f-4f14-b044-84700cebc18b", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "3a273350-ef74-48a2-b236-7aef2c70b1c4", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.9184133+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9888bc0a-8aa7-44cc-b1ad-c9085751c642\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/f257e1b3-3340-418b-a896-deef763da97e?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6ccda068-bbc0-45e4-88cf-6d6311cf45c9?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4f86c33e-a07f-44fb-a773-72158a20d235" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:58:17 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6241", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "511d7a85-4231-47b2-b751-9eec9a8d7dc7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29969", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075817Z:511d7a85-4231-47b2-b751-9eec9a8d7dc7", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f261dd71-1592-4b97-8318-729406043e47", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:36.7712606+00:00\",\r\n \"endTime\": \"2020-07-28T07:58:08.6161878+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"f257e1b3-3340-418b-a896-deef763da97e\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:14 GMT", + "x-ms-correlation-request-id" : "baf10b62-32f4-4f8b-81e7-0cb0514e1b3f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14959,Microsoft.Compute/GetOperation30Min;29959", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103815Z:baf10b62-32f4-4f8b-81e7-0cb0514e1b3f", + "Expires" : "-1", + "Content-Length" : "184", + "x-ms-request-id" : "fad2b2f4-1fdf-4247-899c-71ecd8b28e1d", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.8246496+00:00\",\r\n \"endTime\": \"2020-08-12T10:38:13.0121089+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6ccda068-bbc0-45e4-88cf-6d6311cf45c9\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm573073?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm686769?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a66cf859-7591-4621-8f41-b430441e40fd" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:58:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1745", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6228", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "61312422-b8a5-43fe-b2d7-476c6f0c122c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3987,Microsoft.Compute/LowCostGet30Min;31987", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075818Z:61312422-b8a5-43fe-b2d7-476c6f0c122c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d702ef35-77dc-4611-b928-ac446f3a4006", - "Body" : "{\r\n \"name\": \"vm573073\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm573073\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"561d2f3b-1605-4445-b445-a2a7a6b01f99\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"openSUSE-Leap\",\r\n \"sku\": \"15-1\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"2019.06.18\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm573073_OsDisk_1_6d05fb65a1904df0b522b04299ed59e0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm573073_OsDisk_1_6d05fb65a1904df0b522b04299ed59e0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm573073\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm5730733c404159\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:15 GMT", + "x-ms-correlation-request-id" : "f816d5bd-3748-4b79-bf02-c8cf4d318e8e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3986,Microsoft.Compute/LowCostGet30Min;31986", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103815Z:f816d5bd-3748-4b79-bf02-c8cf4d318e8e", + "Expires" : "-1", + "Content-Length" : "1741", + "x-ms-request-id" : "d1af8606-36cc-4a8e-a2c2-c03be0a536a2", + "Body" : "{\r\n \"name\": \"vm686769\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm686769\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"7b90690d-cced-496c-a76f-cc5bf465ef0d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"8_1\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"8.1.2020062400\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm686769_OsDisk_1_b1833079d65a42f99b596c4cd323ecb5\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm686769_OsDisk_1_b1833079d65a42f99b596c4cd323ecb5\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm686769\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic68701cef329\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/896855eb-0f8c-460e-a7d6-a22e0b193cb9?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ae7d6437-cb5f-4201-ab79-a05edbd4c237?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c7fbfd7d-8d7b-4e6e-be9f-7c1efaf9cbbd" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:58:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4903", + "x-ms-ratelimit-remaining-subscription-reads" : "11946", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "15b22f57-7dd3-44ff-936c-b653d8c6c164", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29967", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075821Z:15b22f57-7dd3-44ff-936c-b653d8c6c164", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "237b1235-97bd-4c19-981b-09fa43b7d7a4", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:36.286895+00:00\",\r\n \"endTime\": \"2020-07-28T07:58:04.5692336+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"896855eb-0f8c-460e-a7d6-a22e0b193cb9\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:16 GMT", + "x-ms-correlation-request-id" : "e4f0f9a0-4399-4c29-b1a6-be9be8f178d5", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29957", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103816Z:e4f0f9a0-4399-4c29-b1a6-be9be8f178d5", + "Expires" : "-1", + "Content-Length" : "184", + "x-ms-request-id" : "5d8d9281-47cc-4402-b348-0db1955393c8", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:59.1527743+00:00\",\r\n \"endTime\": \"2020-08-12T10:37:54.6683864+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ae7d6437-cb5f-4201-ab79-a05edbd4c237\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/17f4f018-ebd3-46bf-8d49-ebb0072315cb?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm37062b?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "29713b4f-ca72-4c65-a463-544c1919b7ad" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:58:22 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6185", + "x-ms-ratelimit-remaining-subscription-reads" : "11945", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "268e49a4-9f24-49cb-a1b5-e0c0256a9f59", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14966,Microsoft.Compute/GetOperation30Min;29966", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075823Z:268e49a4-9f24-49cb-a1b5-e0c0256a9f59", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3e31ab2c-f884-4f8f-8a88-f32fc9bd88c3", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:09.5841528+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"17f4f018-ebd3-46bf-8d49-ebb0072315cb\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:16 GMT", + "x-ms-correlation-request-id" : "34da6faf-61ec-49f2-bd0d-52fa572e3168", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3985,Microsoft.Compute/LowCostGet30Min;31985", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103816Z:34da6faf-61ec-49f2-bd0d-52fa572e3168", + "Expires" : "-1", + "Content-Length" : "1754", + "x-ms-request-id" : "94f36a5c-0248-4965-afe2-7816279516ca", + "Body" : "{\r\n \"name\": \"vm37062b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm37062b\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"b8e71176-0916-4894-96db-bc7b5c1fd416\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202007290\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm37062b_OsDisk_1_02fec8d9fb8c44c6831bcc7ccc2bc369\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm37062b_OsDisk_1_02fec8d9fb8c44c6831bcc7ccc2bc369\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm37062b\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic78048e61c4e\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/ddefae37-b642-4f76-b529-f3eb5117fa84?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/274f0f3a-1ebf-4590-929d-a0911f0cb2b8?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "98bc0e4c-8963-4814-b876-08a0bc4b1011" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:58:49 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5891", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2a208ba2-23b9-4bcd-9585-f00e18d7a8f9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29957", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075850Z:2a208ba2-23b9-4bcd-9585-f00e18d7a8f9", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "87b5793a-7c77-41f9-b4a1-7f7fa145e7ae", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:43.1158592+00:00\",\r\n \"endTime\": \"2020-07-28T07:58:49.1167283+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"ddefae37-b642-4f76-b529-f3eb5117fa84\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:28 GMT", + "x-ms-correlation-request-id" : "196375ed-c057-4a40-a2d3-9883c328c52c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29955", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103828Z:196375ed-c057-4a40-a2d3-9883c328c52c", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "a888d5f1-0a46-487e-b532-c6219914571a", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.2778059+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"274f0f3a-1ebf-4590-929d-a0911f0cb2b8\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm37921e?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4601d46b-1506-400f-8d4d-24d8dbe4c29e?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1da68e8c-676f-432a-9dee-9c6944bfe6eb" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:58:52 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1741", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5866", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a1868f32-997e-4270-aaad-a05dad3a9782", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3978,Microsoft.Compute/LowCostGet30Min;31978", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075852Z:a1868f32-997e-4270-aaad-a05dad3a9782", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a9e8edc5-09bd-4953-80fa-a0ee479bc7d9", - "Body" : "{\r\n \"name\": \"vm37921e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm37921e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"f0b2208a-dae0-4463-b15c-1ea70c1f5f5e\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"credativ\",\r\n \"offer\": \"Debian\",\r\n \"sku\": \"9\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9.20200722.0\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm37921e_OsDisk_1_422c64af949b492bb341b888f9646989\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm37921e_OsDisk_1_422c64af949b492bb341b888f9646989\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm37921e\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm37921ee6895661\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:28 GMT", + "x-ms-correlation-request-id" : "400d22f8-ec95-4d96-b0dc-07b6a1e4a4c1", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29954", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103828Z:400d22f8-ec95-4d96-b0dc-07b6a1e4a4c1", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "8ef820d1-c90e-4a78-b62f-24b3946593ce", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.4340905+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4601d46b-1506-400f-8d4d-24d8dbe4c29e\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/b5d91266-fc3b-405e-bdef-68c9c521c624?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4f2897e9-0c51-4068-a38d-962f2227e6b0?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5ee5f432-4b1f-4d85-9b54-46ec87b8b2be" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:58:51 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7570", + "x-ms-ratelimit-remaining-subscription-reads" : "11944", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8f10fca2-d7d5-4134-9949-f72c53e7a62c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29954", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075852Z:8f10fca2-d7d5-4134-9949-f72c53e7a62c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "92904955-ab7a-47dd-a999-9a4493676b96", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:37.0220105+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b5d91266-fc3b-405e-bdef-68c9c521c624\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:28 GMT", + "x-ms-correlation-request-id" : "3bc97d96-855d-4f02-9e1a-a4fd8409d283", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29953", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103828Z:3bc97d96-855d-4f02-9e1a-a4fd8409d283", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "6547774c-601c-47c1-948b-3d504cefeed7", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.7309273+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f2897e9-0c51-4068-a38d-962f2227e6b0\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/c7777332-a4e2-43b3-a35f-d1ad33f35ab6?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "618ba012-7d32-4254-9f20-449ce23ec539" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:58:54 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7549", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d3406972-6245-4f44-ad85-0ddc56f45d12", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", + "Date" : "Wed, 12 Aug 2020 10:38:28 GMT", + "x-ms-correlation-request-id" : "df08a9c3-424a-48f1-8efa-2834a0d2c13e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29952", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103828Z:df08a9c3-424a-48f1-8efa-2834a0d2c13e", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "beeeac24-4178-45c4-b900-93f6ce1f778f", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/769b9c60-6e1f-4057-947d-90dbf8efa842?api-version=2019-12-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5ce1d41a-3c68-4953-8c17-5ab9376dc438" + }, + "Response" : { + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11943", + "StatusCode" : "200", + "Date" : "Wed, 12 Aug 2020 10:38:30 GMT", + "x-ms-correlation-request-id" : "48fb4df2-e5ed-44da-b59e-6b7b2c1fdf6a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29951", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075855Z:d3406972-6245-4f44-ad85-0ddc56f45d12", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f1ccccc0-3fca-4e81-8266-1775a027e679", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:59.5535522+00:00\",\r\n \"endTime\": \"2020-07-28T07:58:52.1479653+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c7777332-a4e2-43b3-a35f-d1ad33f35ab6\"\r\n}" - } + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103830Z:48fb4df2-e5ed-44da-b59e-6b7b2c1fdf6a", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "cc37ae4c-e274-4a9e-921f-1a0273734def", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.6215322+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"769b9c60-6e1f-4057-947d-90dbf8efa842\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/6da82bbe-6620-4902-a911-c79e6718757e?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/8f86bd0b-44c9-4c3d-b0a8-adfef5fd3e07?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "41d2202e-2295-4d21-8d80-41f0e2f52ce9" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:58:55 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5829", + "x-ms-ratelimit-remaining-subscription-reads" : "11942", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1130c9e3-f497-4712-a536-67697b607162", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29949", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075856Z:1130c9e3-f497-4712-a536-67697b607162", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "da999ac7-cbbe-4651-b725-6f04999198c0", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:11.5060728+00:00\",\r\n \"endTime\": \"2020-07-28T07:58:27.8195564+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"6da82bbe-6620-4902-a911-c79e6718757e\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:43 GMT", + "x-ms-correlation-request-id" : "12d34f6f-4a3f-49a0-8f56-35bd0654d1dd", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29948", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103844Z:12d34f6f-4a3f-49a0-8f56-35bd0654d1dd", + "Expires" : "-1", + "Content-Length" : "184", + "x-ms-request-id" : "ccb9fef0-adf8-4e4f-b7af-13b14b4d40b1", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0590977+00:00\",\r\n \"endTime\": \"2020-08-12T10:38:28.3257527+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8f86bd0b-44c9-4c3d-b0a8-adfef5fd3e07\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/7780afa8-01a3-448d-a34a-1058013b2911?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/cfd9c9e8-d30b-4265-bc60-7a72c313e3b7?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "08658df8-4dd3-45ca-9e14-a1e7a1c967c4" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:58:59 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4449", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c9699c70-2485-4119-8c9d-00448de52505", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29946", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075859Z:c9699c70-2485-4119-8c9d-00448de52505", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6607c401-89f7-4dc0-9cfe-650273ff2adf", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:58.3504009+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"7780afa8-01a3-448d-a34a-1058013b2911\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:43 GMT", + "x-ms-correlation-request-id" : "1f22a7fa-bfc9-48a1-9773-7f08217d76d6", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29947", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103844Z:1f22a7fa-bfc9-48a1-9773-7f08217d76d6", + "Expires" : "-1", + "Content-Length" : "183", + "x-ms-request-id" : "4eafe8f1-081e-4cf9-831a-515b1c934e86", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.6684311+00:00\",\r\n \"endTime\": \"2020-08-12T10:38:22.027747+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cfd9c9e8-d30b-4265-bc60-7a72c313e3b7\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm843423?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm522002?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c692afd6-6d9b-4b78-a12d-a69e8d360995" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:04 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1759", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4391", + "x-ms-ratelimit-remaining-subscription-reads" : "11940", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "eff1be38-829b-4af4-aa72-874b4aa27c5a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3966,Microsoft.Compute/LowCostGet30Min;31966", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075904Z:eff1be38-829b-4af4-aa72-874b4aa27c5a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d85cb893-2349-4b41-9a74-564caff812e7", - "Body" : "{\r\n \"name\": \"vm843423\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm843423\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ab6da76a-9600-4148-b0a8-989a798359d2\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"18.04.202007160\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm843423_OsDisk_1_5295dce772d0401494aa371acdcf245f\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm843423_OsDisk_1_5295dce772d0401494aa371acdcf245f\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm843423\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm8434231ed96034\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:44 GMT", + "x-ms-correlation-request-id" : "d1c7d1b9-23c9-40ef-b3be-dbb93b63808e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3976,Microsoft.Compute/LowCostGet30Min;31976", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103844Z:d1c7d1b9-23c9-40ef-b3be-dbb93b63808e", + "Expires" : "-1", + "Content-Length" : "1740", + "x-ms-request-id" : "6f8aeefc-5c19-43a0-affb-09061cd0603c", + "Body" : "{\r\n \"name\": \"vm522002\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm522002\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9c73abbc-beb1-4f6f-8d69-9df483546ca1\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"openSUSE-Leap\",\r\n \"sku\": \"15-1\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"2019.06.18\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm522002_OsDisk_1_0c9b4df757de458d8afcaae25ceacae0\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm522002_OsDisk_1_0c9b4df757de458d8afcaae25ceacae0\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm522002\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic514531f7111\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4818ee8a-8053-42c1-be82-c5a3a2c9cbe0?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm565448?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "712c56af-0f67-4b3b-ae55-cff5b2d58249" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4305", + "x-ms-ratelimit-remaining-subscription-reads" : "11940", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0145cfda-87ca-40d6-85c5-81eda1049969", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29942", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075911Z:0145cfda-87ca-40d6-85c5-81eda1049969", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9a54d392-0968-40af-a925-85c7c4b3854d", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:12.4279409+00:00\",\r\n \"endTime\": \"2020-07-28T07:58:49.1010594+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4818ee8a-8053-42c1-be82-c5a3a2c9cbe0\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:44 GMT", + "x-ms-correlation-request-id" : "efc21b0c-9953-4bcf-bdbf-25e2e9e54de3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3975,Microsoft.Compute/LowCostGet30Min;31975", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103844Z:efc21b0c-9953-4bcf-bdbf-25e2e9e54de3", + "Expires" : "-1", + "Content-Length" : "1738", + "x-ms-request-id" : "2f598bd1-3c73-42fe-8fcd-cb7c35fb7bd8", + "Body" : "{\r\n \"name\": \"vm565448\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm565448\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"4340451c-746a-405d-a967-019bec207cb8\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"sles-15-sp1\",\r\n \"sku\": \"gen1\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"2020.06.10\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm565448_OsDisk_1_0b89ddcb28274b7686eb4e8429b3c28d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm565448_OsDisk_1_0b89ddcb28274b7686eb4e8429b3c28d\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm565448\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic299826df37d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm54046d?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/9888bc0a-8aa7-44cc-b1ad-c9085751c642?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0f56ba46-b671-490a-8d97-0c76d763c103" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1743", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5666", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dc328095-4aa7-40c5-a625-9f86d4976b3b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3963,Microsoft.Compute/LowCostGet30Min;31963", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075911Z:dc328095-4aa7-40c5-a625-9f86d4976b3b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "35d12d87-7a40-454b-be2a-61a15c518fcf", - "Body" : "{\r\n \"name\": \"vm54046d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm54046d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"534cc59d-04a0-429b-bd1e-8d4dc2ca0a27\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"SUSE\",\r\n \"offer\": \"sles-15-sp1\",\r\n \"sku\": \"gen1\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"2020.06.10\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm54046d_OsDisk_1_37511ff0b8b84e0a832ece274ab9fcf6\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm54046d_OsDisk_1_37511ff0b8b84e0a832ece274ab9fcf6\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm54046d\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm54046d59996856\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:44 GMT", + "x-ms-correlation-request-id" : "a31d2a56-321c-407a-b9ea-f8b94e9104dc", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29946", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103845Z:a31d2a56-321c-407a-b9ea-f8b94e9104dc", + "Expires" : "-1", + "Content-Length" : "184", + "x-ms-request-id" : "ad6401f3-81da-412b-818a-d8dcb10d15f3", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.9184133+00:00\",\r\n \"endTime\": \"2020-08-12T10:38:39.2933984+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9888bc0a-8aa7-44cc-b1ad-c9085751c642\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/38bbd4ba-dd35-4a0c-967f-ba3840e0b20c?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm04945e?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "8fbb82a0-8424-4df2-b597-aa199498211e" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "182", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4293", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d2dba164-bdb9-4b18-8a8c-0b7e30449761", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14938,Microsoft.Compute/GetOperation30Min;29938", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075912Z:d2dba164-bdb9-4b18-8a8c-0b7e30449761", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d3714e3c-d6ba-4823-b70f-fb866573fbea", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:56.7097415+00:00\",\r\n \"endTime\": \"2020-07-28T07:58:52.13235+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"38bbd4ba-dd35-4a0c-967f-ba3840e0b20c\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:45 GMT", + "x-ms-correlation-request-id" : "ebd744ac-2b47-424c-97d3-467abbc35b49", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3974,Microsoft.Compute/LowCostGet30Min;31974", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103845Z:ebd744ac-2b47-424c-97d3-467abbc35b49", + "Expires" : "-1", + "Content-Length" : "1736", + "x-ms-request-id" : "31d90d7b-e3b6-4308-b510-04f9cf2f4d88", + "Body" : "{\r\n \"name\": \"vm04945e\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm04945e\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"05685074-637e-4e24-8fa1-7e2053922383\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"8.2\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"8.2.2020050811\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm04945e_OsDisk_1_97ee17e6c7144a9e8921dd1e3421484d\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm04945e_OsDisk_1_97ee17e6c7144a9e8921dd1e3421484d\"\r\n },\r\n \"diskSizeGB\": 64\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm04945e\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic758068060a2\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/17f4f018-ebd3-46bf-8d49-ebb0072315cb?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/274f0f3a-1ebf-4590-929d-a0911f0cb2b8?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c42200fe-1605-451d-a79e-41ea95002ef5" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:11 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4288", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c2c1a249-77c8-411b-8635-de2017fb29b1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14937,Microsoft.Compute/GetOperation30Min;29937", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075912Z:c2c1a249-77c8-411b-8635-de2017fb29b1", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6ca357ac-2c5a-4908-9560-4f9416fa2a61", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:09.5841528+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"17f4f018-ebd3-46bf-8d49-ebb0072315cb\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:58 GMT", + "x-ms-correlation-request-id" : "8b5f8a9b-50ba-4a0b-9892-14f89cd25cc8", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14941,Microsoft.Compute/GetOperation30Min;29941", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103858Z:8b5f8a9b-50ba-4a0b-9892-14f89cd25cc8", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "af6c8407-e2eb-4229-b750-79cdcc743132", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.2778059+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"274f0f3a-1ebf-4590-929d-a0911f0cb2b8\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/439082e6-14ae-4b47-8b5f-6af0eedd0a2e?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4601d46b-1506-400f-8d4d-24d8dbe4c29e?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "dea47956-41a3-483b-bba6-32ee6c94a104" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:15 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4261", + "x-ms-ratelimit-remaining-subscription-reads" : "11939", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f57db752-0833-4851-ac1a-a8f2c4d3e8cc", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14933,Microsoft.Compute/GetOperation30Min;29933", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075916Z:f57db752-0833-4851-ac1a-a8f2c4d3e8cc", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c84e3cb6-d882-4288-837f-620a534c7b0b", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:49.7565459+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"439082e6-14ae-4b47-8b5f-6af0eedd0a2e\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:58 GMT", + "x-ms-correlation-request-id" : "7e0cd7f0-2a30-4af1-98ef-c1d30a65e5c5", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14940,Microsoft.Compute/GetOperation30Min;29940", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103858Z:7e0cd7f0-2a30-4af1-98ef-c1d30a65e5c5", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "75666d35-59c0-4e91-a4ef-dcbb72c901c3", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.4340905+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4601d46b-1506-400f-8d4d-24d8dbe4c29e\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/b9a144af-50df-4b3c-b505-2f0672fa652c?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4f2897e9-0c51-4068-a38d-962f2227e6b0?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d4f9a6a0-e5f1-4849-acb2-b378e930d2ec" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:16 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7398", + "x-ms-ratelimit-remaining-subscription-reads" : "11938", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7e471bc2-1001-4e20-ba56-08ad55a6766d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14932,Microsoft.Compute/GetOperation30Min;29932", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075916Z:7e471bc2-1001-4e20-ba56-08ad55a6766d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "479d6b9e-ee6c-4efc-b397-93f49bd59b6d", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:45.8807416+00:00\",\r\n \"endTime\": \"2020-07-28T07:58:58.1792993+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b9a144af-50df-4b3c-b505-2f0672fa652c\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:58 GMT", + "x-ms-correlation-request-id" : "ce175783-8b23-4888-a9ce-0b2195fcea60", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14938,Microsoft.Compute/GetOperation30Min;29938", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103859Z:ce175783-8b23-4888-a9ce-0b2195fcea60", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "afcfd898-da71-4db7-89b3-1b114828d338", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.7309273+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"4f2897e9-0c51-4068-a38d-962f2227e6b0\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm793221?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3339492d-ffc7-45b8-9094-8f7e7e17c312" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:20 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1746", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4174", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fcb87e2a-4695-4f47-b412-cc59688a34b6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3950,Microsoft.Compute/LowCostGet30Min;31950", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075920Z:fcb87e2a-4695-4f47-b412-cc59688a34b6", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "62076cce-2c8e-429d-b41e-5bef8b64fc77", - "Body" : "{\r\n \"name\": \"vm793221\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm793221\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"d32c3c83-8714-4ac9-81a0-1e351af5b6ff\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"OpenLogic\",\r\n \"offer\": \"CentOS\",\r\n \"sku\": \"8_1\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"8.1.2020062400\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm793221_OsDisk_1_70e006eaa96e4abfb008340dbd83bc38\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm793221_OsDisk_1_70e006eaa96e4abfb008340dbd83bc38\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm793221\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm79322165841179\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:38:59 GMT", + "x-ms-correlation-request-id" : "e7b0ead5-3796-4348-b9b8-c47bf835c356", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14937,Microsoft.Compute/GetOperation30Min;29937", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103859Z:e7b0ead5-3796-4348-b9b8-c47bf835c356", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "92adb189-ef53-4105-9dde-4f78499a7dd9", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bef7b92f-3c2a-4a26-a30a-a177baedf7dc?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/769b9c60-6e1f-4057-947d-90dbf8efa842?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "cf24d28b-8248-4666-b806-119e675776e7" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:21 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4158", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a007a99c-3dab-4260-b86b-1a218663dc69", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14930,Microsoft.Compute/GetOperation30Min;29930", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075922Z:a007a99c-3dab-4260-b86b-1a218663dc69", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1b932c8b-43e3-4dfc-b705-53214bd0ff31", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:33.5212003+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bef7b92f-3c2a-4a26-a30a-a177baedf7dc\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:39:00 GMT", + "x-ms-correlation-request-id" : "5bc671ff-f6b9-451f-a457-bc40b0e65984", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14936,Microsoft.Compute/GetOperation30Min;29936", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103900Z:5bc671ff-f6b9-451f-a457-bc40b0e65984", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "2b1519aa-ac7c-4a96-882b-b209bbe2eb44", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.6215322+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"769b9c60-6e1f-4057-947d-90dbf8efa842\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm00034c?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/274f0f3a-1ebf-4590-929d-a0911f0cb2b8?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a16f1b9c-e724-495c-a927-4d87381e951c" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:25 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1782", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5508", + "x-ms-ratelimit-remaining-subscription-reads" : "11937", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f19a7e9f-9435-47e9-870f-958bacffaef1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3949,Microsoft.Compute/LowCostGet30Min;31949", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075926Z:f19a7e9f-9435-47e9-870f-958bacffaef1", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1aa73941-5807-45b6-b417-d27b80d1d5dd", - "Body" : "{\r\n \"name\": \"vm00034c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm00034c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"42d2b339-7c79-4f13-8f3d-966634917c23\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.1339.2007101755\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm00034c_OsDisk_1_54a680711a1b47e8bd606fbfcb277de7\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm00034c_OsDisk_1_54a680711a1b47e8bd606fbfcb277de7\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm00034c\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm00034c39543765\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:39:28 GMT", + "x-ms-correlation-request-id" : "cef451de-acb8-46a9-b186-f0b32149de3d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14932,Microsoft.Compute/GetOperation30Min;29932", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103929Z:cef451de-acb8-46a9-b186-f0b32149de3d", + "Expires" : "-1", + "Content-Length" : "184", + "x-ms-request-id" : "0847624b-0b03-4705-88fe-1ac1b604fe6b", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.2778059+00:00\",\r\n \"endTime\": \"2020-08-12T10:39:16.7934015+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"274f0f3a-1ebf-4590-929d-a0911f0cb2b8\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm12456b?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4601d46b-1506-400f-8d4d-24d8dbe4c29e?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c58cdb47-9144-4f6b-9d13-49ddd0cbeda1" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:27 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1741", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5495", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "434f70d1-c5ea-482b-8c9c-ab4f32d80cad", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3948,Microsoft.Compute/LowCostGet30Min;31948", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075927Z:434f70d1-c5ea-482b-8c9c-ab4f32d80cad", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e4d08e66-db85-476b-bd33-8e5d5a1f0d35", - "Body" : "{\r\n \"name\": \"vm12456b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm12456b\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"9008a588-e75f-475c-9979-fd3829ddecd7\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"8.2\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"8.2.2020050811\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm12456b_OsDisk_1_25610276873e4be4903279ac9a6b82a7\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm12456b_OsDisk_1_25610276873e4be4903279ac9a6b82a7\"\r\n },\r\n \"diskSizeGB\": 64\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm12456b\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm12456b3d573940\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:39:28 GMT", + "x-ms-correlation-request-id" : "26493ad6-1cc6-4323-8acb-34e8110ff28d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14931,Microsoft.Compute/GetOperation30Min;29931", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103929Z:26493ad6-1cc6-4323-8acb-34e8110ff28d", + "Expires" : "-1", + "Content-Length" : "184", + "x-ms-request-id" : "f134fff0-4af5-475d-9ac6-02834b256947", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.4340905+00:00\",\r\n \"endTime\": \"2020-08-12T10:39:07.7152822+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4601d46b-1506-400f-8d4d-24d8dbe4c29e\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/b5d91266-fc3b-405e-bdef-68c9c521c624?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm083090?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "197cf1d0-bf8c-42c3-87ff-1191597ce36c" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:31 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5443", + "x-ms-ratelimit-remaining-subscription-reads" : "11935", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d40e52b9-d644-450f-abda-3d5157a3ee6d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14927,Microsoft.Compute/GetOperation30Min;29926", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075932Z:d40e52b9-d644-450f-abda-3d5157a3ee6d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e042544c-80ff-42a5-b210-30d84e2f7468", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:37.0220105+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b5d91266-fc3b-405e-bdef-68c9c521c624\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:39:28 GMT", + "x-ms-correlation-request-id" : "574a788e-f179-4349-861c-164f601c93cc", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3966,Microsoft.Compute/LowCostGet30Min;31966", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103929Z:574a788e-f179-4349-861c-164f601c93cc", + "Expires" : "-1", + "Content-Length" : "1777", + "x-ms-request-id" : "580885d3-fa71-41ca-bf30-6d8d07d35f7c", + "Body" : "{\r\n \"name\": \"vm083090\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm083090\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"221ecd2f-732a-4723-8d39-1ae7c81ba17b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.1339.2007101755\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm083090_OsDisk_1_8cb3979d6a524161900e027086ee3263\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm083090_OsDisk_1_8cb3979d6a524161900e027086ee3263\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm083090\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic83223eea084\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm398536?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/4f2897e9-0c51-4068-a38d-962f2227e6b0?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "53ca622a-7af5-4494-945d-0434d4e978c6" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1745", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4017", + "x-ms-ratelimit-remaining-subscription-reads" : "11934", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "348cf103-196d-4d0e-8c18-917b31f5feb3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3946,Microsoft.Compute/LowCostGet30Min;31946", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075933Z:348cf103-196d-4d0e-8c18-917b31f5feb3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "8d365b08-f49e-4570-b3f2-fcc095831555", - "Body" : "{\r\n \"name\": \"vm398536\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm398536\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"30d0f89a-41a5-46b3-be7b-2040678ad227\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Debian\",\r\n \"offer\": \"debian-10\",\r\n \"sku\": \"10\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"0.20200610.293\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm398536_OsDisk_1_74629bd474af43f5809b1c41c6485bb1\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm398536_OsDisk_1_74629bd474af43f5809b1c41c6485bb1\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm398536\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm39853639b82681\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:39:28 GMT", + "x-ms-correlation-request-id" : "9afa1212-3237-4955-b210-f3c475535236", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14930,Microsoft.Compute/GetOperation30Min;29930", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103929Z:9afa1212-3237-4955-b210-f3c475535236", + "Expires" : "-1", + "Content-Length" : "184", + "x-ms-request-id" : "991d2220-18aa-4d1c-9eeb-c7f046079fd8", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:56.7309273+00:00\",\r\n \"endTime\": \"2020-08-12T10:39:07.7152822+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"4f2897e9-0c51-4068-a38d-962f2227e6b0\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/7780afa8-01a3-448d-a34a-1058013b2911?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "2ecb91fc-ae44-466b-91bd-250a49f3ef77" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:38 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "183", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5378", + "x-ms-ratelimit-remaining-subscription-reads" : "11934", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bcea1f8e-6764-4ed8-8060-28bf81014c74", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14925,Microsoft.Compute/GetOperation30Min;29924", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075938Z:bcea1f8e-6764-4ed8-8060-28bf81014c74", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "8032bb68-df2b-4372-8287-e9556391afba", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:58.3504009+00:00\",\r\n \"endTime\": \"2020-07-28T07:59:09.335718+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"7780afa8-01a3-448d-a34a-1058013b2911\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:39:29 GMT", + "x-ms-correlation-request-id" : "a0ee0179-fe33-4d01-bb42-d0dade54d2c0", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14929,Microsoft.Compute/GetOperation30Min;29929", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103929Z:a0ee0179-fe33-4d01-bb42-d0dade54d2c0", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "7ca2f610-fc0b-4d18-a315-c7d9b50e0cb3", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm91630b?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm517785?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "59d1d556-455b-4664-98a3-8e39b92a3354" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:40 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1739", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5355", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9d5974c2-8b22-4891-bb6c-2f6464387143", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3944,Microsoft.Compute/LowCostGet30Min;31944", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075940Z:9d5974c2-8b22-4891-bb6c-2f6464387143", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "073792ad-b221-4ad0-8c40-48683179c828", - "Body" : "{\r\n \"name\": \"vm91630b\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm91630b\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"ca5a8c0c-e7df-46e6-bc22-e9a1c55df61b\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Oracle\",\r\n \"offer\": \"Oracle-Linux\",\r\n \"sku\": \"81\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"8.1.2\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vm91630b_OsDisk_1_02953acce20f489499a72fb959dcbfd8\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm91630b_OsDisk_1_02953acce20f489499a72fb959dcbfd8\"\r\n },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm91630b\",\r\n \"adminUsername\": \"testUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm91630b6ca21232\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:39:28 GMT", + "x-ms-correlation-request-id" : "4e8ef84c-9bbf-44db-bdfd-fe1c63676f25", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3965,Microsoft.Compute/LowCostGet30Min;31965", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103929Z:4e8ef84c-9bbf-44db-bdfd-fe1c63676f25", + "Expires" : "-1", + "Content-Length" : "1777", + "x-ms-request-id" : "af804405-51d2-4909-a6b7-2d0eabf13613", + "Body" : "{\r\n \"name\": \"vm517785\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm517785\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"2244d517-c04f-4d66-8dc3-1d5fe3503a05\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.3808.2007101707\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm517785_OsDisk_1_de801446d55c4037a5a1cdad4cd91a53\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm517785_OsDisk_1_de801446d55c4037a5a1cdad4cd91a53\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm517785\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic42289a0a68b\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/17f4f018-ebd3-46bf-8d49-ebb0072315cb?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm27948c?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "27e1d059-8ed1-435a-8dd9-64c85d22090a" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5320", + "x-ms-ratelimit-remaining-subscription-reads" : "11933", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b9934edd-1222-460a-9ae0-f04608008646", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14924,Microsoft.Compute/GetOperation30Min;29923", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075944Z:b9934edd-1222-460a-9ae0-f04608008646", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "12f1ca50-e5f3-4811-9170-6d738166fa13", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:09.5841528+00:00\",\r\n \"endTime\": \"2020-07-28T07:59:13.4138796+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"17f4f018-ebd3-46bf-8d49-ebb0072315cb\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:39:29 GMT", + "x-ms-correlation-request-id" : "c79c7bda-ab5b-460f-b4e6-90d07eb20683", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3964,Microsoft.Compute/LowCostGet30Min;31964", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103929Z:c79c7bda-ab5b-460f-b4e6-90d07eb20683", + "Expires" : "-1", + "Content-Length" : "1780", + "x-ms-request-id" : "a74139f5-a63a-4164-b240-509cb1285bf3", + "Body" : "{\r\n \"name\": \"vm27948c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm27948c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"5d96d318-2962-4836-8ca1-14333beef157\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.19756.2007111612\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm27948c_OsDisk_1_521aa7c055964da6951eb25d1292df94\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm27948c_OsDisk_1_521aa7c055964da6951eb25d1292df94\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm27948c\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic0200828439d\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/439082e6-14ae-4b47-8b5f-6af0eedd0a2e?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/769b9c60-6e1f-4057-947d-90dbf8efa842?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6a10bf6b-d65c-4c67-928e-eb57b356bf96" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:47 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5284", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "137c6bf2-82c3-4d60-905e-41c139e20cfc", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14922,Microsoft.Compute/GetOperation30Min;29921", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075947Z:137c6bf2-82c3-4d60-905e-41c139e20cfc", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a134450d-3c40-4f98-bced-746ef84833ba", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:49.7565459+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"439082e6-14ae-4b47-8b5f-6af0eedd0a2e\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:39:30 GMT", + "x-ms-correlation-request-id" : "0b7bcdb3-0474-4b0c-b90c-d4ecfc6cb108", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14928,Microsoft.Compute/GetOperation30Min;29928", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103931Z:0b7bcdb3-0474-4b0c-b90c-d4ecfc6cb108", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "d37ad03b-24b0-4fc8-90b8-64954ebd3605", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.6215322+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"769b9c60-6e1f-4057-947d-90dbf8efa842\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bef7b92f-3c2a-4a26-a30a-a177baedf7dc?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "8deee0eb-a8f9-4502-972d-d63d765e7e63" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:52 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7156", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "84fb149b-fe80-4675-9c0f-d208cfd813d4", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14919,Microsoft.Compute/GetOperation30Min;29918", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075952Z:84fb149b-fe80-4675-9c0f-d208cfd813d4", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a8bc54c8-7640-4484-8738-e073ef542993", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:33.5212003+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bef7b92f-3c2a-4a26-a30a-a177baedf7dc\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:39:59 GMT", + "x-ms-correlation-request-id" : "8d019ab2-9738-45d6-bacf-155b4b35ee21", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14927,Microsoft.Compute/GetOperation30Min;29927", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T103959Z:8d019ab2-9738-45d6-bacf-155b4b35ee21", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "4df86cb8-6d73-4316-80b3-95b5856a4612", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm38208d?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/769b9c60-6e1f-4057-947d-90dbf8efa842?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "84d47063-400f-4e6b-a097-d1d7e3ed1c83" }, "Response" : { - "date" : "Tue, 28 Jul 2020 07:59:54 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1782", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "3809", + "x-ms-ratelimit-remaining-subscription-reads" : "11974", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e96418e9-8261-4668-b82e-3bec1985c475", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3939,Microsoft.Compute/LowCostGet30Min;31939", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T075954Z:e96418e9-8261-4668-b82e-3bec1985c475", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6548d3f0-792b-43d9-adae-8de7a2be597c", - "Body" : "{\r\n \"name\": \"vm38208d\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm38208d\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"63c428cb-1853-48e4-8532-5a7d33fb3807\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"14393.3808.2007101707\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm38208d_OsDisk_1_96ab778a8a0e4966a3de831c3223f9e7\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm38208d_OsDisk_1_96ab778a8a0e4966a3de831c3223f9e7\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm38208d\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm38208d82127342\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:40:00 GMT", + "x-ms-correlation-request-id" : "29d62fc2-f0f3-4be1-b489-a1a3aab5511e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14940,Microsoft.Compute/GetOperation30Min;29926", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T104001Z:29d62fc2-f0f3-4be1-b489-a1a3aab5511e", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "85a98f96-268c-46a8-adc2-3dc6d570903c", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.6215322+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"769b9c60-6e1f-4057-947d-90dbf8efa842\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/b5d91266-fc3b-405e-bdef-68c9c521c624?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "463c3338-f458-4c77-9a9b-f13795c447d9" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:00:10 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6637", + "x-ms-ratelimit-remaining-subscription-reads" : "11932", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b699715f-099d-4ba3-9c38-6ed899dc8cc2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14925,Microsoft.Compute/GetOperation30Min;29914", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080010Z:b699715f-099d-4ba3-9c38-6ed899dc8cc2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4863830d-016b-4b3f-a37d-1be3c026963b", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:37.0220105+00:00\",\r\n \"endTime\": \"2020-07-28T07:59:37.6656927+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b5d91266-fc3b-405e-bdef-68c9c521c624\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:40:29 GMT", + "x-ms-correlation-request-id" : "b538407a-8086-49e4-87fa-3a8d47ce871a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14954,Microsoft.Compute/GetOperation30Min;29924", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T104030Z:b538407a-8086-49e4-87fa-3a8d47ce871a", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "2aed733d-2af0-4efa-8376-5f001f06b18b", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm03203c?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/769b9c60-6e1f-4057-947d-90dbf8efa842?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "da6cd349-2b8f-4b9e-8674-2fff047bd269" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:00:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1785", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6914", + "x-ms-ratelimit-remaining-subscription-reads" : "11931", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "66c6f1c8-cdc9-4ea2-95c9-8f5c71a7753d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3936,Microsoft.Compute/LowCostGet30Min;31935", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080018Z:66c6f1c8-cdc9-4ea2-95c9-8f5c71a7753d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "83a73288-7f8f-40c5-92d2-825f167198f0", - "Body" : "{\r\n \"name\": \"vm03203c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm03203c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"47989b7a-28c3-4676-b985-6d7b28dee98d\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"9600.19756.2007111612\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm03203c_OsDisk_1_3144fe56586a4954bbf6ecb2613dcf27\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm03203c_OsDisk_1_3144fe56586a4954bbf6ecb2613dcf27\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm03203c\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm03203c37d03361\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:40:30 GMT", + "x-ms-correlation-request-id" : "2e3b25d9-1c94-4c42-a0dd-b3c35dc77990", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14953,Microsoft.Compute/GetOperation30Min;29923", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T104031Z:2e3b25d9-1c94-4c42-a0dd-b3c35dc77990", + "Expires" : "-1", + "Content-Length" : "183", + "x-ms-request-id" : "826e5b75-09c6-4625-965c-67fafcc77072", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.6215322+00:00\",\r\n \"endTime\": \"2020-08-12T10:40:06.418416+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"769b9c60-6e1f-4057-947d-90dbf8efa842\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/439082e6-14ae-4b47-8b5f-6af0eedd0a2e?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm23539c?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6964581b-12c6-4a0c-a9f8-df6ed6560d5e" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:00:18 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "7514", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "231604b8-1b9b-4fe4-a4a6-a2458d77c5da", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14920,Microsoft.Compute/GetOperation30Min;29909", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080018Z:231604b8-1b9b-4fe4-a4a6-a2458d77c5da", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0e601616-2015-447f-a901-ebad8e2a5ffc", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:49.7565459+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"439082e6-14ae-4b47-8b5f-6af0eedd0a2e\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:40:31 GMT", + "x-ms-correlation-request-id" : "4db048a4-cf37-4062-8e44-6733121d161e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3964,Microsoft.Compute/LowCostGet30Min;31961", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T104031Z:4db048a4-cf37-4062-8e44-6733121d161e", + "Expires" : "-1", + "Content-Length" : "1793", + "x-ms-request-id" : "fa98225e-89f7-4aaf-9f50-602f5fc8cb38", + "Body" : "{\r\n \"name\": \"vm23539c\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm23539c\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8208e065-ee51-4862-8d97-e2dedd3ddcb2\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter-with-Containers\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.1339.2007101755\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm23539c_OsDisk_1_16637a2db8e149e5ae5d5d5e0ccec3ab\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm23539c_OsDisk_1_16637a2db8e149e5ae5d5d5e0ccec3ab\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm23539c\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic92104086355\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bef7b92f-3c2a-4a26-a30a-a177baedf7dc?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a12ee2b3-1b65-487f-bbb4-a90e7a1bf2ed" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:00:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "6445", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bf9abba4-9327-434c-b88b-49ec5d0ddb7c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14915,Microsoft.Compute/GetOperation30Min;29904", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080025Z:bf9abba4-9327-434c-b88b-49ec5d0ddb7c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "99e2b894-79fb-4aed-b720-16c5f9493175", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:33.5212003+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bef7b92f-3c2a-4a26-a30a-a177baedf7dc\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:41:00 GMT", + "x-ms-correlation-request-id" : "f2c32307-f712-4849-8f2d-055262caab63", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14969,Microsoft.Compute/GetOperation30Min;29921", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T104100Z:f2c32307-f712-4849-8f2d-055262caab63", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "af8bbf6d-fa33-4902-9f6c-0ca7e0c0efc5", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bef7b92f-3c2a-4a26-a30a-a177baedf7dc?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "04d80ee4-a66f-4509-af6d-dcf7a19950c7" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:01:29 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "8460", + "x-ms-ratelimit-remaining-subscription-reads" : "11930", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4766ac8a-9c37-41c3-9880-84bb9eaea934", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14921,Microsoft.Compute/GetOperation30Min;29885", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080129Z:4766ac8a-9c37-41c3-9880-84bb9eaea934", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "741894a0-29cf-4386-87e2-7c821df896f6", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:33.5212003+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bef7b92f-3c2a-4a26-a30a-a177baedf7dc\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:41:29 GMT", + "x-ms-correlation-request-id" : "df6f95b1-4de9-44f9-8bbb-2363da643240", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29920", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T104130Z:df6f95b1-4de9-44f9-8bbb-2363da643240", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "51442fa8-e71b-48f9-afb2-9c4202826019", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bef7b92f-3c2a-4a26-a30a-a177baedf7dc?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e57baaec-847d-421a-87b3-6e1114762dfb" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:02:06 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "8190", + "x-ms-ratelimit-remaining-subscription-reads" : "11973", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "52ebd633-88b5-4eb5-91c0-b84872afef75", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29880", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080206Z:52ebd633-88b5-4eb5-91c0-b84872afef75", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c69ed1e9-fe91-4001-8169-51111873400a", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:33.5212003+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bef7b92f-3c2a-4a26-a30a-a177baedf7dc\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:42:00 GMT", + "x-ms-correlation-request-id" : "bdf612a2-050b-4b0b-956f-a83ac7a19ac2", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29919", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T104201Z:bdf612a2-050b-4b0b-956f-a83ac7a19ac2", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "257439b7-c6e1-4530-ab4a-50d3d737fbf6", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/439082e6-14ae-4b47-8b5f-6af0eedd0a2e?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d6dc203d-dee8-4fb0-a5f9-c8250812ce61" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:02:13 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "5026", + "x-ms-ratelimit-remaining-subscription-reads" : "11929", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2d42a868-44b5-4598-abdd-0f6cdee17322", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29877", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080213Z:2d42a868-44b5-4598-abdd-0f6cdee17322", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f251b0ac-0219-43b5-a024-c49c64b4b762", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:57:49.7565459+00:00\",\r\n \"endTime\": \"2020-07-28T08:00:54.7600533+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"439082e6-14ae-4b47-8b5f-6af0eedd0a2e\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:42:31 GMT", + "x-ms-correlation-request-id" : "83a1e481-17e6-4321-b6b4-91e2e9328121", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29918", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T104231Z:83a1e481-17e6-4321-b6b4-91e2e9328121", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "4f045bec-7aab-4df1-9165-9fa065a73183", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm738879?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ca20ae00-ef9b-4567-abbe-4412b8d3068d" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:02:40 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1798", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4666", + "x-ms-ratelimit-remaining-subscription-reads" : "11975", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fce6d8d6-a1a6-47b6-a30d-e97c2038f292", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3982,Microsoft.Compute/LowCostGet30Min;31921", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080240Z:fce6d8d6-a1a6-47b6-a30d-e97c2038f292", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "bfc8ae7b-8637-4f8a-920f-234ec38f9aca", - "Body" : "{\r\n \"name\": \"vm738879\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm738879\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"aa6b98db-478f-45b6-9a14-d877b872aee3\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2019-Datacenter-with-Containers\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"17763.1339.2007101755\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm738879_OsDisk_1_0fb93c7313294aa5b28e05771e9c240a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm738879_OsDisk_1_0fb93c7313294aa5b28e05771e9c240a\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm738879\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm73887950566279\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:43:01 GMT", + "x-ms-correlation-request-id" : "2dfc491f-7321-435d-8323-c5394fdf90a2", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14991,Microsoft.Compute/GetOperation30Min;29916", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T104301Z:2dfc491f-7321-435d-8323-c5394fdf90a2", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "f9bc544d-26eb-46d5-a9d2-cdc8e6784f3b", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bef7b92f-3c2a-4a26-a30a-a177baedf7dc?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4335fe4d-bdde-4985-886c-13587ea86a9f" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:02:49 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "134", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4536", + "x-ms-ratelimit-remaining-subscription-reads" : "11928", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0bfa5f6b-b51c-4825-853b-71d4d4dc0e36", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14957,Microsoft.Compute/GetOperation30Min;29875", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080250Z:0bfa5f6b-b51c-4825-853b-71d4d4dc0e36", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "70bdae80-78e2-4495-8f72-8a5d6386b5ca", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:33.5212003+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"bef7b92f-3c2a-4a26-a30a-a177baedf7dc\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:43:31 GMT", + "x-ms-correlation-request-id" : "2dc516f9-9535-448d-bbf3-f5722b740403", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29915", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T104331Z:2dc516f9-9535-448d-bbf3-f5722b740403", + "Expires" : "-1", + "Content-Length" : "134", + "x-ms-request-id" : "69fa07a2-6a1c-42e4-bd02-cb78a68bb8ae", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/bef7b92f-3c2a-4a26-a30a-a177baedf7dc?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/3b7d4311-a548-4601-9fee-1ab8073793de?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "94e4e2f7-5e6d-42a4-9d0c-99bbe0eb35af" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:03:24 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "184", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4077", + "x-ms-ratelimit-remaining-subscription-reads" : "11972", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f93cafb3-6acb-4c27-a8f4-8970576b11ef", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29869", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080325Z:f93cafb3-6acb-4c27-a8f4-8970576b11ef", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "01e64efa-4f2c-4887-ad79-3cc90c2272f4", - "Body" : "{\r\n \"startTime\": \"2020-07-28T07:56:33.5212003+00:00\",\r\n \"endTime\": \"2020-07-28T08:03:10.6829345+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"bef7b92f-3c2a-4a26-a30a-a177baedf7dc\"\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:44:01 GMT", + "x-ms-correlation-request-id" : "68410f32-6797-4313-aaf2-3e94c5b26106", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29913", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T104402Z:68410f32-6797-4313-aaf2-3e94c5b26106", + "Expires" : "-1", + "Content-Length" : "184", + "x-ms-request-id" : "1f8900b4-7c09-42e3-9ccd-7afeb212f5fd", + "Body" : "{\r\n \"startTime\": \"2020-08-12T10:36:57.0277943+00:00\",\r\n \"endTime\": \"2020-08-12T10:43:36.5277779+00:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"3b7d4311-a548-4601-9fee-1ab8073793de\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm454650?api-version=2019-12-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm102932?api-version=2019-12-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "bf59cb16-753b-4d79-9ee0-0691e4d52ba9" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:03:28 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1772", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "4022", + "x-ms-ratelimit-remaining-subscription-reads" : "11927", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5e96215a-37a7-4453-92d0-66a3734c17b8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3980,Microsoft.Compute/LowCostGet30Min;31912", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080329Z:5e96215a-37a7-4453-92d0-66a3734c17b8", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "5527f861-fc61-4eff-9d96-51b87211e349", - "Body" : "{\r\n \"name\": \"vm454650\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Compute/virtualMachines/vm454650\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"612d65e4-bbab-4846-bc47-1585a54d628f\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsDesktop\",\r\n \"offer\": \"Windows-10\",\r\n \"sku\": \"20h1-pro\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"19041.388.2007101729\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm454650_OsDisk_1_447d859ba756433abd00349b2dab0fa3\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG339749/providers/Microsoft.Compute/disks/vm454650_OsDisk_1_447d859ba756433abd00349b2dab0fa3\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm454650\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg339749/providers/Microsoft.Network/networkInterfaces/nicvm454650a9f33449\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}" - } + "Date" : "Wed, 12 Aug 2020 10:44:02 GMT", + "x-ms-correlation-request-id" : "511588f8-fd86-4525-ae08-990295940bfc", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-ratelimit-remaining-resource" : "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31958", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T104402Z:511588f8-fd86-4525-ae08-990295940bfc", + "Expires" : "-1", + "Content-Length" : "1767", + "x-ms-request-id" : "2b409e22-1a0a-4abc-93d3-617f62372027", + "Body" : "{\r\n \"name\": \"vm102932\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Compute/virtualMachines/vm102932\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"e6fb95d7-9753-4685-8a07-c256932a1a17\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_B1s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsDesktop\",\r\n \"offer\": \"Windows-10\",\r\n \"sku\": \"20h1-pro\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"19041.450.2008080726\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"vm102932_OsDisk_1_1e1adb2d3ef94be7908bcd75ea521cbc\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/RG125490/providers/Microsoft.Compute/disks/vm102932_OsDisk_1_1e1adb2d3ef94be7908bcd75ea521cbc\"\r\n },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm102932\",\r\n \"adminUsername\": \"testUser\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg125490/providers/Microsoft.Network/networkInterfaces/nic33319f5097a\",\"properties\":{\"primary\":true}}]},\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg339749?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg125490?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e7465a99-01f1-419c-a2be-dbbb5cc6ad38", "Content-Type" : "application/json" }, "Response" : { - "date" : "Tue, 28 Jul 2020 08:03:31 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14975", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "60d24be4-7501-4ac4-923f-821495387a60", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200728T080332Z:60d24be4-7501-4ac4-923f-821495387a60", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzMzOTc0OS1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "60d24be4-7501-4ac4-923f-821495387a60", - "Body" : "" - } + "Date" : "Wed, 12 Aug 2020 10:44:05 GMT", + "x-ms-correlation-request-id" : "6c5b93ee-6f57-485e-bab4-2bcb79dbad56", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "KOREASOUTH:20200812T104406Z:6c5b93ee-6f57-485e-bab4-2bcb79dbad56", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "6c5b93ee-6f57-485e-bab4-2bcb79dbad56", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzEyNTQ5MC1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2020-06-01" + }, + "Exception" : null } ], - "variables" : [ "vm454650", "nicvm454650a9f33449", "vnet76613186f4", "vm00034c", "nicvm00034c39543765", "vnet3286434862", "vm738879", "nicvm73887950566279", "vnet63350bd9ae", "vm38208d", "nicvm38208d82127342", "vnet6295412409", "vm03203c", "nicvm03203c37d03361", "vnet382968e1bd", "vm936330", "nicvm936330e3b15668", "vnet76063f4860", "vm843423", "nicvm8434231ed96034", "vnet5433527d80", "vm37921e", "nicvm37921ee6895661", "vnet93745a29ac", "vm398536", "nicvm39853639b82681", "vnet9197212487", "vm793221", "nicvm79322165841179", "vnet49407bfdd0", "vm573073", "nicvm5730733c404159", "vnet96626061fe", "vm54046d", "nicvm54046d59996856", "vnet58487fc518", "vm12456b", "nicvm12456b3d573940", "vnet5107984001", "vm91630b", "nicvm91630b6ca21232", "vnet1063963941" ] + "variables" : [ "rg125490", "vm102932", "nic33319f5097a", "vnet6064313e28", "vm083090", "nic83223eea084", "vnet61259fa1ff", "vm23539c", "nic92104086355", "vnet88972bc4e5", "vm517785", "nic42289a0a68b", "vnet89346cb21b", "vm27948c", "nic0200828439d", "vnet29013048b7", "vm710791", "nic24843cad856", "vnet1941477e27", "vm37062b", "nic78048e61c4e", "vnet78227e92c2", "vm32513e", "nic7097948b727", "vnet0130200ea0", "vm298071", "nic323272e0039", "vnet21104fb12d", "vm686769", "nic68701cef329", "vnet00325edc1d", "vm522002", "nic514531f7111", "vnet85080c1ce2", "vm565448", "nic299826df37d", "vnet1989715670", "vm04945e", "nic758068060a2", "vnet4771416f21", "vm667425", "nic97905350a55", "vnet1925985d5c" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-containerinstance/pom.xml b/sdk/resourcemanager/azure-resourcemanager-containerinstance/pom.xml index b1235453a41d..8158cf7d4bb9 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerinstance/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-containerinstance/pom.xml @@ -94,9 +94,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/ContainerInstanceManager.java b/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/ContainerInstanceManager.java index 91a2faed93a9..225023d8a640 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/ContainerInstanceManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/ContainerInstanceManager.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.storage.StorageManager; @@ -97,8 +97,9 @@ private ContainerInstanceManager(HttpPipeline httpPipeline, AzureProfile profile profile, new ContainerInstanceManagementClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); diff --git a/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/implementation/ContainerGroupImpl.java b/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/implementation/ContainerGroupImpl.java index fc17c487b271..7e5c6b25fe65 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/implementation/ContainerGroupImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/implementation/ContainerGroupImpl.java @@ -4,7 +4,7 @@ package com.azure.resourcemanager.containerinstance.implementation; import com.azure.core.management.Resource; -import com.azure.resourcemanager.authorization.implementation.RoleAssignmentHelper; +import com.azure.resourcemanager.authorization.utils.RoleAssignmentHelper; import com.azure.resourcemanager.authorization.models.BuiltInRole; import com.azure.resourcemanager.containerinstance.ContainerInstanceManager; import com.azure.resourcemanager.containerinstance.fluent.inner.ContainerGroupInner; diff --git a/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/implementation/ContainerGroupMsiHandler.java b/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/implementation/ContainerGroupMsiHandler.java index 77684ae92ac2..a656bf1b0407 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/implementation/ContainerGroupMsiHandler.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/com/azure/resourcemanager/containerinstance/implementation/ContainerGroupMsiHandler.java @@ -4,7 +4,7 @@ package com.azure.resourcemanager.containerinstance.implementation; import com.azure.core.util.logging.ClientLogger; -import com.azure.resourcemanager.authorization.implementation.RoleAssignmentHelper; +import com.azure.resourcemanager.authorization.utils.RoleAssignmentHelper; import com.azure.resourcemanager.containerinstance.fluent.inner.ContainerGroupInner; import com.azure.resourcemanager.containerinstance.models.ContainerGroupIdentity; import com.azure.resourcemanager.containerinstance.models.ContainerGroupIdentityUserAssignedIdentities; diff --git a/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/module-info.java new file mode 100644 index 000000000000..59f0df157b27 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/main/java/module-info.java @@ -0,0 +1,14 @@ +module com.azure.resourcemanager.containerinstance { + requires transitive com.azure.resourcemanager.storage; + requires transitive com.azure.resourcemanager.msi; + requires transitive com.azure.resourcemanager.network; + requires com.azure.storage.file.share; + + exports com.azure.resourcemanager.containerinstance; + exports com.azure.resourcemanager.containerinstance.fluent; + exports com.azure.resourcemanager.containerinstance.fluent.inner; + exports com.azure.resourcemanager.containerinstance.models; + + opens com.azure.resourcemanager.containerinstance.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.containerinstance.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/test/java/com/azure/resourcemanager/containerinstance/ContainerInstanceManagementTest.java b/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/test/java/com/azure/resourcemanager/containerinstance/ContainerInstanceManagementTest.java index 71335df27ad0..f9e51ceca935 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/test/java/com/azure/resourcemanager/containerinstance/ContainerInstanceManagementTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerinstance/src/test/java/com/azure/resourcemanager/containerinstance/ContainerInstanceManagementTest.java @@ -3,25 +3,50 @@ package com.azure.resourcemanager.containerinstance; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; -import com.azure.resourcemanager.resources.core.TestBase; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; -import java.io.IOException; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; +import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; -public class ContainerInstanceManagementTest extends TestBase { +import java.time.temporal.ChronoUnit; +import java.util.List; + +public class ContainerInstanceManagementTest extends ResourceManagerTestBase { protected ContainerInstanceManager containerInstanceManager; protected String rgName = ""; - public ContainerInstanceManagementTest() { - } - - ContainerInstanceManagementTest(RunCondition runCondition) { - super(runCondition); + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); } @Override - protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) throws IOException { + protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { rgName = generateRandomResourceName("rg", 20); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); containerInstanceManager = ContainerInstanceManager.authenticate(httpPipeline, profile, sdkContext); } diff --git a/sdk/resourcemanager/azure-resourcemanager-containerregistry/pom.xml b/sdk/resourcemanager/azure-resourcemanager-containerregistry/pom.xml index 086446361d69..34b968a338b5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerregistry/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-containerregistry/pom.xml @@ -80,9 +80,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-containerregistry/src/main/java/com/azure/resourcemanager/containerregistry/ContainerRegistryManager.java b/sdk/resourcemanager/azure-resourcemanager-containerregistry/src/main/java/com/azure/resourcemanager/containerregistry/ContainerRegistryManager.java index a738f860d392..8f58bf29a9bd 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerregistry/src/main/java/com/azure/resourcemanager/containerregistry/ContainerRegistryManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerregistry/src/main/java/com/azure/resourcemanager/containerregistry/ContainerRegistryManager.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.storage.StorageManager; @@ -105,8 +105,9 @@ private ContainerRegistryManager(HttpPipeline httpPipeline, AzureProfile profile profile, new ContainerRegistryManagementClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); this.storageManager = StorageManager.authenticate(httpPipeline, profile, sdkContext); diff --git a/sdk/resourcemanager/azure-resourcemanager-containerregistry/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-containerregistry/src/main/java/module-info.java new file mode 100644 index 000000000000..dfbb034c9f3d --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-containerregistry/src/main/java/module-info.java @@ -0,0 +1,11 @@ +module com.azure.resourcemanager.containerregistry { + requires transitive com.azure.resourcemanager.storage; + + exports com.azure.resourcemanager.containerregistry; + exports com.azure.resourcemanager.containerregistry.fluent; + exports com.azure.resourcemanager.containerregistry.fluent.inner; + exports com.azure.resourcemanager.containerregistry.models; + + opens com.azure.resourcemanager.containerregistry.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.containerregistry.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-containerregistry/src/test/java/com/azure/resourcemanager/containerregistry/RegistryTest.java b/sdk/resourcemanager/azure-resourcemanager-containerregistry/src/test/java/com/azure/resourcemanager/containerregistry/RegistryTest.java index a6fc511eb639..b05b223b4913 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerregistry/src/test/java/com/azure/resourcemanager/containerregistry/RegistryTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerregistry/src/test/java/com/azure/resourcemanager/containerregistry/RegistryTest.java @@ -3,24 +3,49 @@ package com.azure.resourcemanager.containerregistry; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; -import com.azure.resourcemanager.resources.core.TestBase; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.test.ResourceManagerTestBase; + +import java.time.temporal.ChronoUnit; +import java.util.List; /** The base for storage manager tests. */ -public abstract class RegistryTest extends TestBase { +public abstract class RegistryTest extends ResourceManagerTestBase { protected ResourceManager resourceManager; protected ContainerRegistryManager registryManager; protected String rgName; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { resourceManager = - ResourceManager.authenticate(httpPipeline, profile).withSdkContext(sdkContext).withDefaultSubscription(); - - registryManager = ContainerRegistryManager.authenticate(httpPipeline, profile, sdkContext); - + ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); + registryManager = ContainerRegistryManager.authenticate(httpPipeline, profile); rgName = generateRandomResourceName("rgacr", 10); } } diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/pom.xml b/sdk/resourcemanager/azure-resourcemanager-containerservice/pom.xml index f29cbaa75987..93e979909fdf 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/pom.xml @@ -75,9 +75,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/ContainerServiceManager.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/ContainerServiceManager.java index b550a5ecb435..3c9df9cfb3e9 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/ContainerServiceManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/com/azure/resourcemanager/containerservice/ContainerServiceManager.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; @@ -90,9 +90,10 @@ private ContainerServiceManager(HttpPipeline httpPipeline, AzureProfile profile, httpPipeline, profile, new ContainerServiceManagementClientBuilder() - .endpoint(profile.environment().getResourceManagerEndpoint()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) .pipeline(httpPipeline) - .subscriptionId(profile.subscriptionId()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); } diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/module-info.java new file mode 100644 index 000000000000..6a69feb0caaf --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/main/java/module-info.java @@ -0,0 +1,11 @@ +module com.azure.resourcemanager.containerservice { + requires transitive com.azure.resourcemanager.resources; + + exports com.azure.resourcemanager.containerservice; + exports com.azure.resourcemanager.containerservice.fluent; + exports com.azure.resourcemanager.containerservice.fluent.inner; + exports com.azure.resourcemanager.containerservice.models; + + opens com.azure.resourcemanager.containerservice.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.containerservice.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/java/com/azure/resourcemanager/containerservice/ContainerServiceManagementTest.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/java/com/azure/resourcemanager/containerservice/ContainerServiceManagementTest.java index 1045832e5270..91bd9cdf2ebe 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/java/com/azure/resourcemanager/containerservice/ContainerServiceManagementTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/java/com/azure/resourcemanager/containerservice/ContainerServiceManagementTest.java @@ -3,25 +3,52 @@ package com.azure.resourcemanager.containerservice; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; -import com.azure.resourcemanager.resources.core.TestBase; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; -public class ContainerServiceManagementTest extends TestBase { +import java.time.temporal.ChronoUnit; +import java.util.List; + +public class ContainerServiceManagementTest extends ResourceManagerTestBase { protected ResourceManager resourceManager; protected ContainerServiceManager containerServiceManager; protected String rgName = ""; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); rgName = generateRandomResourceName("javaacsrg", 15); - resourceManager = ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); - containerServiceManager = ContainerServiceManager.authenticate(httpPipeline, profile); - resourceManager.resourceGroups().define(rgName).withRegion(Region.US_EAST).create(); } diff --git a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/java/com/azure/resourcemanager/containerservice/KubernetesClustersTests.java b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/java/com/azure/resourcemanager/containerservice/KubernetesClustersTests.java index 156312ef9bb9..f9f9e940c848 100644 --- a/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/java/com/azure/resourcemanager/containerservice/KubernetesClustersTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-containerservice/src/test/java/com/azure/resourcemanager/containerservice/KubernetesClustersTests.java @@ -27,9 +27,9 @@ public class KubernetesClustersTests extends ContainerServiceManagementTest { @Test public void canCRUDKubernetesCluster() throws Exception { - String aksName = sdkContext.randomResourceName("aks", 15); - String dnsPrefix = sdkContext.randomResourceName("dns", 10); - String agentPoolName = sdkContext.randomResourceName("ap0", 10); + String aksName = generateRandomResourceName("aks", 15); + String dnsPrefix = generateRandomResourceName("dns", 10); + String agentPoolName = generateRandomResourceName("ap0", 10); String servicePrincipalClientId = "spId"; String servicePrincipalSecret = "spSecret"; diff --git a/sdk/resourcemanager/azure-resourcemanager-cosmos/pom.xml b/sdk/resourcemanager/azure-resourcemanager-cosmos/pom.xml index 8640c6875002..7ec4aca7a4fd 100644 --- a/sdk/resourcemanager/azure-resourcemanager-cosmos/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-cosmos/pom.xml @@ -87,9 +87,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/CosmosManager.java b/sdk/resourcemanager/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/CosmosManager.java index 1024c9c808ce..f7bd63d27e2c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/CosmosManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-cosmos/src/main/java/com/azure/resourcemanager/cosmos/CosmosManager.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; @@ -85,9 +85,10 @@ private CosmosManager(HttpPipeline httpPipeline, AzureProfile profile, SdkContex httpPipeline, profile, new CosmosDBManagementClientBuilder() - .endpoint(profile.environment().getResourceManagerEndpoint()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) .pipeline(httpPipeline) - .subscriptionId(profile.subscriptionId()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); } diff --git a/sdk/resourcemanager/azure-resourcemanager-cosmos/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-cosmos/src/main/java/module-info.java new file mode 100644 index 000000000000..77920fd9eb16 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-cosmos/src/main/java/module-info.java @@ -0,0 +1,11 @@ +module com.azure.resourcemanager.cosmos { + requires transitive com.azure.resourcemanager.resources; + + exports com.azure.resourcemanager.cosmos; + exports com.azure.resourcemanager.cosmos.fluent; + exports com.azure.resourcemanager.cosmos.fluent.inner; + exports com.azure.resourcemanager.cosmos.models; + + opens com.azure.resourcemanager.cosmos.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.cosmos.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-cosmos/src/test/java/com/azure/resourcemanager/cosmos/CosmosDBTests.java b/sdk/resourcemanager/azure-resourcemanager-cosmos/src/test/java/com/azure/resourcemanager/cosmos/CosmosDBTests.java index bb39c23d67a9..466d013e6a2c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-cosmos/src/test/java/com/azure/resourcemanager/cosmos/CosmosDBTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-cosmos/src/test/java/com/azure/resourcemanager/cosmos/CosmosDBTests.java @@ -3,7 +3,12 @@ package com.azure.resourcemanager.cosmos; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.resourcemanager.cosmos.models.ConnectorOffer; import com.azure.resourcemanager.cosmos.models.CosmosDBAccount; import com.azure.resourcemanager.cosmos.models.DatabaseAccountKind; @@ -15,18 +20,22 @@ import com.azure.resourcemanager.network.models.ServiceEndpointType; import com.azure.resourcemanager.network.NetworkManager; import com.azure.resourcemanager.network.fluent.inner.PrivateEndpointInner; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; -import java.io.IOException; +import java.time.temporal.ChronoUnit; import java.util.Arrays; +import java.util.List; import java.util.Map; -public class CosmosDBTests extends TestBase { +public class CosmosDBTests extends ResourceManagerTestBase { private String rgName = ""; protected ResourceManager resourceManager; @@ -34,18 +43,30 @@ public class CosmosDBTests extends TestBase { protected NetworkManager networkManager; // final String sqlPrimaryServerName = sdkContext.randomResourceName("sqlpri", 22); - public CosmosDBTests() { - super(TestBase.RunCondition.BOTH); + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); } @Override - protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) - throws IOException { + protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); rgName = generateRandomResourceName("rgcosmosdb", 20); resourceManager = ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); - cosmosManager = CosmosManager.authenticate(httpPipeline, profile); - networkManager = NetworkManager.authenticate(httpPipeline, profile); } @@ -56,7 +77,7 @@ protected void cleanUpResources() { @Test public void canCreateCosmosDbSqlAccount() { - final String cosmosDbAccountName = sdkContext.randomResourceName("cosmosdb", 22); + final String cosmosDbAccountName = generateRandomResourceName("cosmosdb", 22); CosmosDBAccount cosmosDBAccount = cosmosManager @@ -83,11 +104,11 @@ public void canCreateCosmosDbSqlAccount() { @Test public void canCreateSqlPrivateEndpoint() { - final String cosmosDbAccountName = sdkContext.randomResourceName("cosmosdb", 22); - final String networkName = sdkContext.randomResourceName("network", 22); - final String subnetName = sdkContext.randomResourceName("subnet", 22); - final String plsConnectionName = sdkContext.randomResourceName("plsconnect", 22); - final String pedName = sdkContext.randomResourceName("ped", 22); + final String cosmosDbAccountName = generateRandomResourceName("cosmosdb", 22); + final String networkName = generateRandomResourceName("network", 22); + final String subnetName = generateRandomResourceName("subnet", 22); + final String plsConnectionName = generateRandomResourceName("plsconnect", 22); + final String pedName = generateRandomResourceName("ped", 22); final Region region = Region.US_WEST; cosmosManager.resourceManager().resourceGroups().define(rgName).withRegion(region).create(); @@ -170,7 +191,7 @@ public void canCreateSqlPrivateEndpoint() { @Test public void canCreateCosmosDbMongoDBAccount() { - final String cosmosDbAccountName = sdkContext.randomResourceName("cosmosdb", 22); + final String cosmosDbAccountName = generateRandomResourceName("cosmosdb", 22); CosmosDBAccount cosmosDBAccount = cosmosManager @@ -195,7 +216,7 @@ public void canCreateCosmosDbMongoDBAccount() { @Test public void canCreateCosmosDbCassandraAccount() { - final String cosmosDbAccountName = sdkContext.randomResourceName("cosmosdb", 22); + final String cosmosDbAccountName = generateRandomResourceName("cosmosdb", 22); CosmosDBAccount cosmosDBAccount = cosmosManager @@ -221,7 +242,7 @@ public void canCreateCosmosDbCassandraAccount() { @Test public void canUpdateCosmosDbCassandraConnector() { - final String cosmosDbAccountName = sdkContext.randomResourceName("cosmosdb", 22); + final String cosmosDbAccountName = generateRandomResourceName("cosmosdb", 22); // CassandraConnector could only be used in West US and South Central US. CosmosDBAccount cosmosDBAccount = @@ -247,7 +268,7 @@ public void canUpdateCosmosDbCassandraConnector() { @Test public void canCreateCosmosDbAzureTableAccount() { - final String cosmosDbAccountName = sdkContext.randomResourceName("cosmosdb", 22); + final String cosmosDbAccountName = generateRandomResourceName("cosmosdb", 22); CosmosDBAccount cosmosDBAccount = cosmosManager diff --git a/sdk/resourcemanager/azure-resourcemanager-dns/pom.xml b/sdk/resourcemanager/azure-resourcemanager-dns/pom.xml index e6cf75cc7917..b51f000f884e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-dns/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-dns/pom.xml @@ -85,9 +85,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-dns/src/main/java/com/azure/resourcemanager/dns/DnsZoneManager.java b/sdk/resourcemanager/azure-resourcemanager-dns/src/main/java/com/azure/resourcemanager/dns/DnsZoneManager.java index 7a6ca304d8ae..9a3904d70ed3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-dns/src/main/java/com/azure/resourcemanager/dns/DnsZoneManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-dns/src/main/java/com/azure/resourcemanager/dns/DnsZoneManager.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; @@ -88,7 +88,9 @@ private DnsZoneManager(HttpPipeline httpPipeline, AzureProfile profile, SdkConte profile, new DnsManagementClientBuilder() .pipeline(httpPipeline) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); } diff --git a/sdk/resourcemanager/azure-resourcemanager-dns/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-dns/src/main/java/module-info.java new file mode 100644 index 000000000000..1b061482cea3 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-dns/src/main/java/module-info.java @@ -0,0 +1,11 @@ +module com.azure.resourcemanager.dns { + requires transitive com.azure.resourcemanager.resources; + + exports com.azure.resourcemanager.dns; + exports com.azure.resourcemanager.dns.fluent; + exports com.azure.resourcemanager.dns.fluent.inner; + exports com.azure.resourcemanager.dns.models; + + opens com.azure.resourcemanager.dns.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.dns.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-dns/src/test/java/com/azure/resourcemanager/dns/DnsZoneRecordSetETagTests.java b/sdk/resourcemanager/azure-resourcemanager-dns/src/test/java/com/azure/resourcemanager/dns/DnsZoneRecordSetETagTests.java index a6a6f3d0275c..0e4362bc5cf9 100644 --- a/sdk/resourcemanager/azure-resourcemanager-dns/src/test/java/com/azure/resourcemanager/dns/DnsZoneRecordSetETagTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-dns/src/test/java/com/azure/resourcemanager/dns/DnsZoneRecordSetETagTests.java @@ -3,7 +3,12 @@ package com.azure.resourcemanager.dns; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.core.http.rest.PagedIterable; import com.azure.core.management.exception.ManagementError; import com.azure.core.management.exception.ManagementException; @@ -13,29 +18,50 @@ import com.azure.resourcemanager.dns.models.CaaRecordSet; import com.azure.resourcemanager.dns.models.DnsZone; import com.azure.resourcemanager.dns.models.ZoneType; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; -public class DnsZoneRecordSetETagTests extends TestBase { - private String rgName = ""; +import java.time.temporal.ChronoUnit; +import java.util.List; - public DnsZoneRecordSetETagTests() { - super(TestBase.RunCondition.BOTH); - } +public class DnsZoneRecordSetETagTests extends ResourceManagerTestBase { + private String rgName = ""; protected ResourceManager resourceManager; protected DnsZoneManager zoneManager; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); resourceManager = - ResourceManager.authenticate(httpPipeline, profile).withSdkContext(sdkContext).withDefaultSubscription(); - zoneManager = DnsZoneManager.authenticate(httpPipeline, profile, sdkContext); + ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); + zoneManager = DnsZoneManager.authenticate(httpPipeline, profile); rgName = generateRandomResourceName("dnsetagtest", 15); } diff --git a/sdk/resourcemanager/azure-resourcemanager-keyvault/pom.xml b/sdk/resourcemanager/azure-resourcemanager-keyvault/pom.xml index 5150d2458af8..75b96fff9410 100644 --- a/sdk/resourcemanager/azure-resourcemanager-keyvault/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-keyvault/pom.xml @@ -88,9 +88,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-keyvault/src/main/java/com/azure/resourcemanager/keyvault/KeyVaultManager.java b/sdk/resourcemanager/azure-resourcemanager-keyvault/src/main/java/com/azure/resourcemanager/keyvault/KeyVaultManager.java index 7437f3a900ce..b362b6a5ded6 100644 --- a/sdk/resourcemanager/azure-resourcemanager-keyvault/src/main/java/com/azure/resourcemanager/keyvault/KeyVaultManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-keyvault/src/main/java/com/azure/resourcemanager/keyvault/KeyVaultManager.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; @@ -97,12 +97,13 @@ private KeyVaultManager( profile, new KeyVaultManagementClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); authorizationManager = AuthorizationManager.authenticate(httpPipeline, profile, sdkContext); - this.tenantId = profile.tenantId(); + this.tenantId = profile.getTenantId(); } /** @return the KeyVault account management API entry point */ diff --git a/sdk/resourcemanager/azure-resourcemanager-keyvault/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-keyvault/src/main/java/module-info.java new file mode 100644 index 000000000000..d1561f133067 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-keyvault/src/main/java/module-info.java @@ -0,0 +1,13 @@ +module com.azure.resourcemanager.keyvault { + requires transitive com.azure.resourcemanager.authorization; + requires transitive com.azure.security.keyvault.keys; + requires transitive com.azure.security.keyvault.secrets; + + exports com.azure.resourcemanager.keyvault; + exports com.azure.resourcemanager.keyvault.fluent; + exports com.azure.resourcemanager.keyvault.fluent.inner; + exports com.azure.resourcemanager.keyvault.models; + + opens com.azure.resourcemanager.keyvault.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.keyvault.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/KeyTests.java b/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/KeyTests.java index 032e5acec18c..62cee96d7730 100644 --- a/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/KeyTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/KeyTests.java @@ -4,9 +4,9 @@ package com.azure.resourcemanager.keyvault; import com.azure.core.http.rest.PagedIterable; +import com.azure.core.test.annotation.DoNotRecord; import com.azure.resourcemanager.keyvault.models.Key; import com.azure.resourcemanager.keyvault.models.Vault; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; @@ -29,15 +29,15 @@ import org.junit.jupiter.api.Test; public class KeyTests extends KeyVaultManagementTest { - - public KeyTests() { - super(TestBase.RunCondition.LIVE_ONLY); - } - @Test - public void canCRUDKey() throws Exception { + @DoNotRecord + public void canCRUDKey() { + if (skipInPlayback()) { + return; + } + Vault vault = createVault(); - String keyName = sdkContext.randomResourceName("key", 20); + String keyName = generateRandomResourceName("key", 20); // Create Key key = @@ -105,9 +105,14 @@ public void canCRUDKey() throws Exception { } @Test + @DoNotRecord public void canImportKey() throws Exception { + if (skipInPlayback()) { + return; + } + Vault vault = createVault(); - String keyName = sdkContext.randomResourceName("key", 20); + String keyName = generateRandomResourceName("key", 20); Key key = vault @@ -121,9 +126,14 @@ public void canImportKey() throws Exception { } @Test + @DoNotRecord public void canBackupAndRestore() throws Exception { + if (skipInPlayback()) { + return; + } + Vault vault = createVault(); - String keyName = sdkContext.randomResourceName("key", 20); + String keyName = generateRandomResourceName("key", 20); Key key = vault @@ -147,9 +157,14 @@ public void canBackupAndRestore() throws Exception { } @Test + @DoNotRecord public void canEncryptAndDecrypt() throws Exception { + if (skipInPlayback()) { + return; + } + Vault vault = createVault(); - String keyName = sdkContext.randomResourceName("key", 20); + String keyName = generateRandomResourceName("key", 20); KeyPair keyPair = KeyPairGenerator.getInstance("RSA").generateKeyPair(); @@ -177,9 +192,14 @@ public void canEncryptAndDecrypt() throws Exception { } @Test + @DoNotRecord public void canSignAndVerify() throws Exception { + if (skipInPlayback()) { + return; + } + Vault vault = createVault(); - String keyName = sdkContext.randomResourceName("key", 20); + String keyName = generateRandomResourceName("key", 20); KeyPair keyPair = KeyPairGenerator.getInstance("RSA").generateKeyPair(); @@ -204,9 +224,14 @@ public void canSignAndVerify() throws Exception { } @Test + @DoNotRecord public void canWrapAndUnwrap() throws Exception { + if (skipInPlayback()) { + return; + } + Vault vault = createVault(); - String keyName = sdkContext.randomResourceName("key", 20); + String keyName = generateRandomResourceName("key", 20); Key key = vault @@ -225,8 +250,8 @@ public void canWrapAndUnwrap() throws Exception { Assertions.assertEquals(secretKey, new SecretKeySpec(unwrapped, "AES")); } - private Vault createVault() throws Exception { - String vaultName = sdkContext.randomResourceName("vault", 20); + private Vault createVault() { + String vaultName = generateRandomResourceName("vault", 20); Vault vault = keyVaultManager diff --git a/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/KeyVaultManagementTest.java b/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/KeyVaultManagementTest.java index 2ef8912fe7b8..385495935688 100644 --- a/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/KeyVaultManagementTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/KeyVaultManagementTest.java @@ -3,26 +3,47 @@ package com.azure.resourcemanager.keyvault; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.resourcemanager.authorization.AuthorizationManager; -import com.azure.resourcemanager.resources.core.TestBase; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; + +import java.time.temporal.ChronoUnit; +import java.util.List; /** The base for KeyVault manager tests. */ -public class KeyVaultManagementTest extends TestBase { +public class KeyVaultManagementTest extends ResourceManagerTestBase { protected ResourceManager resourceManager; protected KeyVaultManager keyVaultManager; protected AuthorizationManager authorizationManager; protected String rgName = ""; protected String vaultName = ""; - public KeyVaultManagementTest() { - super(); - } - - public KeyVaultManagementTest(RunCondition runCondition) { - super(runCondition); + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); } @Override @@ -30,12 +51,11 @@ protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile rgName = generateRandomResourceName("javacsmrg", 15); vaultName = generateRandomResourceName("java-keyvault-", 20); + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); resourceManager = - ResourceManager.authenticate(httpPipeline, profile).withSdkContext(sdkContext).withDefaultSubscription(); - - authorizationManager = AuthorizationManager.authenticate(httpPipeline, profile, sdkContext); - - keyVaultManager = KeyVaultManager.authenticate(httpPipeline, profile, sdkContext); + ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); + authorizationManager = AuthorizationManager.authenticate(httpPipeline, profile); + keyVaultManager = KeyVaultManager.authenticate(httpPipeline, profile); } @Override diff --git a/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/SecretTests.java b/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/SecretTests.java index 71c8460b8a48..f00b79a4056f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/SecretTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/SecretTests.java @@ -3,24 +3,24 @@ package com.azure.resourcemanager.keyvault; +import com.azure.core.test.annotation.DoNotRecord; import com.azure.resourcemanager.keyvault.models.Secret; import com.azure.resourcemanager.keyvault.models.Vault; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; public class SecretTests extends KeyVaultManagementTest { - - public SecretTests() { - super(TestBase.RunCondition.LIVE_ONLY); - } - @Test - public void canCRUDSecret() throws Exception { - String vaultName = sdkContext.randomResourceName("vault", 20); - String secretName = sdkContext.randomResourceName("secret", 20); + @DoNotRecord + public void canCRUDSecret() { + if (skipInPlayback()) { + return; + } + + String vaultName = generateRandomResourceName("vault", 20); + String secretName = generateRandomResourceName("secret", 20); Vault vault = keyVaultManager diff --git a/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/VaultTests.java b/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/VaultTests.java index b60b9409ee5a..4fcd11daba57 100644 --- a/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/VaultTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-keyvault/src/test/java/com/azure/resourcemanager/keyvault/VaultTests.java @@ -20,10 +20,10 @@ public class VaultTests extends KeyVaultManagementTest { @Test - public void canCRUDVault() throws Exception { + public void canCRUDVault() { // Create user service principal - String sp = sdkContext.randomResourceName("sp", 20); - String us = sdkContext.randomResourceName("us", 20); + String sp = generateRandomResourceName("sp", 20); + String us = generateRandomResourceName("us", 20); ServicePrincipal servicePrincipal = authorizationManager.servicePrincipals().define(sp).withNewApplication("http://" + sp).create(); @@ -121,8 +121,8 @@ public void canCRUDVault() throws Exception { @Test public void canCRUDVaultAsync() throws Exception { // Create user service principal - String sp = sdkContext.randomResourceName("sp", 20); - String us = sdkContext.randomResourceName("us", 20); + String sp = generateRandomResourceName("sp", 20); + String us = generateRandomResourceName("us", 20); ServicePrincipal servicePrincipal = authorizationManager.servicePrincipals().define(sp).withNewApplication("http://" + sp).create(); @@ -216,8 +216,8 @@ public void canCRUDVaultAsync() throws Exception { @Test public void canEnableSoftDeleteAndPurge() throws InterruptedException { String otherVaultName = vaultName + "other"; - String sp = sdkContext.randomResourceName("sp", 20); - String us = sdkContext.randomResourceName("us", 20); + String sp = generateRandomResourceName("sp", 20); + String us = generateRandomResourceName("us", 20); ServicePrincipal servicePrincipal = authorizationManager.servicePrincipals().define(sp).withNewApplication("http://" + sp).create(); diff --git a/sdk/resourcemanager/azure-resourcemanager-monitor/pom.xml b/sdk/resourcemanager/azure-resourcemanager-monitor/pom.xml index 55915ef15463..86fcf43ddc98 100644 --- a/sdk/resourcemanager/azure-resourcemanager-monitor/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-monitor/pom.xml @@ -69,9 +69,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-monitor/src/main/java/com/azure/resourcemanager/monitor/MonitorManager.java b/sdk/resourcemanager/azure-resourcemanager-monitor/src/main/java/com/azure/resourcemanager/monitor/MonitorManager.java index 96c911678a5b..f4566959bed5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-monitor/src/main/java/com/azure/resourcemanager/monitor/MonitorManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-monitor/src/main/java/com/azure/resourcemanager/monitor/MonitorManager.java @@ -20,7 +20,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; @@ -148,8 +148,9 @@ private MonitorManager(HttpPipeline httpPipeline, AzureProfile profile, SdkConte profile, new MonitorClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); } diff --git a/sdk/resourcemanager/azure-resourcemanager-monitor/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-monitor/src/main/java/module-info.java new file mode 100644 index 000000000000..9e7539cd3469 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-monitor/src/main/java/module-info.java @@ -0,0 +1,11 @@ +module com.azure.resourcemanager.monitor { + requires transitive com.azure.resourcemanager.resources; + + exports com.azure.resourcemanager.monitor; + exports com.azure.resourcemanager.monitor.fluent; + exports com.azure.resourcemanager.monitor.fluent.inner; + exports com.azure.resourcemanager.monitor.models; + + opens com.azure.resourcemanager.monitor.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.monitor.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/ActionGroupsTests.java b/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/ActionGroupsTests.java index 80e2b5b42d64..66024a7827af 100644 --- a/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/ActionGroupsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/ActionGroupsTests.java @@ -8,7 +8,7 @@ import com.azure.resourcemanager.monitor.models.ActionGroup; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/AlertsTests.java b/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/AlertsTests.java index ed61e2e5bbc6..9fc88bf7fdbc 100644 --- a/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/AlertsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/AlertsTests.java @@ -20,7 +20,7 @@ import com.azure.resourcemanager.monitor.models.MetricDynamicAlertCondition; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.StorageAccount; import java.time.Duration; import java.time.OffsetDateTime; @@ -330,7 +330,7 @@ public void canCRUDMetricAlerts() throws Exception { } @Test - public void canCRUDMultipleResourceMetricAlerts() throws Exception { + public void canCRUDMultipleResourceMetricAlerts() { try { final String userName = "tirekicker"; final String password = password(); diff --git a/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/AutoscaleTests.java b/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/AutoscaleTests.java index 6b6aff487af3..b0ccaee46dd5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/AutoscaleTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/AutoscaleTests.java @@ -20,7 +20,7 @@ import com.azure.resourcemanager.monitor.models.TimeAggregationType; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; diff --git a/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/DiagnosticSettingsTests.java b/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/DiagnosticSettingsTests.java index 0d02c06e44f7..e4fb62f534d6 100644 --- a/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/DiagnosticSettingsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/DiagnosticSettingsTests.java @@ -5,7 +5,7 @@ import com.azure.core.http.HttpPipeline; import com.azure.resourcemanager.monitor.models.DiagnosticSetting; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import org.junit.jupiter.api.Assertions; public class DiagnosticSettingsTests extends MonitorManagementTest { diff --git a/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/MonitorActivityAndMetricsTests.java b/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/MonitorActivityAndMetricsTests.java index a17bc007151b..9b5b5e6db070 100644 --- a/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/MonitorActivityAndMetricsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/MonitorActivityAndMetricsTests.java @@ -14,13 +14,14 @@ import com.azure.resourcemanager.monitor.models.ResultType; import com.azure.resourcemanager.resources.core.TestUtilities; import java.time.OffsetDateTime; + import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; public class MonitorActivityAndMetricsTests extends MonitorManagementTest { @Test - public void canListEventsAndMetrics() throws Exception { - OffsetDateTime recordDateTime = sdkContext.dateTimeNow().minusDays(40); + public void canListEventsAndMetrics() { + OffsetDateTime recordDateTime = OffsetDateTime.parse("2020-06-22T21:44:57.424+08:00").minusDays(40); VirtualMachine vm = computeManager.virtualMachines().list().iterator().next(); // Metric Definition diff --git a/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/MonitorManagementTest.java b/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/MonitorManagementTest.java index 592e9ab387fa..c13801338d22 100644 --- a/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/MonitorManagementTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-monitor/src/test/java/com/azure/resourcemanager/monitor/MonitorManagementTest.java @@ -3,17 +3,29 @@ package com.azure.resourcemanager.monitor; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.resourcemanager.appservice.AppServiceManager; import com.azure.resourcemanager.compute.ComputeManager; // import com.azure.management.eventhub.implementation.EventHubManager; -import com.azure.resourcemanager.resources.core.TestBase; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.storage.StorageManager; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; + +import java.time.temporal.ChronoUnit; +import java.util.List; /** The base for Monitor manager tests. */ -public class MonitorManagementTest extends TestBase { +public class MonitorManagementTest extends ResourceManagerTestBase { protected ResourceManager resourceManager; protected MonitorManager monitorManager; protected ComputeManager computeManager; @@ -22,18 +34,34 @@ public class MonitorManagementTest extends TestBase { protected AppServiceManager appServiceManager; @Override - protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { - - appServiceManager = AppServiceManager.authenticate(httpPipeline, profile, sdkContext); + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override + protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); + appServiceManager = AppServiceManager.authenticate(httpPipeline, profile); resourceManager = - ResourceManager.authenticate(httpPipeline, profile).withSdkContext(sdkContext).withDefaultSubscription(); - - monitorManager = MonitorManager.authenticate(httpPipeline, profile, sdkContext); - + ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); + monitorManager = MonitorManager.authenticate(httpPipeline, profile); computeManager = ComputeManager.authenticate(httpPipeline, profile, sdkContext); - - storageManager = StorageManager.authenticate(httpPipeline, profile, sdkContext); + storageManager = StorageManager.authenticate(httpPipeline, profile); // eventHubManager = EventHubManager // .authenticate(restClient, defaultSubscription, sdkContext); diff --git a/sdk/resourcemanager/azure-resourcemanager-msi/pom.xml b/sdk/resourcemanager/azure-resourcemanager-msi/pom.xml index 142dbb6d2623..2b6e3173eb2e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-msi/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-msi/pom.xml @@ -68,9 +68,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-msi/src/main/java/com/azure/resourcemanager/msi/MSIManager.java b/sdk/resourcemanager/azure-resourcemanager-msi/src/main/java/com/azure/resourcemanager/msi/MSIManager.java index b613b03cddc9..08e6a4ce93e6 100644 --- a/sdk/resourcemanager/azure-resourcemanager-msi/src/main/java/com/azure/resourcemanager/msi/MSIManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-msi/src/main/java/com/azure/resourcemanager/msi/MSIManager.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; @@ -96,8 +96,9 @@ public MSIManager authenticate(TokenCredential credential, AzureProfile profile) private MSIManager(HttpPipeline httpPipeline, AzureProfile profile, SdkContext sdkContext) { super(httpPipeline, profile, new ManagedServiceIdentityClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); authorizationManager = AuthorizationManager.authenticate(httpPipeline, diff --git a/sdk/resourcemanager/azure-resourcemanager-msi/src/main/java/com/azure/resourcemanager/msi/implementation/IdentityImpl.java b/sdk/resourcemanager/azure-resourcemanager-msi/src/main/java/com/azure/resourcemanager/msi/implementation/IdentityImpl.java index 0c9a7858942f..63e6d6fbb8a5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-msi/src/main/java/com/azure/resourcemanager/msi/implementation/IdentityImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-msi/src/main/java/com/azure/resourcemanager/msi/implementation/IdentityImpl.java @@ -5,7 +5,7 @@ import com.azure.resourcemanager.authorization.models.BuiltInRole; import com.azure.resourcemanager.authorization.models.RoleAssignment; -import com.azure.resourcemanager.authorization.implementation.RoleAssignmentHelper; +import com.azure.resourcemanager.authorization.utils.RoleAssignmentHelper; import com.azure.resourcemanager.msi.MSIManager; import com.azure.resourcemanager.msi.models.Identity; import com.azure.resourcemanager.msi.fluent.inner.IdentityInner; diff --git a/sdk/resourcemanager/azure-resourcemanager-msi/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-msi/src/main/java/module-info.java new file mode 100644 index 000000000000..9759ea71bc97 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-msi/src/main/java/module-info.java @@ -0,0 +1,11 @@ +module com.azure.resourcemanager.msi { + requires transitive com.azure.resourcemanager.authorization; + + exports com.azure.resourcemanager.msi; + exports com.azure.resourcemanager.msi.fluent; + exports com.azure.resourcemanager.msi.fluent.inner; + exports com.azure.resourcemanager.msi.models; + + opens com.azure.resourcemanager.msi.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.msi.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-msi/src/test/java/com/azure/resourcemanager/msi/MSIIdentityManagementTests.java b/sdk/resourcemanager/azure-resourcemanager-msi/src/test/java/com/azure/resourcemanager/msi/MSIIdentityManagementTests.java index 1f2e5d8926a0..229bd6752aaa 100644 --- a/sdk/resourcemanager/azure-resourcemanager-msi/src/test/java/com/azure/resourcemanager/msi/MSIIdentityManagementTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-msi/src/test/java/com/azure/resourcemanager/msi/MSIIdentityManagementTests.java @@ -3,27 +3,35 @@ package com.azure.resourcemanager.msi; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.core.http.rest.PagedIterable; import com.azure.resourcemanager.authorization.models.BuiltInRole; import com.azure.resourcemanager.authorization.models.RoleAssignment; import com.azure.resourcemanager.msi.models.Identity; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.models.ResourceGroup; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; import com.azure.resourcemanager.resources.fluentcore.model.Indexable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.ResourceManager; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; -import java.io.IOException; +import java.time.temporal.ChronoUnit; import java.util.ArrayList; import java.util.List; -public class MSIIdentityManagementTests extends TestBase { +public class MSIIdentityManagementTests extends ResourceManagerTestBase { private String rgName = ""; private Region region = Region.fromName("West Central US"); @@ -31,7 +39,28 @@ public class MSIIdentityManagementTests extends TestBase { private ResourceManager resourceManager; @Override - protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) throws IOException { + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + + @Override + protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); this.msiManager = MSIManager.authenticate(httpPipeline, profile, sdkContext); this.resourceManager = msiManager.resourceManager(); } @@ -42,7 +71,7 @@ protected void cleanUpResources() { } @Test - public void canCreateGetListDeleteIdentity() throws Exception { + public void canCreateGetListDeleteIdentity() { rgName = generateRandomResourceName("javaismrg", 15); String identityName = generateRandomResourceName("msi-id", 15); @@ -96,7 +125,7 @@ public void canCreateGetListDeleteIdentity() throws Exception { } @Test - public void canAssignCurrentResourceGroupAccessRoleToIdentity() throws Exception { + public void canAssignCurrentResourceGroupAccessRoleToIdentity() { rgName = generateRandomResourceName("javaismrg", 15); String identityName = generateRandomResourceName("msi-id", 15); @@ -148,7 +177,7 @@ public void canAssignCurrentResourceGroupAccessRoleToIdentity() throws Exception } @Test - public void canAssignRolesToIdentity() throws Exception { + public void canAssignRolesToIdentity() { rgName = generateRandomResourceName("javaismrg", 15); String identityName = generateRandomResourceName("msi-id", 15); diff --git a/sdk/resourcemanager/azure-resourcemanager-network/pom.xml b/sdk/resourcemanager/azure-resourcemanager-network/pom.xml index b76e9f4becb4..e7099afae1c1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-network/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-network/pom.xml @@ -73,9 +73,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/NetworkManager.java b/sdk/resourcemanager/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/NetworkManager.java index 27406c0c2250..f87e4e9410b9 100644 --- a/sdk/resourcemanager/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/NetworkManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/NetworkManager.java @@ -41,7 +41,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; @@ -136,8 +136,9 @@ private NetworkManager(HttpPipeline httpPipeline, AzureProfile profile, SdkConte profile, new NetworkManagementClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); } diff --git a/sdk/resourcemanager/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/implementation/NetworkInterfaceImpl.java b/sdk/resourcemanager/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/implementation/NetworkInterfaceImpl.java index 2fc74bbb485f..e364ce58651f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/implementation/NetworkInterfaceImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-network/src/main/java/com/azure/resourcemanager/network/implementation/NetworkInterfaceImpl.java @@ -3,6 +3,7 @@ package com.azure.resourcemanager.network.implementation; +import com.azure.core.management.provider.IdentifierProvider; import com.azure.core.util.logging.ClientLogger; import com.azure.resourcemanager.network.NetworkManager; import com.azure.resourcemanager.network.models.IpAllocationMethod; @@ -22,7 +23,6 @@ import com.azure.resourcemanager.resources.fluentcore.arm.ResourceUtils; import com.azure.resourcemanager.resources.fluentcore.arm.models.Resource; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.utils.ResourceNamer; import com.azure.resourcemanager.resources.fluentcore.utils.Utils; import java.util.ArrayList; import java.util.Collections; @@ -44,7 +44,7 @@ class NetworkInterfaceImpl /** the name of the network interface. */ private final String nicName; /** used to generate unique name for any dependency resources. */ - protected final ResourceNamer namer; + protected final IdentifierProvider namer; /** references to all ip configuration. */ private Map nicIPConfigurations; /** unique key of a creatable network security group to be associated with the network interface. */ @@ -57,7 +57,7 @@ class NetworkInterfaceImpl NetworkInterfaceImpl(String name, NetworkInterfaceInner innerModel, final NetworkManager networkManager) { super(name, innerModel, networkManager); this.nicName = name; - this.namer = this.manager().sdkContext().getResourceNamerFactory().createResourceNamer(this.nicName); + this.namer = this.manager().sdkContext().createIdentifierProvider(this.nicName); initializeChildrenFromInner(); } diff --git a/sdk/resourcemanager/azure-resourcemanager-network/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-network/src/main/java/module-info.java new file mode 100644 index 000000000000..21e23c2e3a26 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-network/src/main/java/module-info.java @@ -0,0 +1,11 @@ +module com.azure.resourcemanager.network { + requires transitive com.azure.resourcemanager.resources; + + exports com.azure.resourcemanager.network; + exports com.azure.resourcemanager.network.fluent; + exports com.azure.resourcemanager.network.fluent.inner; + exports com.azure.resourcemanager.network.models; + + opens com.azure.resourcemanager.network.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.network.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/ApplicationGatewayTests.java b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/ApplicationGatewayTests.java index 1607c685e969..0e6e9245d03e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/ApplicationGatewayTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/ApplicationGatewayTests.java @@ -38,8 +38,8 @@ public class ApplicationGatewayTests extends NetworkManagementTest { @Test public void canCRUDApplicationGatewayWithWAF() throws Exception { - String appGatewayName = sdkContext.randomResourceName("agwaf", 15); - String appPublicIp = sdkContext.randomResourceName("pip", 15); + String appGatewayName = generateRandomResourceName("agwaf", 15); + String appPublicIp = generateRandomResourceName("pip", 15); PublicIpAddress pip = networkManager .publicIpAddresses() @@ -132,9 +132,9 @@ public void canCRUDApplicationGatewayWithWAF() throws Exception { @Test @Disabled("Need client id for key vault usage") public void canCreateApplicationGatewayWithSecret() throws Exception { - String appGatewayName = sdkContext.randomResourceName("agwaf", 15); - String appPublicIp = sdkContext.randomResourceName("pip", 15); - String identityName = sdkContext.randomResourceName("id", 10); + String appGatewayName = generateRandomResourceName("agwaf", 15); + String appPublicIp = generateRandomResourceName("pip", 15); + String identityName = generateRandomResourceName("id", 10); PublicIpAddress pip = networkManager @@ -200,8 +200,8 @@ public void canCreateApplicationGatewayWithSecret() throws Exception { } private Secret createKeyVaultSecret(String servicePrincipal, String identityPrincipal) throws Exception { - String vaultName = sdkContext.randomResourceName("vlt", 10); - String secretName = sdkContext.randomResourceName("srt", 10); + String vaultName = generateRandomResourceName("vlt", 10); + String secretName = generateRandomResourceName("srt", 10); String secretValue = Files .readFirstLine( diff --git a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/ApplicationSecurityGroupTests.java b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/ApplicationSecurityGroupTests.java index e92818266fb8..3cebe806547a 100644 --- a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/ApplicationSecurityGroupTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/ApplicationSecurityGroupTests.java @@ -13,8 +13,8 @@ public class ApplicationSecurityGroupTests extends NetworkManagementTest { @Test - public void canCRUDApplicationSecurityGroup() throws Exception { - String asgName = sdkContext.randomResourceName("asg", 15); + public void canCRUDApplicationSecurityGroup() { + String asgName = generateRandomResourceName("asg", 15); ApplicationSecurityGroup applicationSecurityGroup = networkManager diff --git a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/DdosProtectionPlanTests.java b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/DdosProtectionPlanTests.java index 01142f01e0e3..6a8906129153 100644 --- a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/DdosProtectionPlanTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/DdosProtectionPlanTests.java @@ -12,8 +12,8 @@ public class DdosProtectionPlanTests extends NetworkManagementTest { @Test - public void canCRUDDdosProtectionPlan() throws Exception { - String ppName = sdkContext.randomResourceName("ddosplan", 15); + public void canCRUDDdosProtectionPlan() { + String ppName = generateRandomResourceName("ddosplan", 15); DdosProtectionPlan pPlan = networkManager diff --git a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/LoadBalancerTests.java b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/LoadBalancerTests.java index b07c9d7ff233..b1698c5842d8 100644 --- a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/LoadBalancerTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/LoadBalancerTests.java @@ -21,9 +21,9 @@ public class LoadBalancerTests extends NetworkManagementTest { static final String PROBE_NAME_2 = "httpsProbe"; @Test - public void canCRUDProbe() throws Exception { - String vmName = sdkContext.randomResourceName("vm", 8); - String lbName = sdkContext.randomResourceName("lb", 8); + public void canCRUDProbe() { + String vmName = generateRandomResourceName("vm", 8); + String lbName = generateRandomResourceName("lb", 8); ResourceGroup resourceGroup = resourceManager.resourceGroups().define(rgName).withRegion(Region.US_EAST).create(); diff --git a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkInterfaceOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkInterfaceOperationsTests.java index 774094b87b73..f36b189f24d6 100644 --- a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkInterfaceOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkInterfaceOperationsTests.java @@ -30,11 +30,11 @@ public class NetworkInterfaceOperationsTests extends NetworkManagementTest { @Test @SuppressWarnings({"unchecked", "rawtypes"}) - public void canUseMultipleIPConfigs() throws Exception { - String networkName = sdkContext.randomResourceName("net", 15); + public void canUseMultipleIPConfigs() { + String networkName = generateRandomResourceName("net", 15); String[] nicNames = new String[3]; for (int i = 0; i < nicNames.length; i++) { - nicNames[i] = sdkContext.randomResourceName("nic", 15); + nicNames[i] = generateRandomResourceName("nic", 15); } Network network = @@ -230,7 +230,7 @@ public void canUseMultipleIPConfigs() throws Exception { } @Test - public void canCreateBatchOfNetworkInterfaces() throws Exception { + public void canCreateBatchOfNetworkInterfaces() { ResourceGroups resourceGroups = resourceManager.resourceGroups(); Networks networks = networkManager.networks(); NetworkInterfaces networkInterfaces = networkManager.networkInterfaces(); diff --git a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkManagementTest.java b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkManagementTest.java index 629458265ffc..2ae87b6a3829 100644 --- a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkManagementTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkManagementTest.java @@ -3,32 +3,61 @@ package com.azure.resourcemanager.network; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.resourcemanager.keyvault.KeyVaultManager; import com.azure.resourcemanager.msi.MSIManager; -import com.azure.resourcemanager.resources.core.TestBase; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; -public class NetworkManagementTest extends TestBase { +import java.time.temporal.ChronoUnit; +import java.util.List; + +public class NetworkManagementTest extends ResourceManagerTestBase { protected ResourceManager resourceManager; protected NetworkManager networkManager; protected KeyVaultManager keyVaultManager; protected MSIManager msiManager; protected String rgName = ""; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); rgName = generateRandomResourceName("javanwmrg", 15); - resourceManager = - ResourceManager.authenticate(httpPipeline, profile).withSdkContext(sdkContext).withDefaultSubscription(); - + ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); networkManager = NetworkManager.authenticate(httpPipeline, profile, sdkContext); - - keyVaultManager = KeyVaultManager.authenticate(httpPipeline, profile, sdkContext); - - msiManager = MSIManager.authenticate(httpPipeline, profile, sdkContext); + keyVaultManager = KeyVaultManager.authenticate(httpPipeline, profile); + msiManager = MSIManager.authenticate(httpPipeline, profile); } @Override diff --git a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkUsageOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkUsageOperationsTests.java index c1826d5c2bfa..a054b41f7ffe 100644 --- a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkUsageOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkUsageOperationsTests.java @@ -12,7 +12,7 @@ public class NetworkUsageOperationsTests extends NetworkManagementTest { @Test - public void canListNetworkUsages() throws Exception { + public void canListNetworkUsages() { PagedIterable usages = networkManager.usages().listByRegion(Region.US_EAST); Assertions.assertTrue(TestUtilities.getSize(usages) > 0); } diff --git a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkWatcherTests.java b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkWatcherTests.java index 6b75d6f4809e..0dc30386035a 100644 --- a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkWatcherTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/NetworkWatcherTests.java @@ -17,7 +17,7 @@ public class NetworkWatcherTests extends NetworkManagementTest { @Test @Disabled("https://github.com/Azure/azure-rest-api-specs/issues/7579") public void canListProvidersAndGetReachabilityReport() throws Exception { - String nwName = sdkContext.randomResourceName("nw", 8); + String nwName = generateRandomResourceName("nw", 8); Region region = Region.US_WEST; // make sure Network Watcher is disabled in current subscription and region as only one can exist PagedIterable nwList = networkManager.networkWatchers().list(); diff --git a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/RouteFilterTests.java b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/RouteFilterTests.java index be5ea51af22d..822cda8a00de 100644 --- a/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/RouteFilterTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-network/src/test/java/com/azure/resourcemanager/network/RouteFilterTests.java @@ -14,8 +14,8 @@ public class RouteFilterTests extends NetworkManagementTest { @Test - public void canCRUDRouteFilter() throws Exception { - String rfName = sdkContext.randomResourceName("rf", 15); + public void canCRUDRouteFilter() { + String rfName = generateRandomResourceName("rf", 15); RouteFilter routeFilter = networkManager @@ -39,8 +39,8 @@ public void canCRUDRouteFilter() throws Exception { } @Test - public void canCreateRouteFilterRule() throws Exception { - String rfName = sdkContext.randomResourceName("rf", 15); + public void canCreateRouteFilterRule() { + String rfName = generateRandomResourceName("rf", 15); String ruleName = "mynewrule"; RouteFilter routeFilter = networkManager diff --git a/sdk/resourcemanager/azure-resourcemanager-privatedns/pom.xml b/sdk/resourcemanager/azure-resourcemanager-privatedns/pom.xml index a12cafcf0140..2b1242f3ac55 100644 --- a/sdk/resourcemanager/azure-resourcemanager-privatedns/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-privatedns/pom.xml @@ -79,9 +79,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-privatedns/src/main/java/com/azure/resourcemanager/privatedns/PrivateDnsZoneManager.java b/sdk/resourcemanager/azure-resourcemanager-privatedns/src/main/java/com/azure/resourcemanager/privatedns/PrivateDnsZoneManager.java index 4cd6d06188b4..8b946e45aa17 100644 --- a/sdk/resourcemanager/azure-resourcemanager-privatedns/src/main/java/com/azure/resourcemanager/privatedns/PrivateDnsZoneManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-privatedns/src/main/java/com/azure/resourcemanager/privatedns/PrivateDnsZoneManager.java @@ -9,7 +9,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; @@ -87,7 +87,9 @@ private PrivateDnsZoneManager(HttpPipeline httpPipeline, AzureProfile profile, S profile, new PrivateDnsManagementClientBuilder() .pipeline(httpPipeline) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext ); diff --git a/sdk/resourcemanager/azure-resourcemanager-privatedns/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-privatedns/src/main/java/module-info.java new file mode 100644 index 000000000000..4aaa5c791d37 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-privatedns/src/main/java/module-info.java @@ -0,0 +1,11 @@ +module com.azure.resourcemanager.privatedns { + requires transitive com.azure.resourcemanager.resources; + + exports com.azure.resourcemanager.privatedns; + exports com.azure.resourcemanager.privatedns.fluent; + exports com.azure.resourcemanager.privatedns.fluent.inner; + exports com.azure.resourcemanager.privatedns.models; + + opens com.azure.resourcemanager.privatedns.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.privatedns.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-privatedns/src/test/java/com/azure/resourcemanager/privatedns/PrivateDnsZoneRecordSetETagTests.java b/sdk/resourcemanager/azure-resourcemanager-privatedns/src/test/java/com/azure/resourcemanager/privatedns/PrivateDnsZoneRecordSetETagTests.java index 30be80fc39f6..f40f0bd87447 100644 --- a/sdk/resourcemanager/azure-resourcemanager-privatedns/src/test/java/com/azure/resourcemanager/privatedns/PrivateDnsZoneRecordSetETagTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-privatedns/src/test/java/com/azure/resourcemanager/privatedns/PrivateDnsZoneRecordSetETagTests.java @@ -2,7 +2,12 @@ // Licensed under the MIT License. package com.azure.resourcemanager.privatedns; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.core.http.rest.PagedIterable; import com.azure.core.management.exception.ManagementError; import com.azure.core.management.exception.ManagementException; @@ -10,29 +15,50 @@ import com.azure.resourcemanager.privatedns.models.AaaaRecordSet; import com.azure.resourcemanager.privatedns.models.CnameRecordSet; import com.azure.resourcemanager.privatedns.models.PrivateDnsZone; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; -public class PrivateDnsZoneRecordSetETagTests extends TestBase { - private String rgName = ""; +import java.time.temporal.ChronoUnit; +import java.util.List; - public PrivateDnsZoneRecordSetETagTests() { - super(TestBase.RunCondition.BOTH); - } +public class PrivateDnsZoneRecordSetETagTests extends ResourceManagerTestBase { + private String rgName = ""; protected ResourceManager resourceManager; protected PrivateDnsZoneManager privateZoneManager; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); resourceManager = - ResourceManager.authenticate(httpPipeline, profile).withSdkContext(sdkContext).withDefaultSubscription(); - privateZoneManager = PrivateDnsZoneManager.authenticate(httpPipeline, profile, sdkContext); + ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); + privateZoneManager = PrivateDnsZoneManager.authenticate(httpPipeline, profile); rgName = generateRandomResourceName("prdnsrstest", 15); } diff --git a/sdk/resourcemanager/azure-resourcemanager-privatedns/src/test/java/com/azure/resourcemanager/privatedns/VirtualNetworkLinkETagTests.java b/sdk/resourcemanager/azure-resourcemanager-privatedns/src/test/java/com/azure/resourcemanager/privatedns/VirtualNetworkLinkETagTests.java index 20cdaf3fbd74..4b0ad7bcf3ca 100644 --- a/sdk/resourcemanager/azure-resourcemanager-privatedns/src/test/java/com/azure/resourcemanager/privatedns/VirtualNetworkLinkETagTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-privatedns/src/test/java/com/azure/resourcemanager/privatedns/VirtualNetworkLinkETagTests.java @@ -2,7 +2,12 @@ // Licensed under the MIT License. package com.azure.resourcemanager.privatedns; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.core.http.rest.PagedIterable; import com.azure.core.management.exception.ManagementError; import com.azure.core.management.exception.ManagementException; @@ -12,14 +17,18 @@ import com.azure.resourcemanager.privatedns.models.PrivateDnsZone; import com.azure.resourcemanager.privatedns.models.VirtualNetworkLink; import com.azure.resourcemanager.resources.ResourceManager; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.test.ResourceManagerTestBase; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; -public class VirtualNetworkLinkETagTests extends TestBase { +import java.time.temporal.ChronoUnit; +import java.util.List; + +public class VirtualNetworkLinkETagTests extends ResourceManagerTestBase { private final Region region = Region.US_WEST; private String rgName = ""; @@ -28,20 +37,34 @@ public class VirtualNetworkLinkETagTests extends TestBase { private String vnetLinkName = ""; private String nsgName = ""; - public VirtualNetworkLinkETagTests() { - super(TestBase.RunCondition.BOTH); - } - protected ResourceManager resourceManager; protected PrivateDnsZoneManager privateZoneManager; protected NetworkManager networkManager; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { resourceManager = - ResourceManager.authenticate(httpPipeline, profile).withSdkContext(sdkContext).withDefaultSubscription(); - privateZoneManager = PrivateDnsZoneManager.authenticate(httpPipeline, profile, sdkContext); - networkManager = NetworkManager.authenticate(httpPipeline, profile, sdkContext); + ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); + privateZoneManager = PrivateDnsZoneManager.authenticate(httpPipeline, profile); + networkManager = NetworkManager.authenticate(httpPipeline, profile); rgName = generateRandomResourceName("prdnsvnltest", 15); topLevelDomain = "www.contoso" + generateRandomResourceName("z", 10) + ".com"; vnetName = generateRandomResourceName("prdnsvnet", 15); diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/pom.xml b/sdk/resourcemanager/azure-resourcemanager-redis/pom.xml index b52a01953002..8959971c9396 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-redis/pom.xml @@ -11,16 +11,16 @@ 1.7.0 ../../parents/azure-client-sdk-parent - + com.azure.resourcemanager azure-resourcemanager-redis 2.0.0-beta.4 jar - + Microsoft Azure SDK for Redis Cache Management This package contains Microsoft Azure Redis Cache SDK. https://github.com/Azure/azure-sdk-for-java - + The MIT License (MIT) @@ -28,26 +28,26 @@ repo - + https://github.com/Azure/azure-sdk-for-java scm:git:git@github.com:Azure/azure-sdk-for-java.git HEAD - + 0.10 0.10 - + microsoft Microsoft - + com.azure.resourcemanager @@ -73,9 +73,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test @@ -125,7 +125,7 @@ - + org.jacoco jacoco-maven-plugin diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/RedisManager.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/RedisManager.java index 5a45482a200f..f23bef8b2db0 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/RedisManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/com/azure/resourcemanager/redis/RedisManager.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; @@ -88,8 +88,9 @@ private RedisManager(HttpPipeline httpPipeline, AzureProfile profile, SdkContext profile, new RedisManagementClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); } diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/module-info.java new file mode 100644 index 000000000000..9a52790b7370 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/main/java/module-info.java @@ -0,0 +1,11 @@ +module com.azure.resourcemanager.redis { + requires transitive com.azure.resourcemanager.resources; + + exports com.azure.resourcemanager.redis; + exports com.azure.resourcemanager.redis.fluent; + exports com.azure.resourcemanager.redis.fluent.inner; + exports com.azure.resourcemanager.redis.models; + + opens com.azure.resourcemanager.redis.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.redis.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/resourcemanager/redis/RedisManagementTest.java b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/resourcemanager/redis/RedisManagementTest.java index 56bc1139def2..0f529067e173 100644 --- a/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/resourcemanager/redis/RedisManagementTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-redis/src/test/java/com/azure/resourcemanager/redis/RedisManagementTest.java @@ -3,14 +3,25 @@ package com.azure.resourcemanager.redis; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.resourcemanager.resources.ResourceManager; -import com.azure.resourcemanager.resources.core.TestBase; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.storage.StorageManager; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; + +import java.time.temporal.ChronoUnit; +import java.util.List; /** The base for Redis cache manager tests. */ -public class RedisManagementTest extends TestBase { +public class RedisManagementTest extends ResourceManagerTestBase { protected ResourceManager resourceManager; protected RedisManager redisManager; protected StorageManager storageManager; @@ -21,6 +32,24 @@ public class RedisManagementTest extends TestBase { protected String rrNameThird = ""; protected String saName = ""; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { rgName = generateRandomResourceName("javacsmrg", 15); @@ -30,12 +59,11 @@ protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile rrNameThird = rrName + "Third"; saName = generateRandomResourceName("javacsmsa", 15); + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); resourceManager = - ResourceManager.authenticate(httpPipeline, profile).withSdkContext(sdkContext).withDefaultSubscription(); - - redisManager = RedisManager.authenticate(httpPipeline, profile, sdkContext); - - storageManager = StorageManager.authenticate(httpPipeline, profile, sdkContext); + ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); + redisManager = RedisManager.authenticate(httpPipeline, profile); + storageManager = StorageManager.authenticate(httpPipeline, profile); } @Override diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/pom.xml b/sdk/resourcemanager/azure-resourcemanager-resources/pom.xml index 6e0a3ea26768..1ddb5ed86206 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-resources/pom.xml @@ -84,9 +84,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/ResourceManager.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/ResourceManager.java index 43b8cab8a817..5c3952bfc8ab 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/ResourceManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/ResourceManager.java @@ -27,7 +27,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.ManagerBase; import com.azure.resourcemanager.resources.fluentcore.model.HasInner; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.fluentcore.utils.Utils; @@ -166,7 +166,8 @@ private static final class AuthenticatedImpl implements Authenticated { this.sdkContext = new SdkContext(); this.subscriptionClient = new SubscriptionClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) .buildClient(); } @@ -193,15 +194,15 @@ public AuthenticatedImpl withSdkContext(SdkContext sdkContext) { @Override public ResourceManager withSubscription(String subscriptionId) { Objects.requireNonNull(subscriptionId); - profile = new AzureProfile(profile.tenantId(), subscriptionId, profile.environment()); + profile = new AzureProfile(profile.getTenantId(), subscriptionId, profile.getEnvironment()); return new ResourceManager(httpPipeline, profile, sdkContext); } @Override public ResourceManager withDefaultSubscription() { - if (profile.subscriptionId() == null) { + if (profile.getSubscriptionId() == null) { String subscriptionId = Utils.defaultSubscription(this.subscriptions().list()); - profile = new AzureProfile(profile.tenantId(), subscriptionId, profile.environment()); + profile = new AzureProfile(profile.getTenantId(), subscriptionId, profile.getEnvironment()); } return new ResourceManager(httpPipeline, profile, sdkContext); } @@ -212,25 +213,28 @@ private ResourceManager(HttpPipeline httpPipeline, AzureProfile profile, SdkCont super.withResourceManager(this); this.resourceManagementClient = new ResourceManagementClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(); this.featureClient = new FeatureClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(); this.subscriptionClient = new SubscriptionClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) .buildClient(); this.policyClient = new PolicyClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(); } diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/arm/implementation/AzureConfigurableImpl.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/arm/implementation/AzureConfigurableImpl.java index 6218623a3fa5..0b0df7533f8f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/arm/implementation/AzureConfigurableImpl.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/arm/implementation/AzureConfigurableImpl.java @@ -13,7 +13,7 @@ import com.azure.core.util.Configuration; import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.policy.AuxiliaryAuthenticationPolicy; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import java.time.temporal.ChronoUnit; @@ -129,7 +129,7 @@ protected HttpPipeline buildHttpPipeline(TokenCredential credential, AzureProfil Objects.requireNonNull(credential); if (!tokens.isEmpty()) { policies.add( - new AuxiliaryAuthenticationPolicy(profile.environment(), tokens.toArray(new TokenCredential[0]))); + new AuxiliaryAuthenticationPolicy(profile.getEnvironment(), tokens.toArray(new TokenCredential[0]))); } return HttpPipelineProvider.buildHttpPipeline(credential, profile, scopes(), httpLogOptions, configuration, retryPolicy, policies, httpClient); diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/arm/implementation/Manager.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/arm/implementation/Manager.java index 267c02ebc358..999ef4379165 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/arm/implementation/Manager.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/arm/implementation/Manager.java @@ -5,7 +5,7 @@ import com.azure.core.http.HttpPipeline; import com.azure.resourcemanager.resources.fluentcore.model.HasInner; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; /** diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/arm/implementation/ManagerBase.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/arm/implementation/ManagerBase.java index a6febdbd21ca..372cea97abfe 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/arm/implementation/ManagerBase.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/arm/implementation/ManagerBase.java @@ -5,7 +5,7 @@ import com.azure.core.http.HttpPipeline; import com.azure.core.management.AzureEnvironment; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.ResourceManager; @@ -27,8 +27,8 @@ protected ManagerBase(HttpPipeline httpPipeline, AzureProfile profile, SdkContex .withSdkContext(sdkContext) .withDefaultSubscription(); } - this.subscriptionId = profile.subscriptionId(); - this.environment = profile.environment(); + this.subscriptionId = profile.getSubscriptionId(); + this.environment = profile.getEnvironment(); this.sdkContext = sdkContext; } diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/policy/ProviderRegistrationPolicy.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/policy/ProviderRegistrationPolicy.java index ac8386bbaf5e..c8d1cf2c0817 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/policy/ProviderRegistrationPolicy.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/policy/ProviderRegistrationPolicy.java @@ -13,7 +13,7 @@ import com.azure.core.util.FluxUtil; import com.azure.core.util.serializer.SerializerEncoding; import com.azure.resourcemanager.resources.models.Provider; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.ResourceManager; import reactor.core.publisher.Mono; diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/profile/AzureProfile.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/profile/AzureProfile.java deleted file mode 100644 index ebafb33eb7df..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/profile/AzureProfile.java +++ /dev/null @@ -1,80 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources.fluentcore.profile; - -import com.azure.core.management.AzureEnvironment; -import com.azure.core.util.Configuration; - -import java.util.Objects; - -/** - * Azure profile for client. - */ -public class AzureProfile { - - private final String tenantId; - private final String subscriptionId; - private final AzureEnvironment environment; - - /** - * Creates AzureProfile instance with Azure environment. The global environment is {@link AzureEnvironment#AZURE}. - * The tenant ID and subscription ID can be set via environment variables. The environment variables are expected - * as below: - *
    - *
  • {@link Configuration#PROPERTY_AZURE_TENANT_ID AZURE_TENANT_ID}
  • - *
  • {@link Configuration#PROPERTY_AZURE_SUBSCRIPTION_ID AZURE_SUBSCRIPTION_ID}
  • - *
- * - * @param environment the Azure environment - */ - public AzureProfile(AzureEnvironment environment) { - Objects.requireNonNull(environment); - this.environment = environment; - Configuration configuration = Configuration.getGlobalConfiguration(); - this.tenantId = configuration.get(Configuration.PROPERTY_AZURE_TENANT_ID); - this.subscriptionId = configuration.get(Configuration.PROPERTY_AZURE_SUBSCRIPTION_ID); - } - - /** - * Creates AzureProfile instance with tenant ID, subscription ID and Azure environment. - * The global environment is {@link AzureEnvironment#AZURE}. - * - * @param tenantId the tenant ID required for Graph Rbac - * @param subscriptionId the subscription ID required for resource management - * @param environment the Azure environment - */ - public AzureProfile(String tenantId, String subscriptionId, AzureEnvironment environment) { - Objects.requireNonNull(environment); - this.tenantId = tenantId; - this.subscriptionId = subscriptionId; - this.environment = environment; - } - - /** - * Gets tenant ID. - * - * @return the tenant ID - */ - public String tenantId() { - return this.tenantId; - } - - /** - * Gets subscription ID. - * - * @return the subscription ID - */ - public String subscriptionId() { - return this.subscriptionId; - } - - /** - * Gets Azure environment. - * - * @return the Azure environment - */ - public AzureEnvironment environment() { - return environment; - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/profile/package-info.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/profile/package-info.java deleted file mode 100644 index 6472c0e99009..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/profile/package-info.java +++ /dev/null @@ -1,8 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. - -/** - * This package contains the base classes for resources azure profile. - */ -package com.azure.resourcemanager.resources.fluentcore.profile; diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/DelayProvider.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/DelayProvider.java deleted file mode 100644 index feec6ec3234b..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/DelayProvider.java +++ /dev/null @@ -1,67 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources.fluentcore.utils; - -import java.time.Duration; -import java.time.OffsetDateTime; - -/** - * A wrapper class for thread sleep. - */ -public class DelayProvider { - /** - * Puts current thread on sleep for passed milliseconds. - * - * @param milliseconds time to sleep for - */ - - private int longRunningOperationRetryTimeout = 30; - - /** - * Wrapper for long-running operation retry timeout. - * - * @param lroRetryTimeout timeout value in seconds - */ - public void setLroRetryTimeout(int lroRetryTimeout) { - this.longRunningOperationRetryTimeout = lroRetryTimeout; - } - - /** - * Thread sleep. - * - * @param milliseconds time for sleep - */ - public void sleep(int milliseconds) { - try { - Thread.sleep(milliseconds); - } catch (InterruptedException e) { - } - } - - /** - * @return the current time. - */ - public OffsetDateTime now() { - return OffsetDateTime.now(); - } - - /** - * Creates an observable that emits the given item after the specified time in milliseconds. - * - * @return delayed observable - */ - public Duration getLroRetryTimeout() { - return Duration.ofSeconds(this.longRunningOperationRetryTimeout); - } - - /** - * Wrapper for the duration for delay. - * - * @param delay the duration of proposed delay. - * @return the duration of delay. - */ - public Duration getDelayDuration(Duration delay) { - return delay; - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/FileProvider.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/FileProvider.java deleted file mode 100644 index ee876103f43c..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/FileProvider.java +++ /dev/null @@ -1,32 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources.fluentcore.utils; - -import java.io.File; -import java.io.IOException; - -/** - * The wrapper class for file related operations. - */ -public class FileProvider { - /** - * Prepares the location for file to be created. - * @param file the file to be created. - * @throws IOException thrown when failed on IO. - */ - public void prepareFileLocation(File file) throws IOException { - // do nothing - } - - /** - * Prepares the location for file to be created. - * @param files the files to be created. - * @throws IOException thrown when failed on IO. - */ - public void prepareFileLocation(File... files) throws IOException { - for (File file : files) { - prepareFileLocation(file); - } - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/HttpPipelineProvider.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/HttpPipelineProvider.java index b3ad6760862d..2e239151f11c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/HttpPipelineProvider.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/HttpPipelineProvider.java @@ -19,7 +19,7 @@ import com.azure.resourcemanager.resources.fluentcore.policy.AuthenticationPolicy; import com.azure.resourcemanager.resources.fluentcore.policy.UserAgentPolicy; import com.azure.resourcemanager.resources.fluentcore.policy.ProviderRegistrationPolicy; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import java.time.temporal.ChronoUnit; import java.util.ArrayList; @@ -69,7 +69,7 @@ public static HttpPipeline buildHttpPipeline( policies.add(retryPolicy); policies.add(new AddDatePolicy()); if (credential != null) { - policies.add(new AuthenticationPolicy(credential, profile.environment(), scopes)); + policies.add(new AuthenticationPolicy(credential, profile.getEnvironment(), scopes)); } policies.add(new ProviderRegistrationPolicy(credential, profile)); if (additionalPolicies != null && !additionalPolicies.isEmpty()) { diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/ResourceDelayProvider.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/ResourceDelayProvider.java new file mode 100644 index 000000000000..474ab32b07c3 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/ResourceDelayProvider.java @@ -0,0 +1,17 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +package com.azure.resourcemanager.resources.fluentcore.utils; + +import com.azure.core.management.provider.DelayProvider; + +import java.time.Duration; + +/** + * The ResourceDelayProvider to help thread sleep. + */ +public class ResourceDelayProvider implements DelayProvider { + @Override + public Duration getDelayDuration(Duration delay) { + return delay; + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/ResourceNamer.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/ResourceNamer.java index 77050020666d..657ca1ce7e6f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/ResourceNamer.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/ResourceNamer.java @@ -1,10 +1,9 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. - package com.azure.resourcemanager.resources.fluentcore.utils; +import com.azure.core.management.provider.IdentifierProvider; -import java.time.OffsetDateTime; import java.util.Locale; import java.util.Random; import java.util.UUID; @@ -12,27 +11,22 @@ /** * The ResourceNamer to generate random name. */ -public class ResourceNamer { +public class ResourceNamer implements IdentifierProvider { + private final String randName; private static final Random RANDOM = new Random(); /** - * Creates ResourceNamer. + * Constructs a ResourceNamer * - * @param name the randName + * @param name the name */ public ResourceNamer(String name) { this.randName = name.toLowerCase(Locale.ROOT) + UUID.randomUUID().toString().replace("-", "").substring(0, 3).toLowerCase(Locale.ROOT); } - /** - * Gets a random name. - * - * @param prefix the prefix to be used if possible - * @param maxLen the max length for the random generated name - * @return the random name - */ + @Override public String randomName(String prefix, int maxLen) { prefix = prefix.toLowerCase(Locale.ROOT); int minRandomnessLength = 5; @@ -55,29 +49,18 @@ public String randomName(String prefix, int maxLen) { return str + randomString((maxLen - str.length()) / 2); } - /** - * Creates a random UUID. - * - * @return the UUID string. - */ + @Override public String randomUuid() { return UUID.randomUUID().toString(); } - /** - * @return the current time offset. - */ - public OffsetDateTime dateTimeNow() { - return OffsetDateTime.now(); - } - private String randomString(int length) { StringBuilder str = new StringBuilder(); while (str.length() < length) { str.append(UUID.randomUUID() - .toString() - .replace("-", "") - .substring(0, Math.min(32, length)).toLowerCase(Locale.ROOT)); + .toString() + .replace("-", "") + .substring(0, Math.min(32, length)).toLowerCase(Locale.ROOT)); } return str.toString(); } diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/ResourceNamerFactory.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/ResourceNamerFactory.java deleted file mode 100644 index 96a3193bf72e..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/ResourceNamerFactory.java +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources.fluentcore.utils; - -/** - * The ResourceNamerFactory to generate ResourceNamer. - */ -public class ResourceNamerFactory { - /** - * Factory method to generate instance of ResourceNamer. - * @param name prefix for the names. - * @return instance of ResourceNamer - */ - public ResourceNamer createResourceNamer(String name) { - return new ResourceNamer(name); - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/SdkContext.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/SdkContext.java index 8ebb2edaf7a9..5f0cd94f9e96 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/SdkContext.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/com/azure/resourcemanager/resources/fluentcore/utils/SdkContext.java @@ -3,22 +3,23 @@ package com.azure.resourcemanager.resources.fluentcore.utils; +import com.azure.core.management.provider.DelayProvider; +import com.azure.core.management.provider.IdentifierProvider; import reactor.core.scheduler.Scheduler; import reactor.core.scheduler.Schedulers; -import java.io.File; -import java.io.IOException; import java.time.Duration; import java.time.OffsetDateTime; +import java.util.function.Function; /** * The class to contain the common factory methods required for SDK framework. */ public class SdkContext { - private ResourceNamerFactory resourceNamerFactory = new ResourceNamerFactory(); - private static DelayProvider delayProvider = new DelayProvider(); - private static FileProvider fileProvider = new FileProvider(); + private Function identifierFunction = name -> new ResourceNamer(name); + private static DelayProvider delayProvider = new ResourceDelayProvider(); private static Scheduler reactorScheduler = Schedulers.boundedElastic(); + private static int longRunningOperationRetryTimeout = 30; /** * Default constructor for SdkContext. @@ -26,21 +27,22 @@ public class SdkContext { public SdkContext() { } /** - * Function to override the ResourceNamerFactory. + * Sets the resource namer * - * @param resourceNamerFactory factory to override. + * @param identifierFunction the function. */ - public void setResourceNamerFactory(ResourceNamerFactory resourceNamerFactory) { - this.resourceNamerFactory = resourceNamerFactory; + public void setIdentifierFunction(Function identifierFunction) { + this.identifierFunction = identifierFunction; } /** - * Gets the current factory for ResourceNamer. + * Creates a resource namer * - * @return resourceNamer factory. + * @param name the name value. + * @return the new resource namer */ - public ResourceNamerFactory getResourceNamerFactory() { - return this.resourceNamerFactory; + public IdentifierProvider createIdentifierProvider(String name) { + return identifierFunction.apply(name); } /** @@ -51,8 +53,7 @@ public ResourceNamerFactory getResourceNamerFactory() { * @return the random name */ public String randomResourceName(String prefix, int maxLen) { - ResourceNamer resourceNamer = getResourceNamerFactory().createResourceNamer(""); - return resourceNamer.randomName(prefix, maxLen); + return identifierFunction.apply("").randomName(prefix, maxLen); } /** @@ -65,7 +66,7 @@ public String randomResourceName(String prefix, int maxLen) { */ public String[] randomResourceNames(String prefix, int maxLen, int count) { String[] names = new String[count]; - ResourceNamer resourceNamer = getResourceNamerFactory().createResourceNamer(""); + IdentifierProvider resourceNamer = identifierFunction.apply(""); for (int i = 0; i < count; i++) { names[i] = resourceNamer.randomName(prefix, maxLen); } @@ -78,8 +79,7 @@ public String[] randomResourceNames(String prefix, int maxLen, int count) { * @return the random UUID. */ public String randomUuid() { - ResourceNamer resourceNamer = getResourceNamerFactory().createResourceNamer(""); - return resourceNamer.randomUuid(); + return identifierFunction.apply("").randomUuid(); } /** @@ -97,7 +97,10 @@ public static void setDelayProvider(DelayProvider delayProvider) { * @param milliseconds number of millisecond for which thread should put on sleep. */ public static void sleep(int milliseconds) { - delayProvider.sleep(milliseconds); + try { + Thread.sleep(delayProvider.getDelayDuration(Duration.ofMillis(milliseconds)).toMillis()); + } catch (InterruptedException e) { + } } /** @@ -106,7 +109,7 @@ public static void sleep(int milliseconds) { * @param lroRetryTimeout timeout value in seconds */ public static void setLroRetryTimeOut(int lroRetryTimeout) { - delayProvider.setLroRetryTimeout(lroRetryTimeout); + longRunningOperationRetryTimeout = lroRetryTimeout; } /** @@ -125,15 +128,14 @@ public static Duration getDelayDuration(Duration delay) { * @return the duration */ public static Duration getLroRetryDuration() { - return delayProvider.getLroRetryTimeout(); + return delayProvider.getDelayDuration(Duration.ofSeconds(longRunningOperationRetryTimeout)); } /** * @return the current date time. */ public OffsetDateTime dateTimeNow() { - ResourceNamer resourceNamer = getResourceNamerFactory().createResourceNamer(""); - return resourceNamer.dateTimeNow(); + return OffsetDateTime.now(); } @@ -154,21 +156,4 @@ public static Scheduler getReactorScheduler() { public static void setReactorScheduler(Scheduler reactorScheduler) { SdkContext.reactorScheduler = reactorScheduler; } - - /** - * Sets the FileProvider for SDK framework, by default it does nothing. - * @param fileProvider the FileProvider to override. - */ - public static void setFileProvider(FileProvider fileProvider) { - SdkContext.fileProvider = fileProvider; - } - - /** - * Prepares the location for file to be created. - * @param files the files to be created. - * @throws IOException thrown when failed on IO. - */ - public static void prepareFileLocation(File... files) throws IOException { - fileProvider.prepareFileLocation(files); - } } diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/module-info.java new file mode 100644 index 000000000000..81837b3a6a07 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/main/java/module-info.java @@ -0,0 +1,51 @@ +module com.azure.resourcemanager.resources { + requires transitive com.azure.core.management; + requires com.github.spotbugs.annotations; + + exports com.azure.resourcemanager.resources.fluentcore; + exports com.azure.resourcemanager.resources.fluentcore.arm; + exports com.azure.resourcemanager.resources.fluentcore.arm.collection; + exports com.azure.resourcemanager.resources.fluentcore.arm.models; + exports com.azure.resourcemanager.resources.fluentcore.collection; + exports com.azure.resourcemanager.resources.fluentcore.dag; + exports com.azure.resourcemanager.resources.fluentcore.model; + exports com.azure.resourcemanager.resources.fluentcore.rest; + exports com.azure.resourcemanager.resources.fluentcore.utils; + + exports com.azure.resourcemanager.resources; + exports com.azure.resourcemanager.resources.models; + exports com.azure.resourcemanager.resources.fluent; + exports com.azure.resourcemanager.resources.fluent.inner; + + opens com.azure.resourcemanager.resources.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.resources.models to com.fasterxml.jackson.databind, com.azure.core; + + exports com.azure.resourcemanager.resources.fluentcore.arm.collection.implementation + to com.azure.resourcemanager.storage, com.azure.resourcemanager.authorization, com.azure.resourcemanager.keyvault, + com.azure.resourcemanager.msi, com.azure.resourcemanager.network, com.azure.resourcemanager.compute, + com.azure.resourcemanager.sql, com.azure.resourcemanager.dns, com.azure.resourcemanager.appservice, + com.azure.resourcemanager.cosmos, com.azure.resourcemanager.containerservice, com.azure.resourcemanager.monitor, + com.azure.resourcemanager.containerregistry, com.azure.resourcemanager.appplatform, com.azure.resourcemanager.containerinstance, + com.azure.resourcemanager.privatedns, com.azure.resourcemanager.redis, com.azure.resourcemanager; + exports com.azure.resourcemanager.resources.fluentcore.arm.implementation + to com.azure.resourcemanager.storage, com.azure.resourcemanager.authorization, com.azure.resourcemanager.keyvault, + com.azure.resourcemanager.msi, com.azure.resourcemanager.network, com.azure.resourcemanager.compute, + com.azure.resourcemanager.sql, com.azure.resourcemanager.dns, com.azure.resourcemanager.appservice, + com.azure.resourcemanager.cosmos, com.azure.resourcemanager.containerservice, com.azure.resourcemanager.monitor, + com.azure.resourcemanager.containerregistry, com.azure.resourcemanager.appplatform, com.azure.resourcemanager.containerinstance, + com.azure.resourcemanager.privatedns, com.azure.resourcemanager.redis, com.azure.resourcemanager; + exports com.azure.resourcemanager.resources.fluentcore.arm.models.implementation + to com.azure.resourcemanager.storage, com.azure.resourcemanager.authorization, com.azure.resourcemanager.keyvault, + com.azure.resourcemanager.msi, com.azure.resourcemanager.network, com.azure.resourcemanager.compute, + com.azure.resourcemanager.sql, com.azure.resourcemanager.dns, com.azure.resourcemanager.appservice, + com.azure.resourcemanager.cosmos, com.azure.resourcemanager.containerservice, com.azure.resourcemanager.monitor, + com.azure.resourcemanager.containerregistry, com.azure.resourcemanager.appplatform, com.azure.resourcemanager.containerinstance, + com.azure.resourcemanager.privatedns, com.azure.resourcemanager.redis, com.azure.resourcemanager; + exports com.azure.resourcemanager.resources.fluentcore.model.implementation + to com.azure.resourcemanager.storage, com.azure.resourcemanager.authorization, com.azure.resourcemanager.keyvault, + com.azure.resourcemanager.msi, com.azure.resourcemanager.network, com.azure.resourcemanager.compute, + com.azure.resourcemanager.sql, com.azure.resourcemanager.dns, com.azure.resourcemanager.appservice, + com.azure.resourcemanager.cosmos, com.azure.resourcemanager.containerservice, com.azure.resourcemanager.monitor, + com.azure.resourcemanager.containerregistry, com.azure.resourcemanager.appplatform, com.azure.resourcemanager.containerinstance, + com.azure.resourcemanager.privatedns, com.azure.resourcemanager.redis, com.azure.resourcemanager; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/DeploymentsTests.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/DeploymentsTests.java index b845966201f4..8d59653d5645 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/DeploymentsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/DeploymentsTests.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Accepted; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.models.Deployment; import com.azure.resourcemanager.resources.models.DeploymentMode; @@ -28,7 +28,7 @@ import java.util.Optional; -public class DeploymentsTests extends ResourceManagerTestBase { +public class DeploymentsTests extends ResourceManagementTest { private ResourceGroups resourceGroups; private ResourceGroup resourceGroup; @@ -44,7 +44,7 @@ public class DeploymentsTests extends ResourceManagerTestBase { @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { super.initializeClients(httpPipeline, profile); - testId = sdkContext.randomResourceName("", 9); + testId = generateRandomResourceName("", 9); resourceGroups = resourceClient.resourceGroups(); rgName = "rg" + testId; resourceGroup = resourceGroups.define(rgName) @@ -300,7 +300,7 @@ public void canDeployVirtualNetworkSyncPollWithFailure() throws Exception { Deployment deployment = acceptedDeployment.getFinalResult(); Assertions.assertEquals("Succeeded", deployment.provisioningState()); - final String newRgName = sdkContext.randomResourceName("rg", 10); + final String newRgName = generateRandomResourceName("rg", 10); try { final String dp2 = "dpF" + testId; diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/GenericResourcesTests.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/GenericResourcesTests.java index bc5a4fd92d3d..5d4019432b3a 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/GenericResourcesTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/GenericResourcesTests.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.arm.ResourceUtils; import com.azure.resourcemanager.resources.fluentcore.model.Accepted; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.models.GenericResource; import com.azure.resourcemanager.resources.models.GenericResources; @@ -23,7 +23,7 @@ import java.util.Arrays; import java.util.Optional; -public class GenericResourcesTests extends ResourceManagerTestBase { +public class GenericResourcesTests extends ResourceManagementTest { private ResourceGroups resourceGroups; private GenericResources genericResources; @@ -33,7 +33,7 @@ public class GenericResourcesTests extends ResourceManagerTestBase { @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { - testId = sdkContext.randomResourceName("", 9); + testId = generateRandomResourceName("", 9); rgName = "rg" + testId; newRgName = "rgB" + testId; diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/PolicyTests.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/PolicyTests.java index 2c74b45231c4..3b0b5c02df4e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/PolicyTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/PolicyTests.java @@ -3,11 +3,8 @@ package com.azure.resourcemanager.resources; -import com.azure.core.http.HttpPipeline; import com.azure.core.http.rest.PagedIterable; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.core.TestUtilities; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; import com.azure.resourcemanager.resources.models.GenericResource; import com.azure.resourcemanager.resources.models.PolicyAssignment; import com.azure.resourcemanager.resources.models.PolicyDefinition; @@ -18,30 +15,16 @@ import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; -public class PolicyTests extends TestBase { - protected ResourceManager resourceManager; +public class PolicyTests extends ResourceManagementTest { private String policyRule = "{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}"; - @Override - protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { - resourceManager = ResourceManager - .authenticate(httpPipeline, profile) - .withSdkContext(sdkContext) - .withDefaultSubscription(); - } - - @Override - protected void cleanUpResources() { - - } - @Test public void canCRUDPolicyDefinition() throws Exception { String policyName = generateRandomResourceName("policy", 15); String displayName = generateRandomResourceName("mypolicy", 15); try { // Create - PolicyDefinition definition = resourceManager.policyDefinitions().define(policyName) + PolicyDefinition definition = resourceClient.policyDefinitions().define(policyName) .withPolicyRuleJson(policyRule) .withPolicyType(PolicyType.CUSTOM) .withDisplayName(displayName) @@ -52,7 +35,7 @@ public void canCRUDPolicyDefinition() throws Exception { Assertions.assertEquals(displayName, definition.displayName()); Assertions.assertEquals("This is my policy", definition.description()); // List - PagedIterable definitions = resourceManager.policyDefinitions().list(); + PagedIterable definitions = resourceClient.policyDefinitions().list(); boolean found = false; for (PolicyDefinition def : definitions) { if (definition.id().equalsIgnoreCase(def.id())) { @@ -61,12 +44,12 @@ public void canCRUDPolicyDefinition() throws Exception { } Assertions.assertTrue(found); // Get - definition = resourceManager.policyDefinitions().getByName(policyName); + definition = resourceClient.policyDefinitions().getByName(policyName); Assertions.assertNotNull(definition); Assertions.assertEquals(displayName, definition.displayName()); } finally { // Delete - resourceManager.policyDefinitions().deleteByName(policyName); + resourceClient.policyDefinitions().deleteByName(policyName); } } @@ -80,17 +63,17 @@ public void canCRUDPolicyAssignment() throws Exception { String resourceName = generateRandomResourceName("webassignment", 15); try { // Create definition - PolicyDefinition definition = resourceManager.policyDefinitions().define(policyName) + PolicyDefinition definition = resourceClient.policyDefinitions().define(policyName) .withPolicyRuleJson(policyRule) .withPolicyType(PolicyType.CUSTOM) .withDisplayName(displayName) .withDescription("This is my policy") .create(); // Create assignment - ResourceGroup group = resourceManager.resourceGroups().define(rgName) + ResourceGroup group = resourceClient.resourceGroups().define(rgName) .withRegion(Region.UK_WEST) .create(); - PolicyAssignment assignment1 = resourceManager.policyAssignments().define(assignmentName1) + PolicyAssignment assignment1 = resourceClient.policyAssignments().define(assignmentName1) .forResourceGroup(group) .withPolicyDefinition(definition) .withDisplayName("My Assignment") @@ -99,7 +82,7 @@ public void canCRUDPolicyAssignment() throws Exception { Assertions.assertNotNull(assignment1); Assertions.assertEquals("My Assignment", assignment1.displayName()); - GenericResource resource = resourceManager.genericResources().define(resourceName) + GenericResource resource = resourceClient.genericResources().define(resourceName) .withRegion(Region.US_SOUTH_CENTRAL) .withExistingResourceGroup(group) .withResourceType("sites") @@ -110,7 +93,7 @@ public void canCRUDPolicyAssignment() throws Exception { .withProperties(new ObjectMapper().readTree("{\"SiteMode\":\"Limited\",\"ComputeMode\":\"Shared\"}")) .create(); - PolicyAssignment assignment2 = resourceManager.policyAssignments().define(assignmentName2) + PolicyAssignment assignment2 = resourceClient.policyAssignments().define(assignmentName2) .forResource(resource) .withPolicyDefinition(definition) .withDisplayName("My Assignment 2") @@ -119,7 +102,7 @@ public void canCRUDPolicyAssignment() throws Exception { Assertions.assertNotNull(assignment2); Assertions.assertEquals("My Assignment 2", assignment2.displayName()); - PagedIterable assignments = resourceManager.policyAssignments().listByResourceGroup(rgName); + PagedIterable assignments = resourceClient.policyAssignments().listByResourceGroup(rgName); Assertions.assertTrue(TestUtilities.getSize(assignments) >= 2); boolean foundAssignment1 = false; @@ -135,11 +118,11 @@ public void canCRUDPolicyAssignment() throws Exception { Assertions.assertTrue(foundAssignment2); // Delete - resourceManager.policyAssignments().deleteById(assignment1.id()); - resourceManager.policyAssignments().deleteById(assignment2.id()); - resourceManager.policyDefinitions().deleteByName(policyName); + resourceClient.policyAssignments().deleteById(assignment1.id()); + resourceClient.policyAssignments().deleteById(assignment2.id()); + resourceClient.policyDefinitions().deleteByName(policyName); } finally { - resourceManager.resourceGroups().deleteByName(rgName); + resourceClient.resourceGroups().deleteByName(rgName); } } } diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ProvidersTests.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ProvidersTests.java index 21180a44e318..daed4d94ad4d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ProvidersTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ProvidersTests.java @@ -3,11 +3,8 @@ package com.azure.resourcemanager.resources; -import com.azure.core.http.HttpPipeline; import com.azure.core.http.rest.PagedIterable; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.core.TestUtilities; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.models.Provider; import com.azure.resourcemanager.resources.models.ProviderResourceType; @@ -16,38 +13,25 @@ import java.util.List; -public class ProvidersTests extends TestBase { - protected ResourceManager resourceManager; - - @Override - protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { - resourceManager = ResourceManager - .authenticate(httpPipeline, profile) - .withSdkContext(sdkContext) - .withDefaultSubscription(); - } - - @Override - protected void cleanUpResources() { - } +public class ProvidersTests extends ResourceManagementTest { @Test public void canUnregisterAndRegisterProvider() throws Exception { - PagedIterable providers = resourceManager.providers().list(); + PagedIterable providers = resourceClient.providers().list(); int size = TestUtilities.getSize(providers); Assertions.assertTrue(size > 0); Provider provider = providers.iterator().next(); - resourceManager.providers().unregister(provider.namespace()); - provider = resourceManager.providers().getByName(provider.namespace()); + resourceClient.providers().unregister(provider.namespace()); + provider = resourceClient.providers().getByName(provider.namespace()); while (provider.registrationState().equals("Unregistering")) { SdkContext.sleep(5000); - provider = resourceManager.providers().getByName(provider.namespace()); + provider = resourceClient.providers().getByName(provider.namespace()); } - resourceManager.providers().register(provider.namespace()); + resourceClient.providers().register(provider.namespace()); while (provider.registrationState().equals("Unregistered") || provider.registrationState().equalsIgnoreCase("Registering")) { SdkContext.sleep(5 * 1000); - provider = resourceManager.providers().getByName(provider.namespace()); + provider = resourceClient.providers().getByName(provider.namespace()); } Assertions.assertEquals("Registered", provider.registrationState()); List resourceTypes = provider.resourceTypes(); diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ResourceGroupsTests.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ResourceGroupsTests.java index 9e25f5ab16c5..c09219edaf56 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ResourceGroupsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ResourceGroupsTests.java @@ -5,13 +5,13 @@ import com.azure.core.http.HttpPipeline; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.resources.models.ResourceGroups; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; -public class ResourceGroupsTests extends ResourceManagerTestBase { +public class ResourceGroupsTests extends ResourceManagementTest { private ResourceGroups resourceGroups; @Override @@ -21,8 +21,8 @@ protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile } @Test - public void canCreateResourceGroup() throws Exception { - final String rgName = sdkContext.randomResourceName("rg", 9); + public void canCreateResourceGroup() { + final String rgName = generateRandomResourceName("rg", 9); Region region = Region.US_SOUTH_CENTRAL; // Create resourceGroups.define(rgName) diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ResourceManagementTest.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ResourceManagementTest.java new file mode 100644 index 000000000000..bb8ff9267a50 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ResourceManagementTest.java @@ -0,0 +1,57 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +package com.azure.resourcemanager.resources; + +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; +import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; +import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; + +import java.time.temporal.ChronoUnit; +import java.util.List; + +/** + * The base for resource manager tests. + */ +class ResourceManagementTest extends ResourceManagerTestBase { + protected ResourceManager resourceClient; + + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + + @Override + protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + resourceClient = ResourceManager + .authenticate(httpPipeline, profile) + .withDefaultSubscription(); + } + + @Override + protected void cleanUpResources() { + + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ResourceManagerTestBase.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ResourceManagerTestBase.java deleted file mode 100644 index 09bab3d2b3db..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/ResourceManagerTestBase.java +++ /dev/null @@ -1,29 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources; - -import com.azure.core.http.HttpPipeline; -import com.azure.resourcemanager.resources.core.TestBase; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; - -/** - * The base for resource manager tests. - */ -class ResourceManagerTestBase extends TestBase { - protected ResourceManager resourceClient; - - @Override - protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { - resourceClient = ResourceManager - .authenticate(httpPipeline, profile) - .withSdkContext(sdkContext) - .withDefaultSubscription(); - - } - - @Override - protected void cleanUpResources() { - - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/SubscriptionsTests.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/SubscriptionsTests.java index fb66619bfba6..2ae65f182559 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/SubscriptionsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/SubscriptionsTests.java @@ -3,24 +3,53 @@ package com.azure.resourcemanager.resources; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.core.http.rest.PagedIterable; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.core.TestUtilities; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.models.Location; import com.azure.resourcemanager.resources.models.Subscription; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; -public class SubscriptionsTests extends TestBase { +import java.time.temporal.ChronoUnit; +import java.util.List; + +public class SubscriptionsTests extends ResourceManagerTestBase { protected ResourceManager.Authenticated resourceManager; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); resourceManager = ResourceManager - .authenticate(httpPipeline, profile) - .withSdkContext(sdkContext); + .authenticate(httpPipeline, profile); } @Override @@ -29,13 +58,13 @@ protected void cleanUpResources() { } @Test - public void canListSubscriptions() throws Exception { + public void canListSubscriptions() { PagedIterable subscriptions = resourceManager.subscriptions().list(); Assertions.assertTrue(TestUtilities.getSize(subscriptions) > 0); } @Test - public void canListLocations() throws Exception { + public void canListLocations() { PagedIterable locations = resourceManager.subscriptions().list().iterator().next().listLocations(); Assertions.assertTrue(TestUtilities.getSize(locations) > 0); } diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/TenantsTests.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/TenantsTests.java index db2a30319ae4..ddc8ac15bd00 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/TenantsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/TenantsTests.java @@ -3,23 +3,52 @@ package com.azure.resourcemanager.resources; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.core.http.rest.PagedIterable; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.core.TestUtilities; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluent.inner.TenantIdDescriptionInner; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; -public class TenantsTests extends TestBase { +import java.time.temporal.ChronoUnit; +import java.util.List; + +public class TenantsTests extends ResourceManagerTestBase { protected ResourceManager.Authenticated resourceManager; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); resourceManager = ResourceManager - .authenticate(httpPipeline, profile) - .withSdkContext(sdkContext); + .authenticate(httpPipeline, profile); } @Override @@ -28,7 +57,7 @@ protected void cleanUpResources() { } @Test - public void canListTenants() throws Exception { + public void canListTenants() { PagedIterable tenants = resourceManager.tenants().list(); Assertions.assertTrue(TestUtilities.getSize(tenants) > 0); } diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/TooManyRequestsRetryInterceptorTests.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/TooManyRequestsRetryInterceptorTests.java index 8a0c2afc87a4..6b4cfee586d6 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/TooManyRequestsRetryInterceptorTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/TooManyRequestsRetryInterceptorTests.java @@ -18,7 +18,7 @@ //import rx.functions.Func1; //import rx.schedulers.Schedulers; // -//public class TooManyRequestsRetryInterceptorTests extends ResourceManagerTestBase { +//public class TooManyRequestsRetryInterceptorTests extends ResourceManagementTest { // private static ResourceGroups resourceGroups; // // private String rgName; diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/InterceptorManager.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/InterceptorManager.java deleted file mode 100644 index f0c6cd236f72..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/InterceptorManager.java +++ /dev/null @@ -1,345 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -package com.azure.resourcemanager.resources.core; - -import com.azure.core.http.HttpHeaders; -import com.azure.core.http.HttpPipelineCallContext; -import com.azure.core.http.HttpPipelineNextPolicy; -import com.azure.core.http.HttpRequest; -import com.azure.core.http.HttpResponse; -import com.azure.core.http.policy.HttpPipelinePolicy; -import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; -import com.fasterxml.jackson.databind.ObjectMapper; -import com.fasterxml.jackson.databind.SerializationFeature; -import com.nimbusds.jose.util.IOUtils; -import reactor.core.publisher.Mono; -import reactor.core.scheduler.Schedulers; - -import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; -import java.io.File; -import java.io.IOException; -import java.net.URI; -import java.net.URL; -import java.nio.charset.StandardCharsets; -import java.util.HashMap; -import java.util.Iterator; -import java.util.Map; -import java.util.zip.GZIPInputStream; - -/** - * Created by vlashch on 7/13/2017. - */ -public final class InterceptorManager { - - private static final String RECORD_FOLDER = "session-records/"; - private static final String BODY_LOGGING = "x-ms-body-logging"; - private static final int HTTP_TEMPORARY_REDIRECT = 307; // HTTP Status Code - - private Map textReplacementRules = new HashMap<>(); - // Stores a map of all the HTTP properties in a session - // A state machine ensuring a test is always reset before another one is setup - - protected RecordedData recordedData = new RecordedData(); - - private final String testName; - - private final TestBase.TestMode testMode; - - private InterceptorManager(String testName, TestBase.TestMode testMode) { - this.testName = testName; - this.testMode = testMode; - } - - public void addTextReplacementRule(String regex, String replacement) { - textReplacementRules.put(regex, replacement); - } - - // factory method - public static InterceptorManager create(String testName, TestBase.TestMode testMode) throws IOException { - InterceptorManager interceptorManager = new InterceptorManager(testName, testMode); - SdkContext.setDelayProvider(new TestDelayProvider(interceptorManager.isRecordMode() || interceptorManager.isNoneMode())); - SdkContext.setFileProvider(new TestFileProvider(interceptorManager.isRecordMode())); - if (!interceptorManager.isNoneMode()) { - SdkContext.setReactorScheduler(Schedulers.boundedElastic()); - } - return interceptorManager; - } - - public boolean isRecordMode() { - return testMode == TestBase.TestMode.RECORD; - } - - public boolean isNoneMode() { - return testMode == TestBase.TestMode.NONE; - } - - public boolean isPlaybackMode() { - return testMode == TestBase.TestMode.PLAYBACK; - } - - public HttpPipelinePolicy initInterceptor() throws IOException { - switch (testMode) { - case RECORD: - recordedData = new RecordedData(); - return (context, next) -> record(context, next); - case PLAYBACK: - readDataFromFile(); - return (context, next) -> playback(context, next); - case NONE: - System.out.println("==> No interceptor defined for AZURE_TEST_MODE: " + testMode); - break; - default: - System.out.println("==> Unknown AZURE_TEST_MODE: " + testMode); - } - return null; - } - - public void finalizeInterceptor() throws IOException { - switch (testMode) { - case RECORD: - writeDataToFile(); - break; - case PLAYBACK: - case NONE: - // Do nothing - break; - default: - System.out.println("==> Unknown AZURE_TEST_MODE: " + testMode); - } - } - - private Mono record(HttpPipelineCallContext context, HttpPipelineNextPolicy next) { - HttpRequest request = context.getHttpRequest(); - HttpHeaders headers = request.getHeaders(); - - NetworkCallRecord networkCallRecord = new NetworkCallRecord(); - networkCallRecord.setHeaders(new HashMap<>()); - - if (headers.get("Content-Type") != null) { - networkCallRecord.headers().put("Content-Type", headers.getValue("Content-Type")); - } - if (headers.get("x-ms-version") != null) { - networkCallRecord.headers().put("x-ms-version", headers.getValue("x-ms-version")); - } - if (headers.get("User-Agent") != null) { - networkCallRecord.headers().put("User-Agent", headers.getValue("User-Agent")); - } - - networkCallRecord.setMethod(request.getHttpMethod().toString()); - networkCallRecord.setUri(applyReplacementRule(request.getUrl().toString().replaceAll("\\?$", ""))); - - return next.process().flatMap(response -> { - networkCallRecord.setResponse(new HashMap<>()); - networkCallRecord.response().put("StatusCode", Integer.toString(response.getStatusCode())); - Mono bufferResponse = extractResponseData(networkCallRecord.response(), response); - - // remove pre-added header if this is a waiting or redirection - if (networkCallRecord.response().containsKey("Body") - && networkCallRecord.response().get("Body").contains("InProgress") - || Integer.parseInt(networkCallRecord.response().get("StatusCode")) == HTTP_TEMPORARY_REDIRECT) { - // Do nothing - return bufferResponse; - } else { - synchronized (recordedData.getNetworkCallRecords()) { - recordedData.getNetworkCallRecords().add(networkCallRecord); - } - } - - return bufferResponse; - }); - } - - private Mono playback(HttpPipelineCallContext context, HttpPipelineNextPolicy next) { - HttpRequest request = context.getHttpRequest(); - String incomingUrl = applyReplacementRule(request.getUrl().toString()); - String incomingMethod = request.getHttpMethod().toString(); - - incomingUrl = removeHost(incomingUrl); - NetworkCallRecord networkCallRecord = null; - synchronized (recordedData) { - for (Iterator iterator = recordedData.getNetworkCallRecords().iterator(); iterator.hasNext();) { - NetworkCallRecord record = iterator.next(); - if (record.method().equalsIgnoreCase(incomingMethod) && removeHost(record.uri()).equalsIgnoreCase(incomingUrl)) { - networkCallRecord = record; - iterator.remove(); - break; - } - } - } - - if (networkCallRecord == null) { - System.out.println("NOT FOUND - " + incomingMethod + " " + incomingUrl); - System.out.println("Remaining records " + recordedData.getNetworkCallRecords().size()); - return Mono.error(new IOException("==> Unexpected request: " + incomingMethod + " " + incomingUrl)); - } - - int recordStatusCode = Integer.parseInt(networkCallRecord.response().get("StatusCode")); - - final NetworkCallRecord finalNetworkCallRecord = networkCallRecord; - - RecordedHttpResponse response = new RecordedHttpResponse(recordStatusCode, context.getHttpRequest()); - - for (Map.Entry pair : finalNetworkCallRecord.response().entrySet()) { - if (!pair.getKey().equals("StatusCode") && !pair.getKey().equals("Body") && !pair.getKey().equals("Content-Length")) { - String rawHeader = pair.getValue(); - for (Map.Entry rule : textReplacementRules.entrySet()) { - if (rule.getValue() != null) { - rawHeader = rawHeader.replaceAll(rule.getKey(), rule.getValue()); - } - } - response.getHeaders().put(pair.getKey(), rawHeader); - } - } - - try { - String rawBody = finalNetworkCallRecord.response().get("Body"); - if (rawBody != null) { - for (Map.Entry rule : textReplacementRules.entrySet()) { - if (rule.getValue() != null) { - rawBody = rawBody.replaceAll(rule.getKey(), rule.getValue()); - } - } - - String rawContentType = finalNetworkCallRecord.response().get("content-type"); - String contentType = rawContentType == null - ? "application/json; charset=utf-8" - : rawContentType; - - response.setBody(rawBody.getBytes()); - response.getHeaders().put("Content-Length", String.valueOf(rawBody.getBytes("UTF-8").length)); - } - } catch (Exception e) { - return Mono.error(e); - } - - return Mono.just(response); - } - - private Mono extractResponseData(Map responseData, final HttpResponse response) { - Map headers = response.getHeaders().toMap(); - boolean addedRetryAfter = false; - for (Map.Entry header : headers.entrySet()) { - String headerValueToStore = header.getValue(); - - if (header.getKey().equalsIgnoreCase("location") || header.getKey().equalsIgnoreCase("azure-asyncoperation")) { - headerValueToStore = applyReplacementRule(headerValueToStore); - } - if (header.getKey().equalsIgnoreCase("retry-after")) { - headerValueToStore = "0"; - addedRetryAfter = true; - } - responseData.put(header.getKey().toLowerCase(), headerValueToStore); - } - - if (!addedRetryAfter) { - responseData.put("retry-after", "0"); - } - - String bodyLoggingHeader = response.getRequest().getHeaders().getValue(BODY_LOGGING); - boolean bodyLogging = bodyLoggingHeader == null || Boolean.parseBoolean(bodyLoggingHeader); - if (bodyLogging) { - HttpResponse bufferedResponse = response.buffer(); - ByteArrayOutputStream outputStream = new ByteArrayOutputStream(); - return bufferedResponse.getBody() - .doOnNext(byteBuffer -> { - for (int i = byteBuffer.position(); i < byteBuffer.limit(); i++) { - outputStream.write(byteBuffer.get(i)); - } - }) - .doFinally(ignored -> { - try { - String encoding = response.getHeaderValue("Content-Encoding"); - String content = null; - if (encoding == null || encoding == "") { - content = new String(outputStream.toByteArray(), StandardCharsets.UTF_8); - } else if (encoding.equalsIgnoreCase("gzip")) { - GZIPInputStream gis = new GZIPInputStream(new ByteArrayInputStream(outputStream.toByteArray())); - content = IOUtils.readInputStreamToString(gis, StandardCharsets.UTF_8); - responseData.remove("Content-Encoding".toLowerCase()); - responseData.put("Content-Length".toLowerCase(), Integer.toString(content.length())); - } - - if (content != null) { - content = applyReplacementRule(content); - responseData.put("Body", content); - } - } catch (IOException e) { - e.printStackTrace(); - } - }) - .then(Mono.just(bufferedResponse)); - } - return Mono.just(response); - } - - private long getContentLength(HttpHeaders headers) { - long contentLength = 0; - - String contentLengthString = headers.getValue("Content-Length"); - if (contentLengthString == null || contentLengthString.isEmpty()) { - return contentLength; - } - - try { - contentLength = Long.parseLong(contentLengthString); - } catch (NumberFormatException e) { } - - return contentLength; - } - - private void readDataFromFile() throws IOException { - File recordFile = getRecordFile(testName); - ObjectMapper mapper = new ObjectMapper(); - mapper.enable(SerializationFeature.INDENT_OUTPUT); - recordedData = mapper.readValue(recordFile, RecordedData.class); - System.out.println("Total records " + recordedData.getNetworkCallRecords().size()); - } - - private void writeDataToFile() throws IOException { - ObjectMapper mapper = new ObjectMapper(); - mapper.enable(SerializationFeature.INDENT_OUTPUT); - File recordFile = getRecordFile(testName); - recordFile.createNewFile(); - mapper.writeValue(recordFile, recordedData); - } - - private File getRecordFile(String testName) { - URL folderUrl = InterceptorManager.class.getClassLoader().getResource("."); - File folderFile = new File(folderUrl.getPath() + RECORD_FOLDER); - if (!folderFile.exists()) { - folderFile.mkdir(); - } - String filePath = folderFile.getPath() + "/" + testName + ".json"; - System.out.println("==> Playback file path: " + filePath); - return new File(filePath); - } - - private String applyReplacementRule(String text) { - for (Map.Entry rule : textReplacementRules.entrySet()) { - if (rule.getValue() != null) { - text = text.replaceAll(rule.getKey(), rule.getValue()); - } - } - return text; - } - - private String removeHost(String url) { - URI uri = URI.create(url); - return String.format("%s?%s", uri.getPath(), uri.getQuery()); - } - - public void pushVariable(String variable) { - if (isRecordMode()) { - synchronized (recordedData.getVariables()) { - recordedData.getVariables().add(variable); - } - } - } - - public String popVariable() { - synchronized (recordedData.getVariables()) { - return recordedData.getVariables().remove(); - } - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/NetworkCallRecord.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/NetworkCallRecord.java deleted file mode 100644 index 5a15b1f33062..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/NetworkCallRecord.java +++ /dev/null @@ -1,52 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources.core; - -import com.fasterxml.jackson.annotation.JsonProperty; - -import java.util.Map; - -public class NetworkCallRecord { - @JsonProperty("Method") - private String method; - @JsonProperty("Uri") - private String uri; - - @JsonProperty("Headers") - private Map headers; - @JsonProperty("Response") - private Map response; - - public String method() { - return method; - } - - public void setMethod(String method) { - this.method = method; - } - - public String uri() { - return uri; - } - - public void setUri(String uri) { - this.uri = uri; - } - - public Map headers() { - return headers; - } - - public void setHeaders(Map headers) { - this.headers = headers; - } - - public Map response() { - return response; - } - - public void setResponse(Map response) { - this.response = response; - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/RecordedData.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/RecordedData.java deleted file mode 100644 index 8f979b33d5e2..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/RecordedData.java +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources.core; - -import java.util.LinkedList; - -public class RecordedData { - private LinkedList networkCallRecords; - - private LinkedList variables; - - public RecordedData() { - networkCallRecords = new LinkedList<>(); - variables = new LinkedList<>(); - } - - public LinkedList getNetworkCallRecords() { - return networkCallRecords; - } - - public LinkedList getVariables() { - return variables; - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/RecordedHttpResponse.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/RecordedHttpResponse.java deleted file mode 100644 index e70e0ea06d49..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/RecordedHttpResponse.java +++ /dev/null @@ -1,83 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources.core; - -import com.azure.core.http.HttpHeaders; -import com.azure.core.http.HttpRequest; -import com.azure.core.http.HttpResponse; -import com.azure.core.implementation.http.BufferedHttpResponse; -import com.azure.core.util.FluxUtil; -import reactor.core.publisher.Flux; -import reactor.core.publisher.Mono; - -import java.nio.ByteBuffer; -import java.nio.charset.Charset; -import java.nio.charset.StandardCharsets; - -/** - * HTTP response which will cache the response's body when/if it is read. - */ -public class RecordedHttpResponse extends HttpResponse { - private final HttpHeaders headers; - private final int statusCode; - private Flux cachedBody; - - public RecordedHttpResponse(int statusCode, HttpRequest request) { - super(request); - this.headers = new HttpHeaders(); - this.statusCode = statusCode; - } - - public RecordedHttpResponse setBody(byte[] body) { - this.cachedBody = Flux.just(ByteBuffer.wrap(body)); - return this; - } - - public RecordedHttpResponse setBody(ByteBuffer body) { - this.cachedBody = Flux.just(body); - return this; - } - - @Override - public int getStatusCode() { - return statusCode; - } - - @Override - public String getHeaderValue(String name) { - return headers.getValue(name); - } - - @Override - public HttpHeaders getHeaders() { - return headers; - } - - @Override - public Flux getBody() { - return cachedBody; - } - - @Override - public Mono getBodyAsByteArray() { - return FluxUtil.collectBytesInByteBufferStream(cachedBody.map(ByteBuffer::duplicate)); - } - - @Override - public Mono getBodyAsString() { - return getBodyAsByteArray() - .map(bytes -> bytes == null ? null : new String(bytes, StandardCharsets.UTF_8)); - } - - @Override - public Mono getBodyAsString(Charset charset) { - return getBodyAsByteArray() - .map(bytes -> bytes == null ? null : new String(bytes, charset)); - } - - @Override - public BufferedHttpResponse buffer() { - return new BufferedHttpResponse(this); - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/ResourceGroupTaggingPolicy.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/ResourceGroupTaggingPolicy.java deleted file mode 100644 index 3dd4fed47f90..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/ResourceGroupTaggingPolicy.java +++ /dev/null @@ -1,84 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources.core; - -import com.azure.core.http.HttpPipelineCallContext; -import com.azure.core.http.HttpPipelineNextPolicy; -import com.azure.core.http.HttpRequest; -import com.azure.core.http.HttpResponse; -import com.azure.core.http.policy.HttpPipelinePolicy; -import com.azure.core.management.serializer.AzureJacksonAdapter; -import com.azure.core.util.serializer.SerializerEncoding; -import com.azure.resourcemanager.resources.fluent.ResourceGroupsClient; -import com.azure.resourcemanager.resources.fluent.inner.ResourceGroupInner; -import reactor.core.publisher.Mono; - -import java.io.IOException; -import java.nio.charset.StandardCharsets; -import java.time.Instant; -import java.util.HashMap; -import java.util.Map; - -/** - * Http Pipeline Policy for tagging resource groups created in tests. - */ -public class ResourceGroupTaggingPolicy implements HttpPipelinePolicy { -// private static final String LOGGING_CONTEXT = "com.microsoft.azure.management.resources.ResourceGroups createOrUpdate"; - private static final String CALLER_METHOD = String.format("%s$ResourceGroupsService.createOrUpdate", ResourceGroupsClient.class.getName()); - private AzureJacksonAdapter adapter = new AzureJacksonAdapter(); - - @Override - public Mono process(HttpPipelineCallContext context, HttpPipelineNextPolicy next) { - if ("PUT".equals(context.getHttpRequest().getHttpMethod().name()) - && context.getHttpRequest().getUrl().toString().contains("/resourcegroups/") - && CALLER_METHOD.equals(context.getData("caller-method").orElse("").toString())) { - return context.getHttpRequest().copy().getBody().flatMap( - byteBuffer -> { - byte[] body = new byte[byteBuffer.remaining()]; - byteBuffer.get(body); - String bodyStr = new String(body, StandardCharsets.UTF_8); - - ResourceGroupInner resourceGroupInner; - try { - resourceGroupInner = adapter.deserialize(bodyStr, ResourceGroupInner.class, SerializerEncoding.JSON); - } catch (IOException e) { - return Mono.error(e); - } - if (resourceGroupInner == null) { - return Mono.error(new RuntimeException("Failed to deserialize " + bodyStr)); - } - - Map tags = resourceGroupInner.tags(); - if (tags == null) { - tags = new HashMap<>(); - } - tags.put("product", "javasdk"); - tags.put("cause", "automation"); - tags.put("date", Instant.now().toString()); - if (System.getenv("ENV_JOB_NAME") != null) { - tags.put("job", System.getenv("ENV_JOB_NAME")); - } - resourceGroupInner.withTags(tags); - String newBody; - try { - newBody = adapter.serialize(resourceGroupInner, SerializerEncoding.JSON); - } catch (IOException e) { - return Mono.error(e); - } - - if (newBody == null) { - return Mono.error(new RuntimeException("Failed to serialize after resource group tagging.\nOriginal body: " + bodyStr)); - } - - HttpRequest newRequest = context.getHttpRequest().copy() - .setBody(newBody) - .setHeader("Content-Length", String.valueOf(newBody.length())); - context.setHttpRequest(newRequest); - return next.process(); - } - ).last(); - } - return next.process(); - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestBase.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestBase.java deleted file mode 100644 index c8ca23a78747..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestBase.java +++ /dev/null @@ -1,341 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources.core; - -import com.azure.core.credential.TokenCredential; -import com.azure.core.http.HttpClient; -import com.azure.core.http.HttpPipeline; -import com.azure.core.http.ProxyOptions; -import com.azure.core.http.netty.NettyAsyncHttpClientBuilder; -import com.azure.core.http.policy.CookiePolicy; -import com.azure.core.http.policy.HostPolicy; -import com.azure.core.http.policy.HttpLogDetailLevel; -import com.azure.core.http.policy.HttpLogOptions; -import com.azure.core.http.policy.HttpPipelinePolicy; -import com.azure.core.http.policy.RetryPolicy; -import com.azure.core.http.policy.TimeoutPolicy; -import com.azure.core.management.AzureEnvironment; -import com.azure.core.util.Configuration; -import com.azure.core.util.logging.LogLevel; -import com.azure.identity.ClientSecretCredentialBuilder; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; -import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; -import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; -import org.junit.jupiter.api.AfterEach; -import org.junit.jupiter.api.Assumptions; -import org.junit.jupiter.api.BeforeAll; -import org.junit.jupiter.api.BeforeEach; -import org.junit.jupiter.api.TestInfo; - -import java.io.File; -import java.io.IOException; -import java.io.OutputStream; -import java.io.PrintStream; -import java.net.InetSocketAddress; -import java.net.Proxy; -import java.net.ProxySelector; -import java.net.URI; -import java.net.URISyntaxException; -import java.time.Duration; -import java.time.temporal.ChronoUnit; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; - -public abstract class TestBase { - private PrintStream out; - private String baseUri; - protected SdkContext sdkContext = new SdkContext(); - private AuthFile authFile; - private AzureProfile profile; - - public String generateRandomResourceName(String prefix, int maxLen) { - return sdkContext.randomResourceName(prefix, maxLen); - } - - public static String password() { - // do not record - String password = new SdkContext().randomResourceName("Pa5$", 12); - System.out.printf("Password: %s%n", password); - return password; - } - - protected enum RunCondition { - MOCK_ONLY, - LIVE_ONLY, - BOTH - } - - public enum TestMode { - PLAYBACK, - RECORD, - NONE - } - - protected static final String ZERO_SUBSCRIPTION = "00000000-0000-0000-0000-000000000000"; - protected static final String ZERO_TENANT = "00000000-0000-0000-0000-000000000000"; - private static final String PLAYBACK_URI_BASE = "http://localhost:"; - protected static String playbackUri = null; - - private final RunCondition runCondition; - - protected TestBase() { - this(RunCondition.BOTH); - } - - protected TestBase(RunCondition runCondition) { - this.runCondition = runCondition; - } - - private String shouldCancelTest(boolean isPlaybackMode) { - // Determine whether to run the test based on the condition the test has been configured with - switch (this.runCondition) { - case MOCK_ONLY: - return (!isPlaybackMode) ? "Test configured to run only as mocked, not live." : null; - case LIVE_ONLY: - return (isPlaybackMode) ? "Test configured to run only as live, not mocked." : null; - default: - return null; - } - } - - private static TestMode testMode = null; - protected TestInfo testInfo; - - private static void initTestMode() throws IOException { - Configuration.getGlobalConfiguration().put(Configuration.PROPERTY_AZURE_LOG_LEVEL, String.valueOf(LogLevel.INFORMATIONAL)); - String azureTestMode = System.getenv("AZURE_TEST_MODE"); - if (azureTestMode != null) { - if (azureTestMode.equalsIgnoreCase("Record")) { - testMode = TestMode.RECORD; - } else if (azureTestMode.equalsIgnoreCase("Playback")) { - testMode = TestMode.PLAYBACK; - } else if (azureTestMode.equalsIgnoreCase("None")) { - testMode = TestMode.NONE; - } else { - throw new IOException("Unknown AZURE_TEST_MODE: " + azureTestMode); - } - } else { - //System.out.print("Environment variable 'AZURE_TEST_MODE' has not been set yet. Using 'Playback' mode."); - testMode = TestMode.PLAYBACK; - } - } - - private static void initPlaybackUri() throws IOException { - playbackUri = PLAYBACK_URI_BASE + "1234"; - } - - public static boolean isPlaybackMode() { - if (testMode == null) { - try { - initTestMode(); - } catch (IOException e) { - e.printStackTrace(); - throw new RuntimeException("Can't init test mode."); - } - } - return testMode == TestMode.PLAYBACK; - } - - public static boolean isRecordMode() { - return !isPlaybackMode(); - } - - protected InterceptorManager interceptorManager = null; - - private static void printThreadInfo(String what) { - long id = Thread.currentThread().getId(); - String name = Thread.currentThread().getName(); - System.out.println(String.format("\n***\n*** [%s:%s] - %s\n***\n", name, id, what)); - } - - @BeforeAll - public static void beforeClass() throws IOException { - printThreadInfo("beforeClass"); - initTestMode(); - initPlaybackUri(); - } - - @BeforeEach - public void beforeTest(TestInfo testInfo) throws IOException { - this.testInfo = testInfo; - String testMothodName = testInfo.getTestMethod().get().getName(); - printThreadInfo(String.format("%s: %s", "beforeTest", testMothodName)); - final String skipMessage = shouldCancelTest(isPlaybackMode()); - Assumptions.assumeTrue(skipMessage == null, skipMessage); - - String showOutput = Configuration.getGlobalConfiguration().get("showOutput"); - if (!isPlaybackMode() || (showOutput != null && showOutput.equalsIgnoreCase("true"))) { - System.out.println("------------------------------------------------------------ Show Output"); - } else { - System.out.println("------------------------------------------------------------ Skip Output"); - System.setOut(new PrintStream(new OutputStream() { - @Override - public void write(int b) throws IOException { - - } - })); - - System.setErr(new PrintStream(new OutputStream() { - @Override - public void write(int b) throws IOException { - - } - })); - } - - interceptorManager = InterceptorManager.create(testMothodName, testMode); - sdkContext.setResourceNamerFactory(new TestResourceNamerFactory(interceptorManager)); - - TokenCredential credential; - HttpPipeline httpPipeline; - - if (isPlaybackMode()) { - profile = new AzureProfile( - ZERO_TENANT, ZERO_SUBSCRIPTION, - new AzureEnvironment( - new HashMap() { - { - put("managementEndpointUrl", playbackUri); - put("resourceManagerEndpointUrl", playbackUri); - put("sqlManagementEndpointUrl", playbackUri); - put("galleryEndpointUrl", playbackUri); - put("activeDirectoryEndpointUrl", playbackUri); - put("activeDirectoryResourceId", playbackUri); - put("activeDirectoryGraphResourceId", playbackUri); - }})); - - List policies = new ArrayList<>(); - policies.add(interceptorManager.initInterceptor()); - policies.add(new HostPolicy(playbackUri + "/")); - policies.add(new ResourceGroupTaggingPolicy()); - policies.add(new CookiePolicy()); - httpPipeline = HttpPipelineProvider.buildHttpPipeline( - null, profile, null, new HttpLogOptions().setLogLevel(HttpLogDetailLevel.BODY_AND_HEADERS), - null, new RetryPolicy("Retry-After", ChronoUnit.SECONDS), policies, null); - - interceptorManager.addTextReplacementRule(PLAYBACK_URI_BASE + "1234", playbackUri); - System.out.println(playbackUri); - } else { - if (System.getenv("AZURE_AUTH_LOCATION") != null) { // Record mode - final File credFile = new File(System.getenv("AZURE_AUTH_LOCATION")); - AuthFile authFile = buildAuthFile(credFile); - credential = authFile.credential(); - profile = new AzureProfile(authFile.tenantId(), authFile.subscriptionId(), authFile.environment()); - } else { - String clientId = System.getenv("AZURE_CLIENT_ID"); - String tenantId = System.getenv("AZURE_TENANT_ID"); - String clientSecret = System.getenv("AZURE_CLIENT_SECRET"); - String subscriptionId = System.getenv("AZURE_SUBSCRIPTION_ID"); - if (clientId == null || tenantId == null || clientSecret == null || subscriptionId == null) { - throw new IllegalArgumentException("When running tests in record mode either 'AZURE_AUTH_LOCATION' or 'AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET and AZURE_SUBSCRIPTION_ID' needs to be set"); - } - - credential = new ClientSecretCredentialBuilder() - .tenantId(tenantId) - .clientId(clientId) - .clientSecret(clientSecret) - .authorityHost(AzureEnvironment.AZURE.getActiveDirectoryEndpoint()) - .build(); - profile = new AzureProfile(tenantId, subscriptionId, AzureEnvironment.AZURE); - - } - - List policies = new ArrayList<>(); - policies.add(new ResourceGroupTaggingPolicy()); - policies.add(new TimeoutPolicy(Duration.ofMinutes(1))); - policies.add(new CookiePolicy()); - if (!interceptorManager.isNoneMode()) { - policies.add(interceptorManager.initInterceptor()); - } - httpPipeline = HttpPipelineProvider.buildHttpPipeline( - credential, profile, null, new HttpLogOptions().setLogLevel(HttpLogDetailLevel.BODY_AND_HEADERS), - null, new RetryPolicy("Retry-After", ChronoUnit.SECONDS), policies, generateHttpClientWithProxy(null)); - - interceptorManager.addTextReplacementRule(profile.subscriptionId(), ZERO_SUBSCRIPTION); - interceptorManager.addTextReplacementRule(profile.tenantId(), ZERO_TENANT); - interceptorManager.addTextReplacementRule(baseUri(), playbackUri + "/"); - interceptorManager.addTextReplacementRule("https://graph.windows.net/", playbackUri + "/"); - } - initializeClients(httpPipeline, profile); - } - - @AfterEach - public void afterTest() throws IOException { - if (shouldCancelTest(isPlaybackMode()) != null) { - return; - } - cleanUpResources(); - interceptorManager.finalizeInterceptor(); - } - - protected HttpClient generateHttpClientWithProxy(ProxyOptions proxyOptions) { - NettyAsyncHttpClientBuilder clientBuilder = new NettyAsyncHttpClientBuilder(); - if (proxyOptions != null) { - clientBuilder.proxy(proxyOptions); - } else { - try { - System.setProperty("java.net.useSystemProxies", "true"); - List proxies = ProxySelector.getDefault().select(new URI(AzureEnvironment.AZURE.getResourceManagerEndpoint())); - if (!proxies.isEmpty()) { - for (Proxy proxy : proxies) { - if (proxy.address() instanceof InetSocketAddress) { - String host = ((InetSocketAddress) proxy.address()).getHostName(); - int port = ((InetSocketAddress) proxy.address()).getPort(); - switch (proxy.type()) { - case HTTP: - return clientBuilder.proxy(new ProxyOptions(ProxyOptions.Type.HTTP, new InetSocketAddress(host, port))).build(); - case SOCKS: - return clientBuilder.proxy(new ProxyOptions(ProxyOptions.Type.SOCKS5, new InetSocketAddress(host, port))).build(); - default: - } - } - } - } - String host = null; - int port = 0; - if (System.getProperty("https.proxyHost") != null && System.getProperty("https.proxyPort") != null) { - host = System.getProperty("https.proxyHost"); - port = Integer.parseInt(System.getProperty("https.proxyPort")); - } else if (System.getProperty("http.proxyHost") != null && System.getProperty("http.proxyPort") != null) { - host = System.getProperty("http.proxyHost"); - port = Integer.parseInt(System.getProperty("http.proxyPort")); - } - if (host != null) { - clientBuilder.proxy(new ProxyOptions(ProxyOptions.Type.HTTP, new InetSocketAddress(host, port))); - } - } catch (URISyntaxException e) { } - } - return clientBuilder.build(); - } - - protected String baseUri() { - if (this.baseUri != null) { - return this.baseUri; - } else { - return AzureEnvironment.AZURE.url(AzureEnvironment.Endpoint.RESOURCE_MANAGER); - } - } - - protected AuthFile buildAuthFile(File credFile) throws IOException { - this.authFile = AuthFile.parse(credFile); - return this.authFile; - } - - protected TokenCredential credentialFromFile() { - return this.authFile.credential(); - } - - protected String clientIdFromFile() { - return authFile.clientId(); - } - - protected AzureProfile profile() { - return this.profile; - } - - protected abstract void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) throws IOException; - - protected abstract void cleanUpResources(); -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestDelayProvider.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestDelayProvider.java deleted file mode 100644 index 13cef671163a..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestDelayProvider.java +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources.core; - -import com.azure.resourcemanager.resources.fluentcore.utils.DelayProvider; - -import java.time.Duration; - -public class TestDelayProvider extends DelayProvider { - private boolean isLiveMode; - - public TestDelayProvider(boolean isLiveMode) { - this.isLiveMode = isLiveMode; - } - - @Override - public void sleep(int milliseconds) { - if (isLiveMode) { - super.sleep(milliseconds); - } - } - - @Override - public Duration getLroRetryTimeout() { - return isLiveMode ? super.getLroRetryTimeout() : Duration.ofMillis(1); - } - - @Override - public Duration getDelayDuration(Duration delay) { - return isLiveMode ? delay : Duration.ZERO; - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestFileProvider.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestFileProvider.java deleted file mode 100644 index f88377a8ab77..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestFileProvider.java +++ /dev/null @@ -1,34 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources.core; - -import com.azure.resourcemanager.resources.fluentcore.utils.FileProvider; - -import java.io.File; -import java.io.IOException; - -/** - * - */ -public class TestFileProvider extends FileProvider { - - private boolean isRecordMode; - - /** - * Constructor. - * @param isRecordMode whether test case is in recording mode. - */ - public TestFileProvider(boolean isRecordMode) { - this.isRecordMode = isRecordMode; - } - - @Override - public void prepareFileLocation(File file) throws IOException { - if (isRecordMode) { - // delete existing file so new file can be recorded during recording. - file.delete(); - } - super.prepareFileLocation(file); - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestResourceNamer.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestResourceNamer.java deleted file mode 100644 index dd9b110dc398..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestResourceNamer.java +++ /dev/null @@ -1,72 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources.core; - -import com.azure.resourcemanager.resources.fluentcore.utils.ResourceNamer; - -import java.time.OffsetDateTime; -import java.util.NoSuchElementException; - -public class TestResourceNamer extends ResourceNamer { - private final InterceptorManager interceptorManager; - - public TestResourceNamer(String name, InterceptorManager interceptorManager) { - super(name); - this.interceptorManager = interceptorManager; - } - - /** - * Gets a random name. - * - * @param prefix the prefix to be used if possible - * @param maxLen the max length for the random generated name - * @return the random name - */ - @Override - public String randomName(String prefix, int maxLen) { - if (interceptorManager.isPlaybackMode()) { - try { - return interceptorManager.popVariable(); - } catch (NoSuchElementException e) { - return super.randomName(prefix, maxLen); - } - } - String randomName = super.randomName(prefix, maxLen); - - interceptorManager.pushVariable(randomName); - - return randomName; - } - - @Override - public String randomUuid() { - if (interceptorManager.isPlaybackMode()) { - try { - return interceptorManager.popVariable(); - } catch (NoSuchElementException e) { - return super.randomUuid(); - } - } - String randomName = super.randomUuid(); - - interceptorManager.pushVariable(randomName); - - return randomName; - } - - @Override - public OffsetDateTime dateTimeNow() { - if (interceptorManager.isPlaybackMode()) { - try { - return OffsetDateTime.parse(interceptorManager.popVariable()); - } catch (NoSuchElementException e) { - return super.dateTimeNow(); - } - } - OffsetDateTime dateTime = super.dateTimeNow(); - interceptorManager.pushVariable(dateTime.toString()); - - return dateTime; - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestResourceNamerFactory.java b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestResourceNamerFactory.java deleted file mode 100644 index 61f21d70586c..000000000000 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/TestResourceNamerFactory.java +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -package com.azure.resourcemanager.resources.core; - -import com.azure.resourcemanager.resources.fluentcore.utils.ResourceNamer; -import com.azure.resourcemanager.resources.fluentcore.utils.ResourceNamerFactory; - -public class TestResourceNamerFactory extends ResourceNamerFactory { - - private final InterceptorManager interceptorManager; - - TestResourceNamerFactory(InterceptorManager mockIntegrationTestBase) { - this.interceptorManager = mockIntegrationTestBase; - } - @Override - public ResourceNamer createResourceNamer(String name) { - return new TestResourceNamer(name, interceptorManager); - } -} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCRUDPolicyAssignment.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCRUDPolicyAssignment.json index cf4dce279dd5..e20be5040598 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCRUDPolicyAssignment.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCRUDPolicyAssignment.json @@ -1,414 +1,441 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy0dd04515?api-version=2019-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy058614a?api-version=2019-09-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "09fdd708-13b7-42ee-b430-5b89bf934fde", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:01 GMT", - "content-length" : "573", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "07bea9be-8f43-4238-af98-cbaa9d99f074", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092402Z:07bea9be-8f43-4238-af98-cbaa9d99f074", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "koreasouth:6374a40f-bf0f-46d3-ad01-bf627b983ba6", - "Body" : "{\"properties\":{\"displayName\":\"mypolicy89612f\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:02.0814009Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy0dd04515\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy0dd04515\"}" - } + "Date" : "Tue, 11 Aug 2020 09:58:33 GMT", + "x-ms-correlation-request-id" : "aefd4cf7-ec8c-4e1c-92a7-432ec75c68cc", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095834Z:aefd4cf7-ec8c-4e1c-92a7-432ec75c68cc", + "Expires" : "-1", + "Content-Length" : "571", + "x-ms-request-id" : "southeastasia:48300a21-49ab-4dff-9eab-15a3bd1c1199", + "Body" : "{\"properties\":{\"displayName\":\"mypolicy266834\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:58:33.8786323Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy058614a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy058614a\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javarg97e94245?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javarg6786584?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d101bf03-3e1c-439f-ae45-7cf287cedad7", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:05 GMT", - "content-length" : "315", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5cbe8309-c137-417a-8ccf-7d8463be3e54", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092406Z:5cbe8309-c137-417a-8ccf-7d8463be3e54", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "5cbe8309-c137-417a-8ccf-7d8463be3e54", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245\",\"name\":\"javarg97e94245\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"ukwest\",\"tags\":{\"date\":\"2020-07-27T09:24:02.639684800Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:36 GMT", + "x-ms-correlation-request-id" : "78a40954-e1aa-4c72-9ca6-c1594f2cb7d1", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095837Z:78a40954-e1aa-4c72-9ca6-c1594f2cb7d1", + "Expires" : "-1", + "Content-Length" : "223", + "x-ms-request-id" : "78a40954-e1aa-4c72-9ca6-c1594f2cb7d1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584\",\"name\":\"javarg6786584\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"ukwest\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Authorization/policyAssignments/cb303b746c2b419?api-version=2019-09-01", + "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Authorization/policyAssignments/c5b61ad02b2c430?api-version=2019-09-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "bb00177f-e6dd-44b2-9c8f-bd8d5aebd19f", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:07 GMT", - "content-length" : "716", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c17467a9-e25d-4164-a91c-d105f08ff48a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092407Z:c17467a9-e25d-4164-a91c-d105f08ff48a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "koreasouth:204c11d2-89c6-476a-bcd9-fcb4f9a268ff", - "Body" : "{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy0dd04515\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:07.4739663Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Authorization/policyAssignments/cb303b746c2b419\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"cb303b746c2b419\"}" - } + "Date" : "Tue, 11 Aug 2020 09:58:36 GMT", + "x-ms-correlation-request-id" : "40be4247-ad6d-4475-82f0-9c6d30b6a4eb", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095837Z:40be4247-ad6d-4475-82f0-9c6d30b6a4eb", + "Expires" : "-1", + "Content-Length" : "713", + "x-ms-request-id" : "southeastasia:39c1b2d7-f5b8-41a5-bfea-bb83227cec36", + "Body" : "{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy058614a\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:58:37.3765411Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Authorization/policyAssignments/c5b61ad02b2c430\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"c5b61ad02b2c430\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javarg97e94245/providers/Microsoft.Web//sites/39a1e9b362a44c5?api-version=2015-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javarg6786584/providers/Microsoft.Web//sites/be2d8493cf27460?api-version=2015-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e1cee59f-7f64-4cea-bee2-4cc4a6f8c109", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:37 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "4988", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", + "Server" : "Microsoft-IIS/10.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "caf6cc31-0439-4fc4-8d4b-ab19fe610f94", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", + "Date" : "Tue, 11 Aug 2020 09:59:05 GMT", + "x-ms-correlation-request-id" : "97c3e39b-d56f-4b43-972f-c538eeb2dc36", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", "x-ms-ratelimit-remaining-subscription-resource-requests" : "499", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092437Z:caf6cc31-0439-4fc4-8d4b-ab19fe610f94", - "x-powered-by" : "ASP.NET", - "etag" : "\"1D663F7B546DB40\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "7de5952f-89ab-4077-907d-0d2f51e9dcf6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Web/sites/39a1e9b362a44c5\",\"name\":\"39a1e9b362a44c5\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"name\":\"39a1e9b362a44c5\",\"state\":\"Running\",\"hostNames\":[\"39a1e9b362a44c5.azurewebsites.net\"],\"webSpace\":\"javarg97e94245-SouthCentralUSwebspace\",\"selfLink\":\"https://waws-prod-sn1-139.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/javarg97e94245-SouthCentralUSwebspace/sites/39a1e9b362a44c5\",\"repositorySiteName\":\"39a1e9b362a44c5\",\"owner\":null,\"usageState\":0,\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"39a1e9b362a44c5.azurewebsites.net\",\"39a1e9b362a44c5.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":0,\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"39a1e9b362a44c5.azurewebsites.net\",\"sslState\":0,\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":0,\"hostType\":0},{\"name\":\"39a1e9b362a44c5.scm.azurewebsites.net\",\"sslState\":0,\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":0,\"hostType\":1}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Web/serverfarms/Default1wf\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-07-27T09:24:20.2166667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":0,\"runtimeAvailabilityState\":0,\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"39a1e9b362a44c5\",\"trafficManagerHostNames\":null,\"sku\":\"Free\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":0,\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"13.84.180.32\",\"possibleInboundIpAddresses\":\"13.84.180.32\",\"ftpUsername\":\"39a1e9b362a44c5\\\\$39a1e9b362a44c5\",\"ftpsHostName\":\"ftps://waws-prod-sn1-139.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.84.180.32,13.65.255.36,23.98.216.34,13.65.25.127,23.98.220.106\",\"possibleOutboundIpAddresses\":\"13.84.180.32,13.65.255.36,23.98.216.34,13.65.25.127,23.98.220.106,13.65.43.153,52.171.129.2\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-sn1-139\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"javarg97e94245\",\"defaultHostName\":\"39a1e9b362a44c5.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":0,\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null}}" - } + "Cache-Control" : "no-cache", + "ETag" : "\"1D66FC602408980\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095906Z:97c3e39b-d56f-4b43-972f-c538eeb2dc36", + "X-AspNet-Version" : "4.0.30319", + "Expires" : "-1", + "Content-Length" : "5147", + "x-ms-request-id" : "7e2545b8-0154-45dd-837b-640152ef20c7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Web/sites/be2d8493cf27460\",\"name\":\"be2d8493cf27460\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"name\":\"be2d8493cf27460\",\"state\":\"Running\",\"hostNames\":[\"be2d8493cf27460.azurewebsites.net\"],\"webSpace\":\"javarg6786584-SouthCentralUSwebspace\",\"selfLink\":\"https://waws-prod-sn1-123.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/javarg6786584-SouthCentralUSwebspace/sites/be2d8493cf27460\",\"repositorySiteName\":\"be2d8493cf27460\",\"owner\":null,\"usageState\":0,\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"be2d8493cf27460.azurewebsites.net\",\"be2d8493cf27460.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":0,\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"be2d8493cf27460.azurewebsites.net\",\"sslState\":0,\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":0,\"hostType\":0},{\"name\":\"be2d8493cf27460.scm.azurewebsites.net\",\"sslState\":0,\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":0,\"hostType\":1}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Web/serverfarms/Default1nb\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-11T09:58:48.46\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":0,\"runtimeAvailabilityState\":0,\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"be2d8493cf27460\",\"trafficManagerHostNames\":null,\"sku\":\"Free\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":0,\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"104.210.147.57\",\"possibleInboundIpAddresses\":\"104.210.147.57\",\"ftpUsername\":\"be2d8493cf27460\\\\$be2d8493cf27460\",\"ftpsHostName\":\"ftps://waws-prod-sn1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.210.147.57,104.210.151.129,104.210.149.160,104.214.109.77,104.210.150.3\",\"possibleOutboundIpAddresses\":\"104.210.147.57,104.210.151.129,104.210.149.160,104.214.109.77,104.210.150.3,70.37.67.49,40.84.224.164,157.55.201.136\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-sn1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"javarg6786584\",\"defaultHostName\":\"be2d8493cf27460.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":0,\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", + "X-Powered-By" : "ASP.NET", + "Content-Type" : "application/json" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Web/sites/39a1e9b362a44c5/providers/Microsoft.Authorization/policyAssignments/79624cf0a146493?api-version=2019-09-01", + "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Web/sites/be2d8493cf27460/providers/Microsoft.Authorization/policyAssignments/d41d8a323d784cb?api-version=2019-09-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "fc86d638-e5a5-4c58-a7f9-3122ca8087ab", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:38 GMT", - "content-length" : "810", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1189", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bcffbb9e-7b9a-4763-ac6e-c58a255e0246", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092438Z:bcffbb9e-7b9a-4763-ac6e-c58a255e0246", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "koreasouth:3032d98e-2fc4-485a-a511-a5c341baac35", - "Body" : "{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment 2\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy0dd04515\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Web/sites/39a1e9b362a44c5\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:38.6231372Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Web/sites/39a1e9b362a44c5/providers/Microsoft.Authorization/policyAssignments/79624cf0a146493\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"79624cf0a146493\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:06 GMT", + "x-ms-correlation-request-id" : "6ed7d4a7-e858-4523-b5ff-9ae37c49335d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095906Z:6ed7d4a7-e858-4523-b5ff-9ae37c49335d", + "Expires" : "-1", + "Content-Length" : "806", + "x-ms-request-id" : "southeastasia:4fb852f9-18cf-4c28-88b9-7021e40f80d2", + "Body" : "{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment 2\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy058614a\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Web/sites/be2d8493cf27460\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:59:06.550309Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Web/sites/be2d8493cf27460/providers/Microsoft.Authorization/policyAssignments/d41d8a323d784cb\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"d41d8a323d784cb\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Authorization/policyAssignments?api-version=2019-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Authorization/policyAssignments?api-version=2019-09-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "43697e7b-25cf-42d1-a75c-2b03d9402e21", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:38 GMT", - "content-length" : "142091", - "expires" : "-1", - "vary" : "Accept-Encoding", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "95e48c36-fbf3-4a1e-a12c-7c2ce8b0b57c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092439Z:95e48c36-fbf3-4a1e-a12c-7c2ce8b0b57c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "koreasouth:79ba7c8a-24c1-476c-9470-732795dac422", - "Body" : "{\"value\":[{\"sku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"properties\":{\"displayName\":\"ASC Default (subscription: 00000000-0000-0000-0000-000000000000)\",\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityDesignateLessThanOwnersMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityDesignateMoreThanOneOwnerMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityEnableMFAForOwnerPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityEnableMFAForWritePermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityEnableMFAForReadPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveDeprecatedAccountWithOwnerPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveDeprecatedAccountMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveExternalAccountWithOwnerPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveExternalAccountWithWritePermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveExternalAccountWithReadPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"secureTransferToStorageAccountMonitoringEffect\":{\"value\":\"Audit\"},\"aadAuthenticationInSqlServerMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInRedisCacheMonitoringEffect\":{\"value\":\"Audit\"},\"clusterProtectionLevelInServiceFabricMonitoringEffect\":{\"value\":\"Audit\"},\"aadAuthenticationInServiceFabricMonitoringEffect\":{\"value\":\"Audit\"},\"diagnosticsLogsInServiceBusMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInDataLakeAnalyticsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInDataLakeStoreMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInBatchAccountMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInEventHubMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"metricAlertsInBatchAccountMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"namespaceAuthorizationRulesInServiceBusMonitoringEffect\":{\"value\":\"Audit\"},\"disableUnrestrictedNetworkToStorageAccountMonitoringEffect\":{\"value\":\"Audit\"},\"classicComputeVMsMonitoringEffect\":{\"value\":\"Audit\"},\"classicStorageAccountsMonitoringEffect\":{\"value\":\"Audit\"},\"sqlDbVulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInKeyVaultMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInStreamAnalyticsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInSearchServiceMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInLogicAppsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}},\"description\":\"This policy assignment was automatically created by Azure Security Center\",\"metadata\":{\"assignedBy\":\"Security Center\"},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"SecurityCenterBuiltIn\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy0dd04515\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:07.4739663Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Authorization/policyAssignments/cb303b746c2b419\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"cb303b746c2b419\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment 2\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy0dd04515\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Web/sites/39a1e9b362a44c5\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:38.6231372Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Web/sites/39a1e9b362a44c5/providers/Microsoft.Authorization/policyAssignments/79624cf0a146493\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"79624cf0a146493\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"audit ssh auth_1.4\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policySetDefinitions/3be0ea1bef3d71ca\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"AllowedLocations1\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"global\",\"brazilsoutheast\"]}},\"description\":\"This initiative audits whether any Linux VMs or VMSS use password-only authentication for SSH. See https://aka.ms/gt/AzurePolicy for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-05-12T23:48:29.541787Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-17T15:34:05.0362645Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/1fc2c9de5f6971ca\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"1fc2c9de5f6971ca\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/74c98b59a6341488\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Batch Accounts must use a Pool Allocation Mode of User subscription on the Advanced tab to configure a VNet in the subscriptiong. This enables the use of NSGs to secure the network traffic for the Batch Account. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:59.9760562Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:40.3716797Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/6bff79d27acb9c88\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"6bff79d27acb9c88\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-auditing should be enabled on advanced data security settings on sql server_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/8fce770def99399\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"},\"setting\":{\"value\":\"enabled\"}},\"description\":\"Audits SQL server level auditing coverage in the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:37.4717502Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:25.8570726Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/6c0b4582049bbf99\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"6c0b4582049bbf99\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-vulnerability assessment should be enabled on your sql servers_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/410c2966a1e1856e\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"}},\"description\":\"Audits SQL Vulnerability Assessment coverage the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:37.5097966Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:30.2774737Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/80a3851a4561856e\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"80a3851a4561856e\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-atp types should be set to 'all' in sql server advanced data security settings_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/ac3fc8ad361a9985\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"}},\"description\":\"Audits active SQL ATP detection types across the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:41.0071959Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:28.8367577Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/8eb4c5f8edb95985\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"8eb4c5f8edb95985\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"deny ssh password auth_1.5\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policySetDefinitions/cd305803df135c1b\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"AllowedLocations1\":{\"value\":[\"centraluseuap\",\"eastus2euap\"]}},\"description\":\"This initiative denies the creations of Linux VMs or VMSS which use password-only authentication for SSH. See https://aka.ms/gt/AzurePolicy for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-07-14T00:05:26.0127492Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/91de26bf144b5c1b\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"91de26bf144b5c1b\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b8f1faa61cb41f92\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:24:01.682075Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:35.5430963Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/aca4d19ab4e30392\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"aca4d19ab4e30392\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e695de0794b757d\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"},\"priorities\":{\"value\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\",\"110\",\"111\",\"112\",\"113\",\"114\",\"115\",\"116\",\"117\",\"118\",\"119\"]}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:59.5549343Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:08.0237953Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/b65cf29bbd4b57d\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"b65cf29bbd4b57d\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/26db8d27b6fa91aa\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Kubernets must use the Advanced Networking option to configure the Kubernetes cluster to use a Virtual Network that is on the subscription of the user. This enables the use of NSGs to secure the network traffic for the Kubernetes container. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:58.085345Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:42.6798866Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/bce5fcf8b40531aa\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"bce5fcf8b40531aa\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-advanced data security should be enabled on your sql servers_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e3cff6e23ce4018a\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"}},\"description\":\"Audits SQL ADS coverage the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:35.5090528Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:26.7963478Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/ef59abada7fba18a\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"ef59abada7fba18a\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/11094169db59074f\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"HDInsight Clusters must use the Custom configuration option to configure a VNet in the subscriptiong. This enables the use of NSGs to secure the network traffic for the HDInsight cluster. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:24:01.3537501Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:47.7820687Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/fcbba78ebf3e874f\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"fcbba78ebf3e874f\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_2.1\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/5aac1290d24c772d\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Batch Pools must be configured to use a VNet in the users subscription. This enables the use of NSGs to secure the network traffic for the Batch Account. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:32:59.165052Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:33.0369273Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-BTCH-AUDT-VINJ-v021\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-BTCH-AUDT-VINJ-v021\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/1b0f9cd579f5f04a\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"HDInsight Clusters must use the Custom configuration option to configure a VNet in the subscriptiong. This enables the use of NSGs to secure the network traffic for the HDInsight cluster. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:32:58.0927784Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:11.7643493Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-HDIN-AUDT-VINJ-v012\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-HDIN-AUDT-VINJ-v012\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/cb9c916fd4b6c323\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Kubernets must use the Advanced Networking option to configure the Kubernetes cluster to use a Virtual Network that is on the subscription of the user. This enables the use of NSGs to secure the network traffic for the Kubernetes container. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:33:02.4581818Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:41.1573353Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-KBNT-AUDT-VINJ-v012\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-KBNT-AUDT-VINJ-v012\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-101_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9d78e6174e6e69be\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"101\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, placeholder you can delete, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"443\"]},\"protocol\":{\"value\":\"Tcp\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"VirtualNetwork\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSDatabricks\"},\"subscriptionExclusions\":{\"value\":[]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:06.5946651Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:50.9652509Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"b7a49237-f5b0-473f-a4ff-6830d23af17d\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR101-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR101-v013\",\"location\":\"uaenorth\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-102_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/7c066e9166289efb\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"102\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"*\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"IP Addresses\"},\"sourceValue\":{\"value\":\"194.69.126.224/27,194.69.126.128/27,194.69.127.0/27,194.69.127.96/27,194.69.127.144/29,194.69.104.0/25,20.184.57.184/32,52.139.245.61/32,52.139.245.172/32,52.137.88.174/32,20.42.25.133/32,104.44.112.128/25,104.44.111.128/26,52.191.237.247/32,52.191.220.88/32,52.188.221.200/32,52.151.243.229/32,52.148.118.116/32,52.224.187.226/32,40.91.115.44/32,40.91.114.244/32,40.91.95.146/32,40.91.93.196/32,40.91.94.53/32,40.91.77.216/32,40.119.207.69/32,66.119.150.192/26,191.234.97.0/26,131.107.132.16/28,131.107.132.32/28,131.107.174.0/24,131.107.160.0/24,131.107.159.0/24,131.107.147.0/24,167.220.237.128/27,167.220.226.0/23,167.220.232.0/23,167.220.238.64/27,167.220.238.192/27,167.220.238.128/27,167.220.238.0/27,167.220.248.32/27,167.220.248.96/27,167.220.253.128/29,167.220.255.0/25,167.220.196.0/23,167.220.148.0/23,167.220.128.0/23,167.220.242.64/27,167.220.242.192/27,167.220.242.128/27,167.220.242.0/27,167.220.64.0/19,167.220.70.64/26,167.220.76.192/26,167.220.80.192/26,167.220.77.64/26,167.220.81.128/26,167.220.65.0/27,167.220.81.192/26,167.220.64.0/32,167.220.2.0/24,167.220.0.0/23,167.220.26.0/24,167.220.24.0/24,157.58.31.128/25,157.58.30.128/25,157.58.220.0/22,157.58.218.0/23,157.58.217.0/24,157.58.216.128/25,157.58.216.0/26,157.58.208.0/21,157.58.214.128/26,157.58.213.64/26,157.58.214.192/26,157.58.213.192/26,157.58.212.64/26,157.58.212.128/26,157.58.215.128/25,157.58.192.0/20,157.58.196.64/27,157.58.198.15/32,65.55.188.128/25,65.55.188.132/32,65.55.188.131/32,65.55.188.129/32,65.54.12.64/26,94.245.87.0/24,207.46.217.128/25,207.46.216.128/25,207.46.216.226/32,207.46.216.225/32,70.42.230.0/23\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSCorp\"},\"subscriptionExclusions\":{\"value\":[\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:34.1091048Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:36.4135634Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"985bb80e-8113-4542-8d68-418589e6ff34\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR102-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR102-v013\",\"location\":\"southafricanorth\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-103_1.4\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/3c07197392ad62f\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"103\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"*\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"CorpNetPublic\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSCorp\"},\"subscriptionExclusions\":{\"value\":[\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:27:59.4953193Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:23.3383233Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"2ac3f52f-f3ad-40a4-9b2d-aa24e4c7bbba\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR103-v014\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR103-v014\",\"location\":\"eastus2\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-104_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/bac0fb65020410a4\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"104\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"*\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"CorpNetSaw\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSSAW\"},\"subscriptionExclusions\":{\"value\":[\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:25.1822092Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:55.9717659Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"f2e939bc-742a-42f9-a27a-f0982c6e3f64\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR104-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR104-v013\",\"location\":\"japanwest\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-105_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/91f42c0ca66ff7dd\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"105\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"1433\",\"1434\",\"3306\",\"4333\",\"5432\",\"6379\",\"7000\",\"7001\",\"7199\",\"9042\",\"9160\",\"9300\",\"16379\",\"26379\",\"27017\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSDB\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\",\"6f5dcae0-a801-4d61-869d-7cf26ac8b3c3\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:47.192623Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:38:02.2961864Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"4a113caa-961f-4535-ac9b-79bfba8b9ed2\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR105-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR105-v013\",\"location\":\"australiasoutheast\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-106_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9b8d76c443040b08\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"106\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"22\",\"3389\"]},\"protocol\":{\"value\":\"Tcp\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSRDPSSH\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:53.5540872Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:24.5779103Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"6179a082-c057-4fe3-8118-916b816a42e3\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR106-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR106-v013\",\"location\":\"japanwest\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-107_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/fb6de85c9e746cf1\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"107\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"23\",\"135\",\"445\",\"5985\",\"5986\"]},\"protocol\":{\"value\":\"Tcp\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSMgmt\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:11.2279015Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:22.5704574Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"7c2d0d59-528c-434a-8c6c-03330539cad2\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR107-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR107-v013\",\"location\":\"uksouth\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-108_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/532396f35af78946\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"108\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"13\",\"17\",\"19\",\"53\",\"69\",\"111\",\"123\",\"512\",\"514\",\"593\",\"873\",\"1900\",\"5353\",\"11211\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSHigh\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:02.4628867Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:01.428405Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"7d7aed0a-228e-420b-a6a2-82a49dacb8cb\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR108-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR108-v013\",\"location\":\"germanywestcentral\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-109_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e0bc08af3bd773ff\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"109\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"119\",\"137\",\"138\",\"139\",\"161\",\"162\",\"389\",\"636\",\"2049\",\"2301\",\"2381\",\"3268\",\"5800\",\"5900\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSMedium\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:57.9727253Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:50.054199Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"56d08bc2-cc29-4d23-9d23-fd396b807b02\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR109-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR109-v013\",\"location\":\"southeastasia\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/686f7311dc548f32\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"},\"priorities\":{\"value\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\",\"110\",\"111\",\"112\",\"113\",\"114\",\"115\",\"116\",\"117\",\"118\",\"119\"]}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:33:59.4565556Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:28.1981569Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSGS-AUDT-RULS-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSGS-AUDT-RULS-v013\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/789cfec91f9e1858\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:34:02.1062104Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:27.2901901Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-SBNT-AUDT-NSG-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-SBNT-AUDT-NSG-v013\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-subnet_1.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/852aeb0ee2c0a3a5\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:32:33.7856438Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:17.0959962Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"6fe923a8-2e4d-4c1f-b7d6-a7c5984f0129\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-SBNT-DINE-NSG-v012\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-SBNT-DINE-NSG-v012\",\"location\":\"southindia\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"azuresecuritypackautoupdate_3.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policySetDefinitions/9c46cf6e83dedb18\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"AllowedLocations1\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]}},\"description\":\"Combinations of multiple policies to enable auto update of security pack and geneva agent\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-23T19:35:15.9907469Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-07-01T19:36:03.1679769Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"b7b8bd19-f827-425f-9be1-fd8a86b21904\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/SEC-AzSecPack-v032\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"SEC-AzSecPack-v032\",\"location\":\"australiacentral\"}]}" - } + "Date" : "Tue, 11 Aug 2020 09:59:06 GMT", + "x-ms-correlation-request-id" : "ecb26b74-3205-4960-bb77-4c730f2bfce2", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095906Z:ecb26b74-3205-4960-bb77-4c730f2bfce2", + "Vary" : "Accept-Encoding", + "Expires" : "-1", + "Content-Length" : "142084", + "x-ms-request-id" : "southeastasia:c00b188d-d0b4-42e4-8c1b-22d7081b3594", + "Body" : "{\"value\":[{\"sku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"properties\":{\"displayName\":\"ASC Default (subscription: 00000000-0000-0000-0000-000000000000)\",\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityDesignateLessThanOwnersMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityDesignateMoreThanOneOwnerMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityEnableMFAForOwnerPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityEnableMFAForWritePermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityEnableMFAForReadPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveDeprecatedAccountWithOwnerPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveDeprecatedAccountMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveExternalAccountWithOwnerPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveExternalAccountWithWritePermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveExternalAccountWithReadPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"secureTransferToStorageAccountMonitoringEffect\":{\"value\":\"Audit\"},\"aadAuthenticationInSqlServerMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInRedisCacheMonitoringEffect\":{\"value\":\"Audit\"},\"clusterProtectionLevelInServiceFabricMonitoringEffect\":{\"value\":\"Audit\"},\"aadAuthenticationInServiceFabricMonitoringEffect\":{\"value\":\"Audit\"},\"diagnosticsLogsInServiceBusMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInDataLakeAnalyticsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInDataLakeStoreMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInBatchAccountMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInEventHubMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"metricAlertsInBatchAccountMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"namespaceAuthorizationRulesInServiceBusMonitoringEffect\":{\"value\":\"Audit\"},\"disableUnrestrictedNetworkToStorageAccountMonitoringEffect\":{\"value\":\"Audit\"},\"classicComputeVMsMonitoringEffect\":{\"value\":\"Audit\"},\"classicStorageAccountsMonitoringEffect\":{\"value\":\"Audit\"},\"sqlDbVulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInKeyVaultMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInStreamAnalyticsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInSearchServiceMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInLogicAppsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}},\"description\":\"This policy assignment was automatically created by Azure Security Center\",\"metadata\":{\"assignedBy\":\"Security Center\"},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"SecurityCenterBuiltIn\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy058614a\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:58:37.3765411Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Authorization/policyAssignments/c5b61ad02b2c430\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"c5b61ad02b2c430\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment 2\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy058614a\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Web/sites/be2d8493cf27460\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:59:06.550309Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Web/sites/be2d8493cf27460/providers/Microsoft.Authorization/policyAssignments/d41d8a323d784cb\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"d41d8a323d784cb\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"audit ssh auth_1.4\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policySetDefinitions/3be0ea1bef3d71ca\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"AllowedLocations1\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"global\",\"brazilsoutheast\"]}},\"description\":\"This initiative audits whether any Linux VMs or VMSS use password-only authentication for SSH. See https://aka.ms/gt/AzurePolicy for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-05-12T23:48:29.541787Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-17T15:34:05.0362645Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/1fc2c9de5f6971ca\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"1fc2c9de5f6971ca\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/74c98b59a6341488\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Batch Accounts must use a Pool Allocation Mode of User subscription on the Advanced tab to configure a VNet in the subscriptiong. This enables the use of NSGs to secure the network traffic for the Batch Account. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:59.9760562Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:40.3716797Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/6bff79d27acb9c88\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"6bff79d27acb9c88\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-auditing should be enabled on advanced data security settings on sql server_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/8fce770def99399\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"},\"setting\":{\"value\":\"enabled\"}},\"description\":\"Audits SQL server level auditing coverage in the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:37.4717502Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:25.8570726Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/6c0b4582049bbf99\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"6c0b4582049bbf99\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-vulnerability assessment should be enabled on your sql servers_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/410c2966a1e1856e\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"}},\"description\":\"Audits SQL Vulnerability Assessment coverage the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:37.5097966Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:30.2774737Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/80a3851a4561856e\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"80a3851a4561856e\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-atp types should be set to 'all' in sql server advanced data security settings_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/ac3fc8ad361a9985\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"}},\"description\":\"Audits active SQL ATP detection types across the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:41.0071959Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:28.8367577Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/8eb4c5f8edb95985\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"8eb4c5f8edb95985\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"deny ssh password auth_1.5\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policySetDefinitions/cd305803df135c1b\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"AllowedLocations1\":{\"value\":[\"centraluseuap\",\"eastus2euap\"]}},\"description\":\"This initiative denies the creations of Linux VMs or VMSS which use password-only authentication for SSH. See https://aka.ms/gt/AzurePolicy for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-07-14T00:05:26.0127492Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/91de26bf144b5c1b\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"91de26bf144b5c1b\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b8f1faa61cb41f92\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:24:01.682075Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:35.5430963Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/aca4d19ab4e30392\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"aca4d19ab4e30392\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e695de0794b757d\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"},\"priorities\":{\"value\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\",\"110\",\"111\",\"112\",\"113\",\"114\",\"115\",\"116\",\"117\",\"118\",\"119\"]}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:59.5549343Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:08.0237953Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/b65cf29bbd4b57d\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"b65cf29bbd4b57d\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/26db8d27b6fa91aa\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Kubernets must use the Advanced Networking option to configure the Kubernetes cluster to use a Virtual Network that is on the subscription of the user. This enables the use of NSGs to secure the network traffic for the Kubernetes container. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:58.085345Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:42.6798866Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/bce5fcf8b40531aa\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"bce5fcf8b40531aa\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-advanced data security should be enabled on your sql servers_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e3cff6e23ce4018a\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"}},\"description\":\"Audits SQL ADS coverage the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:35.5090528Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:26.7963478Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/ef59abada7fba18a\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"ef59abada7fba18a\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/11094169db59074f\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"HDInsight Clusters must use the Custom configuration option to configure a VNet in the subscriptiong. This enables the use of NSGs to secure the network traffic for the HDInsight cluster. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:24:01.3537501Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:47.7820687Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/fcbba78ebf3e874f\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"fcbba78ebf3e874f\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_2.1\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/5aac1290d24c772d\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Batch Pools must be configured to use a VNet in the users subscription. This enables the use of NSGs to secure the network traffic for the Batch Account. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:32:59.165052Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:33.0369273Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-BTCH-AUDT-VINJ-v021\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-BTCH-AUDT-VINJ-v021\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/1b0f9cd579f5f04a\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"HDInsight Clusters must use the Custom configuration option to configure a VNet in the subscriptiong. This enables the use of NSGs to secure the network traffic for the HDInsight cluster. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:32:58.0927784Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:11.7643493Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-HDIN-AUDT-VINJ-v012\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-HDIN-AUDT-VINJ-v012\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/cb9c916fd4b6c323\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Kubernets must use the Advanced Networking option to configure the Kubernetes cluster to use a Virtual Network that is on the subscription of the user. This enables the use of NSGs to secure the network traffic for the Kubernetes container. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:33:02.4581818Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:41.1573353Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-KBNT-AUDT-VINJ-v012\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-KBNT-AUDT-VINJ-v012\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-101_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9d78e6174e6e69be\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"101\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, placeholder you can delete, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"443\"]},\"protocol\":{\"value\":\"Tcp\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"VirtualNetwork\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSDatabricks\"},\"subscriptionExclusions\":{\"value\":[]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:06.5946651Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:50.9652509Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"b7a49237-f5b0-473f-a4ff-6830d23af17d\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR101-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR101-v013\",\"location\":\"uaenorth\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-102_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/7c066e9166289efb\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"102\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"*\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"IP Addresses\"},\"sourceValue\":{\"value\":\"194.69.126.224/27,194.69.126.128/27,194.69.127.0/27,194.69.127.96/27,194.69.127.144/29,194.69.104.0/25,20.184.57.184/32,52.139.245.61/32,52.139.245.172/32,52.137.88.174/32,20.42.25.133/32,104.44.112.128/25,104.44.111.128/26,52.191.237.247/32,52.191.220.88/32,52.188.221.200/32,52.151.243.229/32,52.148.118.116/32,52.224.187.226/32,40.91.115.44/32,40.91.114.244/32,40.91.95.146/32,40.91.93.196/32,40.91.94.53/32,40.91.77.216/32,40.119.207.69/32,66.119.150.192/26,191.234.97.0/26,131.107.132.16/28,131.107.132.32/28,131.107.174.0/24,131.107.160.0/24,131.107.159.0/24,131.107.147.0/24,167.220.237.128/27,167.220.226.0/23,167.220.232.0/23,167.220.238.64/27,167.220.238.192/27,167.220.238.128/27,167.220.238.0/27,167.220.248.32/27,167.220.248.96/27,167.220.253.128/29,167.220.255.0/25,167.220.196.0/23,167.220.148.0/23,167.220.128.0/23,167.220.242.64/27,167.220.242.192/27,167.220.242.128/27,167.220.242.0/27,167.220.64.0/19,167.220.70.64/26,167.220.76.192/26,167.220.80.192/26,167.220.77.64/26,167.220.81.128/26,167.220.65.0/27,167.220.81.192/26,167.220.64.0/32,167.220.2.0/24,167.220.0.0/23,167.220.26.0/24,167.220.24.0/24,157.58.31.128/25,157.58.30.128/25,157.58.220.0/22,157.58.218.0/23,157.58.217.0/24,157.58.216.128/25,157.58.216.0/26,157.58.208.0/21,157.58.214.128/26,157.58.213.64/26,157.58.214.192/26,157.58.213.192/26,157.58.212.64/26,157.58.212.128/26,157.58.215.128/25,157.58.192.0/20,157.58.196.64/27,157.58.198.15/32,65.55.188.128/25,65.55.188.132/32,65.55.188.131/32,65.55.188.129/32,65.54.12.64/26,94.245.87.0/24,207.46.217.128/25,207.46.216.128/25,207.46.216.226/32,207.46.216.225/32,70.42.230.0/23\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSCorp\"},\"subscriptionExclusions\":{\"value\":[\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:34.1091048Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:36.4135634Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"985bb80e-8113-4542-8d68-418589e6ff34\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR102-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR102-v013\",\"location\":\"southafricanorth\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-103_1.4\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/3c07197392ad62f\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"103\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"*\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"CorpNetPublic\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSCorp\"},\"subscriptionExclusions\":{\"value\":[\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:27:59.4953193Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:23.3383233Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"2ac3f52f-f3ad-40a4-9b2d-aa24e4c7bbba\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR103-v014\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR103-v014\",\"location\":\"eastus2\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-104_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/bac0fb65020410a4\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"104\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"*\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"CorpNetSaw\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSSAW\"},\"subscriptionExclusions\":{\"value\":[\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:25.1822092Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:55.9717659Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"f2e939bc-742a-42f9-a27a-f0982c6e3f64\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR104-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR104-v013\",\"location\":\"japanwest\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-105_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/91f42c0ca66ff7dd\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"105\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"1433\",\"1434\",\"3306\",\"4333\",\"5432\",\"6379\",\"7000\",\"7001\",\"7199\",\"9042\",\"9160\",\"9300\",\"16379\",\"26379\",\"27017\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSDB\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\",\"6f5dcae0-a801-4d61-869d-7cf26ac8b3c3\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:47.192623Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:38:02.2961864Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"4a113caa-961f-4535-ac9b-79bfba8b9ed2\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR105-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR105-v013\",\"location\":\"australiasoutheast\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-106_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9b8d76c443040b08\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"106\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"22\",\"3389\"]},\"protocol\":{\"value\":\"Tcp\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSRDPSSH\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:53.5540872Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:24.5779103Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"6179a082-c057-4fe3-8118-916b816a42e3\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR106-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR106-v013\",\"location\":\"japanwest\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-107_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/fb6de85c9e746cf1\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"107\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"23\",\"135\",\"445\",\"5985\",\"5986\"]},\"protocol\":{\"value\":\"Tcp\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSMgmt\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:11.2279015Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:22.5704574Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"7c2d0d59-528c-434a-8c6c-03330539cad2\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR107-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR107-v013\",\"location\":\"uksouth\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-108_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/532396f35af78946\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"108\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"13\",\"17\",\"19\",\"53\",\"69\",\"111\",\"123\",\"512\",\"514\",\"593\",\"873\",\"1900\",\"5353\",\"11211\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSHigh\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:02.4628867Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:01.428405Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"7d7aed0a-228e-420b-a6a2-82a49dacb8cb\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR108-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR108-v013\",\"location\":\"germanywestcentral\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-109_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e0bc08af3bd773ff\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"109\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"119\",\"137\",\"138\",\"139\",\"161\",\"162\",\"389\",\"636\",\"2049\",\"2301\",\"2381\",\"3268\",\"5800\",\"5900\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSMedium\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:57.9727253Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:50.054199Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"56d08bc2-cc29-4d23-9d23-fd396b807b02\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR109-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR109-v013\",\"location\":\"southeastasia\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/686f7311dc548f32\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"},\"priorities\":{\"value\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\",\"110\",\"111\",\"112\",\"113\",\"114\",\"115\",\"116\",\"117\",\"118\",\"119\"]}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:33:59.4565556Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:28.1981569Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSGS-AUDT-RULS-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSGS-AUDT-RULS-v013\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/789cfec91f9e1858\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:34:02.1062104Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:27.2901901Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-SBNT-AUDT-NSG-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-SBNT-AUDT-NSG-v013\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-subnet_1.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/852aeb0ee2c0a3a5\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:32:33.7856438Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:17.0959962Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"6fe923a8-2e4d-4c1f-b7d6-a7c5984f0129\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-SBNT-DINE-NSG-v012\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-SBNT-DINE-NSG-v012\",\"location\":\"southindia\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"azuresecuritypackautoupdate_3.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policySetDefinitions/9c46cf6e83dedb18\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"AllowedLocations1\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]}},\"description\":\"Combinations of multiple policies to enable auto update of security pack and geneva agent\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-23T19:35:15.9907469Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-07-01T19:36:03.1679769Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"b7b8bd19-f827-425f-9be1-fd8a86b21904\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/SEC-AzSecPack-v032\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"SEC-AzSecPack-v032\",\"location\":\"australiacentral\"}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Authorization/policyAssignments?api-version=2019-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Authorization/policyAssignments?api-version=2019-09-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "96d7d56a-362f-4e24-adfc-28cf5c27571d", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:39 GMT", - "content-length" : "142091", - "expires" : "-1", - "vary" : "Accept-Encoding", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "70b2fbc2-479f-44de-b48c-26bbaab8728c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092440Z:70b2fbc2-479f-44de-b48c-26bbaab8728c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "koreasouth:11b92105-a26d-4067-abdd-5d26885cbfdb", - "Body" : "{\"value\":[{\"sku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"properties\":{\"displayName\":\"ASC Default (subscription: 00000000-0000-0000-0000-000000000000)\",\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityDesignateLessThanOwnersMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityDesignateMoreThanOneOwnerMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityEnableMFAForOwnerPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityEnableMFAForWritePermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityEnableMFAForReadPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveDeprecatedAccountWithOwnerPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveDeprecatedAccountMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveExternalAccountWithOwnerPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveExternalAccountWithWritePermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveExternalAccountWithReadPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"secureTransferToStorageAccountMonitoringEffect\":{\"value\":\"Audit\"},\"aadAuthenticationInSqlServerMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInRedisCacheMonitoringEffect\":{\"value\":\"Audit\"},\"clusterProtectionLevelInServiceFabricMonitoringEffect\":{\"value\":\"Audit\"},\"aadAuthenticationInServiceFabricMonitoringEffect\":{\"value\":\"Audit\"},\"diagnosticsLogsInServiceBusMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInDataLakeAnalyticsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInDataLakeStoreMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInBatchAccountMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInEventHubMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"metricAlertsInBatchAccountMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"namespaceAuthorizationRulesInServiceBusMonitoringEffect\":{\"value\":\"Audit\"},\"disableUnrestrictedNetworkToStorageAccountMonitoringEffect\":{\"value\":\"Audit\"},\"classicComputeVMsMonitoringEffect\":{\"value\":\"Audit\"},\"classicStorageAccountsMonitoringEffect\":{\"value\":\"Audit\"},\"sqlDbVulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInKeyVaultMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInStreamAnalyticsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInSearchServiceMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInLogicAppsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}},\"description\":\"This policy assignment was automatically created by Azure Security Center\",\"metadata\":{\"assignedBy\":\"Security Center\"},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"SecurityCenterBuiltIn\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy0dd04515\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:07.4739663Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Authorization/policyAssignments/cb303b746c2b419\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"cb303b746c2b419\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment 2\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy0dd04515\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Web/sites/39a1e9b362a44c5\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:38.6231372Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Web/sites/39a1e9b362a44c5/providers/Microsoft.Authorization/policyAssignments/79624cf0a146493\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"79624cf0a146493\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"audit ssh auth_1.4\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policySetDefinitions/3be0ea1bef3d71ca\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"AllowedLocations1\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"global\",\"brazilsoutheast\"]}},\"description\":\"This initiative audits whether any Linux VMs or VMSS use password-only authentication for SSH. See https://aka.ms/gt/AzurePolicy for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-05-12T23:48:29.541787Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-17T15:34:05.0362645Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/1fc2c9de5f6971ca\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"1fc2c9de5f6971ca\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/74c98b59a6341488\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Batch Accounts must use a Pool Allocation Mode of User subscription on the Advanced tab to configure a VNet in the subscriptiong. This enables the use of NSGs to secure the network traffic for the Batch Account. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:59.9760562Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:40.3716797Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/6bff79d27acb9c88\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"6bff79d27acb9c88\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-auditing should be enabled on advanced data security settings on sql server_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/8fce770def99399\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"},\"setting\":{\"value\":\"enabled\"}},\"description\":\"Audits SQL server level auditing coverage in the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:37.4717502Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:25.8570726Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/6c0b4582049bbf99\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"6c0b4582049bbf99\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-vulnerability assessment should be enabled on your sql servers_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/410c2966a1e1856e\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"}},\"description\":\"Audits SQL Vulnerability Assessment coverage the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:37.5097966Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:30.2774737Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/80a3851a4561856e\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"80a3851a4561856e\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-atp types should be set to 'all' in sql server advanced data security settings_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/ac3fc8ad361a9985\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"}},\"description\":\"Audits active SQL ATP detection types across the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:41.0071959Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:28.8367577Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/8eb4c5f8edb95985\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"8eb4c5f8edb95985\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"deny ssh password auth_1.5\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policySetDefinitions/cd305803df135c1b\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"AllowedLocations1\":{\"value\":[\"centraluseuap\",\"eastus2euap\"]}},\"description\":\"This initiative denies the creations of Linux VMs or VMSS which use password-only authentication for SSH. See https://aka.ms/gt/AzurePolicy for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-07-14T00:05:26.0127492Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/91de26bf144b5c1b\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"91de26bf144b5c1b\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b8f1faa61cb41f92\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:24:01.682075Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:35.5430963Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/aca4d19ab4e30392\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"aca4d19ab4e30392\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e695de0794b757d\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"},\"priorities\":{\"value\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\",\"110\",\"111\",\"112\",\"113\",\"114\",\"115\",\"116\",\"117\",\"118\",\"119\"]}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:59.5549343Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:08.0237953Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/b65cf29bbd4b57d\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"b65cf29bbd4b57d\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/26db8d27b6fa91aa\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Kubernets must use the Advanced Networking option to configure the Kubernetes cluster to use a Virtual Network that is on the subscription of the user. This enables the use of NSGs to secure the network traffic for the Kubernetes container. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:58.085345Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:42.6798866Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/bce5fcf8b40531aa\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"bce5fcf8b40531aa\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-advanced data security should be enabled on your sql servers_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e3cff6e23ce4018a\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"}},\"description\":\"Audits SQL ADS coverage the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:35.5090528Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:26.7963478Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/ef59abada7fba18a\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"ef59abada7fba18a\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/11094169db59074f\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"HDInsight Clusters must use the Custom configuration option to configure a VNet in the subscriptiong. This enables the use of NSGs to secure the network traffic for the HDInsight cluster. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:24:01.3537501Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:47.7820687Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/fcbba78ebf3e874f\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"fcbba78ebf3e874f\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_2.1\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/5aac1290d24c772d\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Batch Pools must be configured to use a VNet in the users subscription. This enables the use of NSGs to secure the network traffic for the Batch Account. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:32:59.165052Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:33.0369273Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-BTCH-AUDT-VINJ-v021\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-BTCH-AUDT-VINJ-v021\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/1b0f9cd579f5f04a\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"HDInsight Clusters must use the Custom configuration option to configure a VNet in the subscriptiong. This enables the use of NSGs to secure the network traffic for the HDInsight cluster. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:32:58.0927784Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:11.7643493Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-HDIN-AUDT-VINJ-v012\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-HDIN-AUDT-VINJ-v012\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/cb9c916fd4b6c323\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Kubernets must use the Advanced Networking option to configure the Kubernetes cluster to use a Virtual Network that is on the subscription of the user. This enables the use of NSGs to secure the network traffic for the Kubernetes container. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:33:02.4581818Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:41.1573353Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-KBNT-AUDT-VINJ-v012\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-KBNT-AUDT-VINJ-v012\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-101_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9d78e6174e6e69be\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"101\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, placeholder you can delete, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"443\"]},\"protocol\":{\"value\":\"Tcp\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"VirtualNetwork\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSDatabricks\"},\"subscriptionExclusions\":{\"value\":[]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:06.5946651Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:50.9652509Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"b7a49237-f5b0-473f-a4ff-6830d23af17d\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR101-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR101-v013\",\"location\":\"uaenorth\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-102_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/7c066e9166289efb\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"102\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"*\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"IP Addresses\"},\"sourceValue\":{\"value\":\"194.69.126.224/27,194.69.126.128/27,194.69.127.0/27,194.69.127.96/27,194.69.127.144/29,194.69.104.0/25,20.184.57.184/32,52.139.245.61/32,52.139.245.172/32,52.137.88.174/32,20.42.25.133/32,104.44.112.128/25,104.44.111.128/26,52.191.237.247/32,52.191.220.88/32,52.188.221.200/32,52.151.243.229/32,52.148.118.116/32,52.224.187.226/32,40.91.115.44/32,40.91.114.244/32,40.91.95.146/32,40.91.93.196/32,40.91.94.53/32,40.91.77.216/32,40.119.207.69/32,66.119.150.192/26,191.234.97.0/26,131.107.132.16/28,131.107.132.32/28,131.107.174.0/24,131.107.160.0/24,131.107.159.0/24,131.107.147.0/24,167.220.237.128/27,167.220.226.0/23,167.220.232.0/23,167.220.238.64/27,167.220.238.192/27,167.220.238.128/27,167.220.238.0/27,167.220.248.32/27,167.220.248.96/27,167.220.253.128/29,167.220.255.0/25,167.220.196.0/23,167.220.148.0/23,167.220.128.0/23,167.220.242.64/27,167.220.242.192/27,167.220.242.128/27,167.220.242.0/27,167.220.64.0/19,167.220.70.64/26,167.220.76.192/26,167.220.80.192/26,167.220.77.64/26,167.220.81.128/26,167.220.65.0/27,167.220.81.192/26,167.220.64.0/32,167.220.2.0/24,167.220.0.0/23,167.220.26.0/24,167.220.24.0/24,157.58.31.128/25,157.58.30.128/25,157.58.220.0/22,157.58.218.0/23,157.58.217.0/24,157.58.216.128/25,157.58.216.0/26,157.58.208.0/21,157.58.214.128/26,157.58.213.64/26,157.58.214.192/26,157.58.213.192/26,157.58.212.64/26,157.58.212.128/26,157.58.215.128/25,157.58.192.0/20,157.58.196.64/27,157.58.198.15/32,65.55.188.128/25,65.55.188.132/32,65.55.188.131/32,65.55.188.129/32,65.54.12.64/26,94.245.87.0/24,207.46.217.128/25,207.46.216.128/25,207.46.216.226/32,207.46.216.225/32,70.42.230.0/23\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSCorp\"},\"subscriptionExclusions\":{\"value\":[\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:34.1091048Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:36.4135634Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"985bb80e-8113-4542-8d68-418589e6ff34\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR102-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR102-v013\",\"location\":\"southafricanorth\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-103_1.4\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/3c07197392ad62f\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"103\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"*\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"CorpNetPublic\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSCorp\"},\"subscriptionExclusions\":{\"value\":[\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:27:59.4953193Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:23.3383233Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"2ac3f52f-f3ad-40a4-9b2d-aa24e4c7bbba\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR103-v014\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR103-v014\",\"location\":\"eastus2\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-104_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/bac0fb65020410a4\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"104\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"*\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"CorpNetSaw\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSSAW\"},\"subscriptionExclusions\":{\"value\":[\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:25.1822092Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:55.9717659Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"f2e939bc-742a-42f9-a27a-f0982c6e3f64\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR104-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR104-v013\",\"location\":\"japanwest\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-105_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/91f42c0ca66ff7dd\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"105\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"1433\",\"1434\",\"3306\",\"4333\",\"5432\",\"6379\",\"7000\",\"7001\",\"7199\",\"9042\",\"9160\",\"9300\",\"16379\",\"26379\",\"27017\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSDB\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\",\"6f5dcae0-a801-4d61-869d-7cf26ac8b3c3\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:47.192623Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:38:02.2961864Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"4a113caa-961f-4535-ac9b-79bfba8b9ed2\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR105-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR105-v013\",\"location\":\"australiasoutheast\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-106_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9b8d76c443040b08\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"106\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"22\",\"3389\"]},\"protocol\":{\"value\":\"Tcp\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSRDPSSH\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:53.5540872Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:24.5779103Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"6179a082-c057-4fe3-8118-916b816a42e3\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR106-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR106-v013\",\"location\":\"japanwest\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-107_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/fb6de85c9e746cf1\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"107\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"23\",\"135\",\"445\",\"5985\",\"5986\"]},\"protocol\":{\"value\":\"Tcp\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSMgmt\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:11.2279015Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:22.5704574Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"7c2d0d59-528c-434a-8c6c-03330539cad2\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR107-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR107-v013\",\"location\":\"uksouth\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-108_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/532396f35af78946\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"108\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"13\",\"17\",\"19\",\"53\",\"69\",\"111\",\"123\",\"512\",\"514\",\"593\",\"873\",\"1900\",\"5353\",\"11211\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSHigh\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:02.4628867Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:01.428405Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"7d7aed0a-228e-420b-a6a2-82a49dacb8cb\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR108-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR108-v013\",\"location\":\"germanywestcentral\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-109_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e0bc08af3bd773ff\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"109\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"119\",\"137\",\"138\",\"139\",\"161\",\"162\",\"389\",\"636\",\"2049\",\"2301\",\"2381\",\"3268\",\"5800\",\"5900\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSMedium\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:57.9727253Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:50.054199Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"56d08bc2-cc29-4d23-9d23-fd396b807b02\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR109-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR109-v013\",\"location\":\"southeastasia\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/686f7311dc548f32\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"},\"priorities\":{\"value\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\",\"110\",\"111\",\"112\",\"113\",\"114\",\"115\",\"116\",\"117\",\"118\",\"119\"]}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:33:59.4565556Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:28.1981569Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSGS-AUDT-RULS-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSGS-AUDT-RULS-v013\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/789cfec91f9e1858\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:34:02.1062104Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:27.2901901Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-SBNT-AUDT-NSG-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-SBNT-AUDT-NSG-v013\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-subnet_1.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/852aeb0ee2c0a3a5\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:32:33.7856438Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:17.0959962Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"6fe923a8-2e4d-4c1f-b7d6-a7c5984f0129\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-SBNT-DINE-NSG-v012\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-SBNT-DINE-NSG-v012\",\"location\":\"southindia\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"azuresecuritypackautoupdate_3.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policySetDefinitions/9c46cf6e83dedb18\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"AllowedLocations1\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]}},\"description\":\"Combinations of multiple policies to enable auto update of security pack and geneva agent\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-23T19:35:15.9907469Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-07-01T19:36:03.1679769Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"b7b8bd19-f827-425f-9be1-fd8a86b21904\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/SEC-AzSecPack-v032\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"SEC-AzSecPack-v032\",\"location\":\"australiacentral\"}]}" - } + "Date" : "Tue, 11 Aug 2020 09:59:06 GMT", + "x-ms-correlation-request-id" : "6fbe9238-5f9c-4704-905d-9e2e78407638", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095906Z:6fbe9238-5f9c-4704-905d-9e2e78407638", + "Vary" : "Accept-Encoding", + "Expires" : "-1", + "Content-Length" : "142084", + "x-ms-request-id" : "southeastasia:9cdf67aa-0028-4b78-9113-1e9daf13c1f8", + "Body" : "{\"value\":[{\"sku\":{\"name\":\"A1\",\"tier\":\"Standard\"},\"properties\":{\"displayName\":\"ASC Default (subscription: 00000000-0000-0000-0000-000000000000)\",\"policyDefinitionId\":\"/providers/Microsoft.Authorization/policySetDefinitions/1f3afdf9-d0c9-4c3d-847f-89da613e70a8\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"parameters\":{\"diagnosticsLogsInServiceFabricMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemUpdatesMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"systemConfigurationsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"endpointProtectionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diskEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"networkSecurityGroupsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"webApplicationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlAuditingMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"sqlEncryptionMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"nextGenerationFirewallMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"vulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"storageEncryptionMonitoringEffect\":{\"value\":\"Audit\"},\"jitNetworkAccessMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"adaptiveApplicationControlsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityDesignateLessThanOwnersMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityDesignateMoreThanOneOwnerMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityEnableMFAForOwnerPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityEnableMFAForWritePermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityEnableMFAForReadPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveDeprecatedAccountWithOwnerPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveDeprecatedAccountMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveExternalAccountWithOwnerPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveExternalAccountWithWritePermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"identityRemoveExternalAccountWithReadPermissionsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"secureTransferToStorageAccountMonitoringEffect\":{\"value\":\"Audit\"},\"aadAuthenticationInSqlServerMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInRedisCacheMonitoringEffect\":{\"value\":\"Audit\"},\"clusterProtectionLevelInServiceFabricMonitoringEffect\":{\"value\":\"Audit\"},\"aadAuthenticationInServiceFabricMonitoringEffect\":{\"value\":\"Audit\"},\"diagnosticsLogsInServiceBusMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInDataLakeAnalyticsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInDataLakeStoreMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInBatchAccountMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInEventHubMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"metricAlertsInBatchAccountMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"namespaceAuthorizationRulesInServiceBusMonitoringEffect\":{\"value\":\"Audit\"},\"disableUnrestrictedNetworkToStorageAccountMonitoringEffect\":{\"value\":\"Audit\"},\"classicComputeVMsMonitoringEffect\":{\"value\":\"Audit\"},\"classicStorageAccountsMonitoringEffect\":{\"value\":\"Audit\"},\"sqlDbVulnerabilityAssesmentMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInKeyVaultMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInStreamAnalyticsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInSearchServiceMonitoringEffect\":{\"value\":\"AuditIfNotExists\"},\"diagnosticsLogsInLogicAppsMonitoringEffect\":{\"value\":\"AuditIfNotExists\"}},\"description\":\"This policy assignment was automatically created by Azure Security Center\",\"metadata\":{\"assignedBy\":\"Security Center\"},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyAssignments/SecurityCenterBuiltIn\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"SecurityCenterBuiltIn\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy058614a\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:58:37.3765411Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Authorization/policyAssignments/c5b61ad02b2c430\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"c5b61ad02b2c430\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment 2\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy058614a\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Web/sites/be2d8493cf27460\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:59:06.550309Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Web/sites/be2d8493cf27460/providers/Microsoft.Authorization/policyAssignments/d41d8a323d784cb\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"d41d8a323d784cb\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"audit ssh auth_1.4\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policySetDefinitions/3be0ea1bef3d71ca\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"AllowedLocations1\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"global\",\"brazilsoutheast\"]}},\"description\":\"This initiative audits whether any Linux VMs or VMSS use password-only authentication for SSH. See https://aka.ms/gt/AzurePolicy for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-05-12T23:48:29.541787Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-17T15:34:05.0362645Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/1fc2c9de5f6971ca\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"1fc2c9de5f6971ca\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/74c98b59a6341488\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Batch Accounts must use a Pool Allocation Mode of User subscription on the Advanced tab to configure a VNet in the subscriptiong. This enables the use of NSGs to secure the network traffic for the Batch Account. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:59.9760562Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:40.3716797Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/6bff79d27acb9c88\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"6bff79d27acb9c88\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-auditing should be enabled on advanced data security settings on sql server_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/8fce770def99399\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"},\"setting\":{\"value\":\"enabled\"}},\"description\":\"Audits SQL server level auditing coverage in the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:37.4717502Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:25.8570726Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/6c0b4582049bbf99\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"6c0b4582049bbf99\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-vulnerability assessment should be enabled on your sql servers_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/410c2966a1e1856e\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"}},\"description\":\"Audits SQL Vulnerability Assessment coverage the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:37.5097966Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:30.2774737Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/80a3851a4561856e\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"80a3851a4561856e\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-atp types should be set to 'all' in sql server advanced data security settings_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/ac3fc8ad361a9985\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"}},\"description\":\"Audits active SQL ATP detection types across the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:41.0071959Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:28.8367577Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/8eb4c5f8edb95985\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"8eb4c5f8edb95985\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"deny ssh password auth_1.5\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policySetDefinitions/cd305803df135c1b\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"AllowedLocations1\":{\"value\":[\"centraluseuap\",\"eastus2euap\"]}},\"description\":\"This initiative denies the creations of Linux VMs or VMSS which use password-only authentication for SSH. See https://aka.ms/gt/AzurePolicy for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-07-14T00:05:26.0127492Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/91de26bf144b5c1b\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"91de26bf144b5c1b\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b8f1faa61cb41f92\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:24:01.682075Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:35.5430963Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/aca4d19ab4e30392\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"aca4d19ab4e30392\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e695de0794b757d\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"},\"priorities\":{\"value\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\",\"110\",\"111\",\"112\",\"113\",\"114\",\"115\",\"116\",\"117\",\"118\",\"119\"]}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:59.5549343Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:08.0237953Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/b65cf29bbd4b57d\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"b65cf29bbd4b57d\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/26db8d27b6fa91aa\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Kubernets must use the Advanced Networking option to configure the Kubernetes cluster to use a Virtual Network that is on the subscription of the user. This enables the use of NSGs to secure the network traffic for the Kubernetes container. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:58.085345Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:42.6798866Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/bce5fcf8b40531aa\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"bce5fcf8b40531aa\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"sqlads-auditifnotexists-advanced data security should be enabled on your sql servers_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e3cff6e23ce4018a\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]},\"effect\":{\"value\":\"AuditIfNotExists\"},\"tagname\":{\"value\":\"SQLADSExcluded\"}},\"description\":\"Audits SQL ADS coverage the MS Corp tenant.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:35.5090528Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-24T02:13:26.7963478Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/ef59abada7fba18a\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"ef59abada7fba18a\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.0\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/11094169db59074f\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"uksouth2\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"uknorth\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uaecentral\",\"uaenorth\",\"southafricanorth\",\"southafricawest\",\"switzerlandnorth\",\"switzerlandwest\",\"germanynorth\",\"germanywestcentral\",\"norwayeast\",\"norwaywest\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"HDInsight Clusters must use the Custom configuration option to configure a VNet in the subscriptiong. This enables the use of NSGs to secure the network traffic for the HDInsight cluster. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:24:01.3537501Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:47.7820687Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/fcbba78ebf3e874f\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"fcbba78ebf3e874f\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_2.1\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/5aac1290d24c772d\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Batch Pools must be configured to use a VNet in the users subscription. This enables the use of NSGs to secure the network traffic for the Batch Account. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:32:59.165052Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:33.0369273Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-BTCH-AUDT-VINJ-v021\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-BTCH-AUDT-VINJ-v021\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/1b0f9cd579f5f04a\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"HDInsight Clusters must use the Custom configuration option to configure a VNet in the subscriptiong. This enables the use of NSGs to secure the network traffic for the HDInsight cluster. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:32:58.0927784Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:11.7643493Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-HDIN-AUDT-VINJ-v012\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-HDIN-AUDT-VINJ-v012\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/cb9c916fd4b6c323\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"Kubernets must use the Advanced Networking option to configure the Kubernetes cluster to use a Virtual Network that is on the subscription of the user. This enables the use of NSGs to secure the network traffic for the Kubernetes container. See https://aka.ms/netiso/vnetinjection for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:33:02.4581818Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:41.1573353Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-KBNT-AUDT-VINJ-v012\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-KBNT-AUDT-VINJ-v012\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-101_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9d78e6174e6e69be\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"101\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, placeholder you can delete, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"443\"]},\"protocol\":{\"value\":\"Tcp\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"VirtualNetwork\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSDatabricks\"},\"subscriptionExclusions\":{\"value\":[]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:06.5946651Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:50.9652509Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"b7a49237-f5b0-473f-a4ff-6830d23af17d\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR101-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR101-v013\",\"location\":\"uaenorth\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-102_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/7c066e9166289efb\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"102\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"*\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"IP Addresses\"},\"sourceValue\":{\"value\":\"194.69.126.224/27,194.69.126.128/27,194.69.127.0/27,194.69.127.96/27,194.69.127.144/29,194.69.104.0/25,20.184.57.184/32,52.139.245.61/32,52.139.245.172/32,52.137.88.174/32,20.42.25.133/32,104.44.112.128/25,104.44.111.128/26,52.191.237.247/32,52.191.220.88/32,52.188.221.200/32,52.151.243.229/32,52.148.118.116/32,52.224.187.226/32,40.91.115.44/32,40.91.114.244/32,40.91.95.146/32,40.91.93.196/32,40.91.94.53/32,40.91.77.216/32,40.119.207.69/32,66.119.150.192/26,191.234.97.0/26,131.107.132.16/28,131.107.132.32/28,131.107.174.0/24,131.107.160.0/24,131.107.159.0/24,131.107.147.0/24,167.220.237.128/27,167.220.226.0/23,167.220.232.0/23,167.220.238.64/27,167.220.238.192/27,167.220.238.128/27,167.220.238.0/27,167.220.248.32/27,167.220.248.96/27,167.220.253.128/29,167.220.255.0/25,167.220.196.0/23,167.220.148.0/23,167.220.128.0/23,167.220.242.64/27,167.220.242.192/27,167.220.242.128/27,167.220.242.0/27,167.220.64.0/19,167.220.70.64/26,167.220.76.192/26,167.220.80.192/26,167.220.77.64/26,167.220.81.128/26,167.220.65.0/27,167.220.81.192/26,167.220.64.0/32,167.220.2.0/24,167.220.0.0/23,167.220.26.0/24,167.220.24.0/24,157.58.31.128/25,157.58.30.128/25,157.58.220.0/22,157.58.218.0/23,157.58.217.0/24,157.58.216.128/25,157.58.216.0/26,157.58.208.0/21,157.58.214.128/26,157.58.213.64/26,157.58.214.192/26,157.58.213.192/26,157.58.212.64/26,157.58.212.128/26,157.58.215.128/25,157.58.192.0/20,157.58.196.64/27,157.58.198.15/32,65.55.188.128/25,65.55.188.132/32,65.55.188.131/32,65.55.188.129/32,65.54.12.64/26,94.245.87.0/24,207.46.217.128/25,207.46.216.128/25,207.46.216.226/32,207.46.216.225/32,70.42.230.0/23\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSCorp\"},\"subscriptionExclusions\":{\"value\":[\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:34.1091048Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:36.4135634Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"985bb80e-8113-4542-8d68-418589e6ff34\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR102-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR102-v013\",\"location\":\"southafricanorth\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-103_1.4\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/3c07197392ad62f\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"103\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"*\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"CorpNetPublic\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSCorp\"},\"subscriptionExclusions\":{\"value\":[\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:27:59.4953193Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:23.3383233Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"2ac3f52f-f3ad-40a4-9b2d-aa24e4c7bbba\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR103-v014\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR103-v014\",\"location\":\"eastus2\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-104_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/bac0fb65020410a4\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"104\"},\"info\":{\"value\":\"Created by Azure Core Security managed policy, rule can be deleted but do not change source ips, please see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"*\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"CorpNetSaw\"},\"actionValue\":{\"value\":\"Allow\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSSAW\"},\"subscriptionExclusions\":{\"value\":[\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:25.1822092Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:55.9717659Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"f2e939bc-742a-42f9-a27a-f0982c6e3f64\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR104-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR104-v013\",\"location\":\"japanwest\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-105_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/91f42c0ca66ff7dd\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"105\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"1433\",\"1434\",\"3306\",\"4333\",\"5432\",\"6379\",\"7000\",\"7001\",\"7199\",\"9042\",\"9160\",\"9300\",\"16379\",\"26379\",\"27017\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSDB\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\",\"6f5dcae0-a801-4d61-869d-7cf26ac8b3c3\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:47.192623Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:38:02.2961864Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"4a113caa-961f-4535-ac9b-79bfba8b9ed2\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR105-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR105-v013\",\"location\":\"australiasoutheast\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-106_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9b8d76c443040b08\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"106\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"22\",\"3389\"]},\"protocol\":{\"value\":\"Tcp\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSRDPSSH\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:53.5540872Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:35:24.5779103Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"6179a082-c057-4fe3-8118-916b816a42e3\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR106-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR106-v013\",\"location\":\"japanwest\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-107_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/fb6de85c9e746cf1\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"107\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"23\",\"135\",\"445\",\"5985\",\"5986\"]},\"protocol\":{\"value\":\"Tcp\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSMgmt\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:11.2279015Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:22.5704574Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"7c2d0d59-528c-434a-8c6c-03330539cad2\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR107-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR107-v013\",\"location\":\"uksouth\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-108_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/532396f35af78946\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"108\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"13\",\"17\",\"19\",\"53\",\"69\",\"111\",\"123\",\"512\",\"514\",\"593\",\"873\",\"1900\",\"5353\",\"11211\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSHigh\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:02.4628867Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:01.428405Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"7d7aed0a-228e-420b-a6a2-82a49dacb8cb\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR108-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR108-v013\",\"location\":\"germanywestcentral\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-rule-109_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e0bc08af3bd773ff\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"ruleNo\":{\"value\":\"109\"},\"info\":{\"value\":\"DO NOT DELETE - Will result in ICM Sev 2 - Azure Core Security, see aka.ms/cainsgpolicy\"},\"destinationPortRanges\":{\"value\":[\"119\",\"137\",\"138\",\"139\",\"161\",\"162\",\"389\",\"636\",\"2049\",\"2301\",\"2381\",\"3268\",\"5800\",\"5900\"]},\"protocol\":{\"value\":\"*\"},\"sourceType\":{\"value\":\"Service Tag\"},\"sourceValue\":{\"value\":\"Internet\"},\"actionValue\":{\"value\":\"Deny\"},\"direction\":{\"value\":\"Inbound\"},\"tagname\":{\"value\":\"SkipNRMSMedium\"},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:57.9727253Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:50.054199Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"56d08bc2-cc29-4d23-9d23-fd396b807b02\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSG-DINE-SR109-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSG-DINE-SR109-v013\",\"location\":\"southeastasia\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/686f7311dc548f32\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"},\"priorities\":{\"value\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\",\"110\",\"111\",\"112\",\"113\",\"114\",\"115\",\"116\",\"117\",\"118\",\"119\"]}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:33:59.4565556Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:36:28.1981569Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-NSGS-AUDT-RULS-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-NSGS-AUDT-RULS-v013\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.3\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/789cfec91f9e1858\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"effect\":{\"value\":\"Audit\"}},\"description\":\"All C+AI Subscriptions must have a NSG on all VNets in the subscription. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:34:02.1062104Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:27.2901901Z\"},\"enforcementMode\":\"Default\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-SBNT-AUDT-NSG-v013\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-SBNT-AUDT-NSG-v013\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"nrms-nsg-subnet_1.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/852aeb0ee2c0a3a5\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"allowedLocations\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"global\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\"]},\"subscriptionExclusions\":{\"value\":[\"61868ab8-16d4-44ec-a9ff-f35d05922847\",\"41c39ac7-6cde-4be7-87c3-d57a168b7b92\",\"235d341f-7fb9-435c-9bdc-034b7306c9b4\",\"239b3f1a-daab-4125-918c-f028b0edb054\",\"12f44720-8952-422c-bb7d-28831c2de639\",\"c36fd9e7-e5b1-4d3e-bb85-2e538040258b\",\"243b67d4-60ca-4dfd-a556-216ee06f77a1\",\"24ae0a2f-2cb0-4a1a-9929-bed71bad0d59\",\"b4582baf-35d9-47b9-b03d-1bd126876221\",\"65f79f71-cb42-45b1-82b7-4635fd05fc26\",\"9532a63e-f2eb-4649-bb23-5ed01077ce80\",\"1533031f-9510-4d8d-8f83-af94df45d43c\",\"73d25f92-e703-4c91-8aed-2fb23c8e151f\",\"86d6f8d7-564b-4005-912c-b1a3a9a286ce\",\"97a3d790-8d62-4f20-b579-39ee6b06cb45\",\"179be307-0377-46c0-a8bb-17437582d266\",\"6c516c14-f378-4780-bc52-dd1d098a9c0b\",\"cc5e1d36-a80d-4878-add9-5204a7efda20\",\"0bf83929-3a19-4a96-87da-b23c3aca7fd7\",\"ad7af743-6a66-480e-98cd-e022f833d0ce\",\"0cfe98e1-3cf6-41ca-9f54-435d1ddaf0de\",\"ce6570fa-18fb-4503-80d9-4a225591a428\",\"2f8446c7-7c1e-42f0-a6b7-d68df1255cc4\",\"ff78024c-d5a1-48ae-88eb-d61f0f60f8ff\",\"bdd789f3-d9d1-4bea-ac14-30a39ed66d33\",\"6fe0c04c-acb9-4f74-8153-56a6cb666ca8\",\"7fa88f8d-252c-4b22-a73e-cd77f85cca66\",\"bafb24c9-f4bb-46a0-9891-4b3e12dab22e\",\"aab411af-ed4d-4f02-bb87-5de8b00d880d\",\"7e7b7a6f-0b34-4db9-958d-ece4c89b419f\",\"964c10bb-8a6c-43bc-83d3-6b318c6c7305\",\"7b29bb4e-8391-4d57-8045-b34a092e5108\",\"3f706ca0-34d7-4ede-a432-3c1a37ddd5c6\",\"7856cb6f-e1a8-48f2-b2a5-bfaa7f8c34a1\",\"49e3ed89-bbdb-4545-844f-e3502d6ce44f\",\"8cad7ef7-ae41-4adf-86b8-ffcb11fae200\",\"8e9ec0f8-bfe6-43a5-acd2-b6c4666ef9f6\",\"b8fc6ee8-6802-4605-b4a5-1d131084c62f\",\"45493131-fef6-4cb1-80e9-f0dadaa0255a\",\"9c8295ef-4bf7-49db-90aa-5f0837dc60b7\",\"ed0b2672-8412-463f-a0c1-1867730d7e27\",\"7f31cba8-b597-4129-b158-8f21a7395bd0\",\"3b658bfc-dbb0-4f7a-9e6c-a7659ade3514\",\"825d553e-1fdf-4961-8f6b-bab24c6b07a7\",\"477d55b5-bef1-4c35-b8bd-42df6ef99d25\",\"0cd887ff-5af0-405b-8d48-b2b0495af57b\",\"4259a25b-fc62-41d0-a101-60bfaab38086\",\"3ae1ab9b-5849-4409-b744-58ba98878274\",\"8d8d3365-2fab-415f-862e-712d989871b2\",\"1ef6f67e-7981-498c-8349-b67109d0fd0f\",\"e9b95386-37fe-4820-9dc6-30a44fbeafba\",\"f9e81224-18f1-4474-80b5-bd6b832f0b73\",\"f0b97671-152e-45cc-a831-73fd5caa8740\",\"d4c1893d-adf1-4111-aaa3-93d55a4059b9\",\"2d3ea1e9-269c-4fd1-8878-21e84bf9d214\",\"1267b3e1-8812-4435-82ff-9e57f390c194\",\"38c49794-e385-48e6-b6ee-c42b9f2075be\",\"2843db96-7d25-4cf5-8e67-71baed52dfb7\",\"a531aaa4-20f4-40e6-ba1a-858a0359f602\",\"b835f458-560c-49c2-8781-4b13d892ddd9\",\"e4d287eb-a38c-4387-832a-e3c61ea576bd\",\"af878dc5-7fe2-4698-b7fb-2ed4b2ffe4db\",\"26d6d535-5164-443d-82f6-4c695caf7688\",\"d862948f-6520-451f-af67-123309e4e4ce\",\"ff96a11f-784d-4c26-94c7-34346d4d660e\",\"38b241a5-8658-4b50-bfba-1800ee2d4d09\",\"28f78ae5-97b2-487e-b097-270de10ce6b8\",\"6c048bcd-2cc6-47fe-a558-ca54083d537e\",\"62fc3d9a-b8ab-47e7-8df1-be09f78bb25a\",\"48aae13c-e8a8-4057-a5d5-f77eaa56f1fd\",\"b30d9dbd-c0f7-405f-902c-3eabd080eb00\",\"aa858381-0720-4837-b0f8-60468c0b2763\",\"7e6898e7-868d-490f-8f91-0cffa67c48a0\",\"816e6e0f-a719-487e-a651-813f40cc95c5\",\"aeaa528b-2620-42a7-bbe8-17b698d42530\",\"9c870d54-05fd-46bb-9bb5-63a5756320a0\",\"36e4aeae-caae-4cd6-8d6b-7015355c6229\",\"d53f365b-64c6-45fa-9253-99fc92dfae5d\",\"6b7b20bf-f54b-4a3d-9961-c85fbe894b67\",\"875bd0a7-0adc-4391-8b42-85e866e87e5d\",\"97454014-0118-4294-9648-938eb8f52327\",\"de1883af-a411-450a-8c9f-55b07d48cd60\",\"991af618-96d9-4bc0-879d-0e13ac6020c1\",\"21eedfa4-4dc5-4056-bdba-dcfaf3b1a222\",\"0e57ff86-19ec-4f88-8403-879bd0d64af8\",\"31c8019a-6c01-4c1d-9a04-6bbd091e8ccd\",\"52ce96d0-a12d-4e17-9644-50e0059a7730\",\"f5f248fd-943d-477b-a9d2-de3db83d7712\",\"c4ae973f-3a15-4409-a6cc-9cc91147f42e\",\"ed10ec26-e9a9-40ba-85df-2d7e2dec7765\",\"a083c30e-d4e5-4dc1-b310-02aaf36b316a\",\"c1fd1678-d0fe-4253-a15f-a03eee323432\",\"a013b98a-6c2a-4f92-a6a7-82266ac6f437\",\"ef7a7954-0173-4574-86a1-486e015ab617\",\"ded8fcaf-289f-40bd-b124-572d3d4f58ed\",\"178b7546-3fed-4e8a-b001-9c71b1051ce9\",\"f2b7f785-c33d-471f-bb13-57d62e83af62\",\"a226aace-1c2d-4a53-96a3-de0ea8f3e4ad\",\"b909342e-42c0-423e-8815-ea07509e27f9\",\"9d124ad5-c7de-4c56-8ffe-0f3f6566d3b3\",\"ddc736d4-2fe4-44ad-8b82-080913c64b79\",\"ea406f31-bf7a-4139-a444-1f23847f1350\",\"66affadd-ce7e-4ac3-a16c-d85dc2d07544\",\"d0e65693-60a1-438c-be56-2225cf43d568\",\"902dc4d6-9ae1-4141-ac1b-ca5b3071cd63\",\"cac63bb3-1459-4b23-a864-f2ea6c6456e9\",\"2fa553a5-a443-4f09-bd4c-dbc9ded93a1c\",\"9d7c4ce2-5443-4499-a07a-695894000463\",\"3814aaea-6bb6-4e31-b3c4-45e761c8d6d1\",\"9d0fe465-cebe-41a0-afc4-e49fe70dee55\",\"2edae715-e43e-471a-9b6d-a6bc52a395c0\",\"c7d2e450-636b-443d-b737-5e2708629ea1\",\"4bb073a1-ad47-4f14-bfa6-9ffd55ea8f81\",\"0fbc3fc8-1bcd-433d-a6f0-b96ca76c60dc\",\"f3d00ca5-7ce1-4562-8160-2a856dd6d1f3\",\"1c91c686-b0d1-4f51-8784-9eee52c07b7e\",\"c1089427-83d3-4286-9f35-5af546a6eb67\",\"ec716296-0c8d-410a-8666-1eff05989831\",\"c31ad117-e07c-4388-9148-387a2ba72135\",\"c9802e4f-0860-43a1-b3ed-37d3ae8cdf92\",\"708474aa-31a7-4dbd-a106-84de1043185d\",\"f6470ed6-05de-421c-bae8-184d8d28be10\",\"17cfecb9-1a5f-4b8b-a32f-119de8c44f5a\",\"70d2f261-7253-4b1a-a52a-406e7a328c33\",\"2fda68f7-567f-4c8f-b0b7-f4b6a5988e84\",\"86b0b59c-8538-4aa6-90f6-ce8329258bb2\",\"8ecadfc9-d1a3-4ea4-b844-0d9f87e4d7c8\",\"433e1858-1953-42b2-a9dd-d7601c25d347\",\"bb1216b4-4400-422b-8a67-8a80a9c88d5e\",\"cf5e3b9b-595a-499d-8669-00b88b449213\",\"e01c1ddb-8025-491a-986d-c249fa9a69a0\",\"9d71e31b-7356-4d2d-a6e9-d588fc7692c2\",\"c6e602bd-0d12-4265-bebc-cb208dd5030f\",\"e929be23-7420-44f3-bd80-810a56d06e1e\",\"46b59458-3f32-4f06-b6a2-bd27dda4305c\",\"14cff334-91a5-4d9d-bf42-39c6d630d37c\",\"80c8978c-c1c6-4f9e-94cd-874798b05935\",\"f9da0435-3452-483a-a5f4-743988dc6b1d\",\"0f1325ea-bcfe-4b02-a303-baaefb80a9f9\",\"70407fa2-4234-4266-812c-d70754ed228c\",\"41e806f1-99ee-4c48-9ce8-379068350924\",\"7b6fdce7-2d25-4c7f-b8c1-004a375626cb\",\"4a725092-b458-4dc2-9ae9-f8f0e7d415dc\",\"178b2260-bd62-4372-ab30-7cf02b6a3108\",\"d9964125-396a-4343-8d4e-b16c0281ae58\",\"4df9862d-6ce3-486d-a4e1-8b246cb08f79\",\"db205d1d-a8b1-49e1-8d5a-4f5b5ae39169\",\"363499fe-248b-4624-ba5b-5f477bb924f4\",\"9eefe291-18db-46f1-b308-4d7851fa270d\",\"e4e0b3b0-1587-400f-95f9-1bb605a252c2\",\"139c34d4-91bf-42c9-8dc5-b6c37f9ac517\",\"8ab2ca47-1f5f-4936-8f37-c5780ff265d0\",\"511013e8-8a72-4ddf-a9b4-1a9bb3a5fa6a\",\"0a5044a6-a614-40e1-97e0-20af784237ea\",\"a3fcf642-fa77-4d3c-886e-527258f00e72\",\"4f6cdb57-2658-40b9-8adc-1b2ddf7dd7a2\",\"df39322a-6ecd-418b-828d-09fd796dc10a\",\"e1cb07f7-a3ac-4110-9d24-218d93bfa6f9\",\"91280670-dbb5-4fcd-8dc3-dc9d53d94805\",\"90b505b3-1abf-455b-af4d-f08d1135cf33\",\"850d8476-e5fc-4059-9aed-9aeee349c384\",\"ae2dd76f-0dd4-4484-b957-6700179f183f\",\"9fb58da5-7347-4dbf-a892-7c933e5d7776\",\"fc4ea3c9-1d30-4f18-b33b-7404e7da0123\",\"693ffe34-785e-44cd-8fb7-81da25f4d3bd\",\"3e272a96-8781-45f2-8378-6ffaa1596bcc\",\"f2124ee6-885b-4aa6-885d-793c8626b87c\",\"47ff8d6e-e419-464f-8940-dfa750f2115d\",\"18f0638d-ad9b-460a-bd8b-61f12d998d0c\",\"48021fc6-c9c8-4568-8c29-953aad4d1e0a\",\"df41dfd5-a3a6-4c35-a58e-9b6ac732236e\",\"1da3ace1-2326-4842-ba52-0e3a8dce989e\",\"68f6be96-60c4-40f5-a14e-2a04dcacc1a6\",\"5833e0eb-b53c-4156-b478-2eac8f04aec6\",\"34530d5b-398d-496e-88d0-07a6e3de107e\",\"4f698849-a196-4c80-be45-52d507ffb2d4\",\"43350253-f84c-4fb3-a988-cc63366cc570\",\"d466671a-79ad-4ca5-878f-599df8bcd17e\",\"5ea9ae04-3601-468a-ba84-cb7e82ae1e48\",\"31614129-0f24-4a4c-9731-53ceecc3017d\",\"990d87fa-2d5a-48cc-bdff-0d3c6b9dd32d\",\"5a2d898e-7f0b-43fd-8e0e-2b517b736499\",\"16fc4a98-74ad-4970-9857-74d0f39a6c64\",\"47380de2-eddf-42b2-b853-434cde2b5fa0\",\"947d47b4-7883-4bb9-9d85-c5e8e2f572ce\",\"8ca10d88-d6ce-458e-b707-a00f3b6183fd\",\"76fb3144-bc19-4baf-ab79-432d526559b7\",\"da07f543-88e8-4349-b9e1-2d135eb818c2\",\"360cdc41-af67-426b-9249-b46077592db4\",\"13973b32-e60a-4396-bf7a-85f0670d658d\",\"b50578f7-df0d-4152-892d-ad77b284e233\",\"0e584a02-5f47-4317-b102-9665aa08fc7d\",\"83db2801-3fb7-4fda-9c88-227effca791f\",\"ef378126-746c-42ef-87ea-83624095a7cc\",\"6e793a99-19b9-4ac5-8f6a-709fd4da0b49\",\"7bfee1d3-395f-414a-b76a-203385a535b8\",\"100919d5-c4a2-4894-a3d7-83a8534dee66\",\"00a794e2-f9ed-41f6-b2a3-444ec0b61131\",\"3dfa5f20-e79c-437f-add7-0a2ade4379aa\",\"359833f5-8592-40b6-8175-edc664e2196a\",\"fddd10df-2a17-496f-8f2c-40845adac181\",\"301ad868-469e-494a-948f-5212604443f0\",\"9afb6667-24a4-456b-8720-48d5b530a003\",\"05b724b7-9613-42c0-a5d1-45f2a0b40efd\",\"5bb8c800-7777-43d0-a2ad-e8fae03ed3b7\",\"b614deb1-8c61-4b74-9e54-f2c4ba8658af\",\"6fd29849-b584-40ea-82c1-c908b83efd3f\",\"921c46aa-ffa6-4d3b-9be2-b0affd7142d7\",\"62ba464b-5e1c-468d-9a1f-9ddcd1053d68\",\"5c0d4798-3eef-449f-9bfd-58d59fe6ff28\",\"c90dc44b-a834-4a18-b728-b0631c14afa9\",\"6a13868b-c532-4562-9131-5c866bddacf9\",\"c33d86ef-305d-408c-87a2-b014fbcf2e16\",\"7fe76de7-a6e6-491a-b482-449cec7c91fd\",\"673fd28e-faab-4725-9bf4-a59b317f8f93\",\"62f44dee-82b5-4a2f-896e-c2d132a4e415\",\"8643025a-c059-4a48-85d0-d76f51d63a74\",\"26fe00f8-9173-4872-9134-bb1d2e00343a\",\"af599e54-878e-494d-8a8f-b8f8d8896f1a\",\"c4c3550e-a965-4993-a50c-628fd38cd3e1\",\"ab699598-7d66-4003-a0aa-86a0f827bbbf\",\"6cedb63e-a5a2-4d1b-bf27-71f3688871ee\",\"f3b504bb-826e-46c7-a1b7-674a5a0ae43a\",\"9f9df1fb-cf10-42f4-b684-3913a492cc6d\",\"be3bb907-a9fa-4b85-a21b-3154efeb0196\",\"460397b3-c4d8-441c-9d4a-9374b15850d3\",\"7b8aa759-d584-418d-b7e7-99e07cb45bc0\",\"97f95e63-ac5d-4ad4-96ba-a5be9131f52b\",\"86fe5e45-3696-4c0e-b88a-cf350e31ee68\",\"bf0d72cc-0680-4042-bd37-2ff5d224c8d3\",\"566c16c0-5a70-4062-80eb-42c00c823556\",\"5bbcca67-469c-4af6-aa1f-f12014aa4747\",\"e88da25c-3aa8-47a6-86d7-c9b2230171d8\",\"4279e979-0fe8-4bba-8a79-e0012d33d2f7\",\"7d3f20f0-ba46-4205-8bfa-508d47dec375\",\"effdf562-0b65-48b3-bc44-bd406ceeb4c0\",\"0af6e6ec-18c4-4cd6-97de-655d15eda26d\",\"fc71d843-9b8c-4c31-a691-e34f2bf61a58\",\"5d264b2d-d8de-4dce-8e0f-57a40c037732\",\"facdd972-8587-42d9-94db-fea86c95f74b\",\"04a198f4-df84-4ecf-8114-648150edc5f6\",\"c707a0ae-7ee9-4d7a-9262-8cc87c7444ef\",\"0944cf9e-9f5a-4cc8-a6bb-982a82145e32\",\"0dea505e-f72c-4939-91fb-c5d318d31cbd\",\"16018ead-6f73-447d-a422-e5895ea2f1e8\",\"4110a755-2084-451d-a03f-2267f377e37a\",\"c44b3809-aa60-4e78-ad0c-fc02ae6b0fb9\",\"9f657a3d-7377-48a8-b6a3-b5a871d58953\",\"02c0fdb9-19a4-4156-9d06-b8aa940e792a\",\"fd78894d-5436-4f66-907a-9ef485a20d7f\",\"11199e7d-90dd-47b0-9da2-1fc58ed7e9b7\",\"51deb6a1-950b-4cd2-8c66-4a0b5a37291b\",\"5eed6188-c6d6-4966-9543-28b3c88ee4e1\",\"e51231c2-1e1d-4b36-9499-4761c759c21d\",\"599ba755-215c-4d72-a152-5e902c03e753\",\"9d21bfc7-b04f-4615-93d5-eb79e9e217e2\",\"1fa05968-fc4e-4728-bf0e-c48de37a2ae1\",\"73c521c0-1787-493e-845e-89b957b58b8b\",\"c570afbe-46af-4d76-b23b-6e16d8d57df4\",\"85d99e6d-f6d6-408f-a9f1-b7a97237d5c4\",\"227e9423-1792-43b0-82e6-ac94397ed789\",\"bc018f2c-f33c-4f25-bffb-34f3da74d2db\",\"cfd6dc82-faa9-4f51-8534-964917ca7666\",\"5ea8beca-77b8-44cb-8871-93620f04a6e7\",\"7cbc7e85-a998-4d7c-bc89-78fbd0df6e8c\",\"f35ee5d5-f4eb-42c4-a2bb-0f3c706afee7\",\"5f94ce71-7492-4d10-ae80-3482646ca6cd\",\"5299e6b7-b23b-46c8-8277-dc1147807117\",\"c0f60687-8f09-4186-801b-9dd11d82d2e1\",\"1400552c-6fe7-4bbd-a3ca-59ffea564316\",\"ef686670-a2cc-4aec-89bf-8a67c4033507\",\"ced133bc-30d4-48de-b239-78e9fe91c8c0\",\"ba9770c6-6fb6-480b-9fcd-ee2ca1d7b0d6\",\"3778be8b-3cde-493e-8ebc-a6c3f9be6129\",\"5ce1ccad-10d3-4d04-a455-4ab42ee64a61\",\"70d2b6ec-b846-43dc-b4f7-1a84ff24a176\",\"0302f714-23e2-4c23-bd45-d1c97c1c1000\",\"8c4b4f4e-6bf7-4da8-a51a-d341baf3ce44\",\"eba5c6e7-188e-488f-a40d-0f14e1edf190\",\"664a82c2-8810-4432-b9c4-bc5be3f7a0a6\",\"1ef94f5a-a930-4996-9ddb-1dca7c74d040\",\"12df5617-a0af-48ca-bf2c-4bcca863fd84\",\"c80801f3-5848-4f8f-9c7a-dc0052a3655d\",\"fb3429ab-83d0-4bed-95e9-1a8e9455252c\",\"e05dbbce-79c2-45a2-a7ef-f1058856feb3\",\"4bb527f3-5718-477f-93ae-96a00a4944fe\",\"cafc4bb9-6584-480c-b992-c6643801be41\",\"ba4c5917-5ba3-495b-857c-af2642a5b115\",\"e4b5cac5-c0f5-4618-aa98-3c01e18c5fde\",\"e6fd4e44-694e-4e30-b72a-7da4ef662a29\",\"6b82129a-13ef-4554-93a5-17cda6672746\",\"5f14ad42-7fae-4258-b7bf-ab24eb46988d\",\"548801a8-a653-452a-b883-db65b6d06fac\",\"0afea355-fcdc-47a0-a82c-f5436b883790\",\"184ca802-aa58-44e3-96a1-5905c23d9364\",\"50dc548d-0c1f-41c5-bf52-cb6957d9d052\",\"82be74c1-6520-4ab5-b10e-fc17162b8c86\",\"b69ac3e7-4dd7-45e8-ad79-2bf1d780f221\",\"d2da8762-d5bc-4197-94d0-8c298fc6e5ed\",\"c1b0ff3b-5ef1-4cf6-b723-64c216558172\",\"08ea33e0-01df-4486-88f0-e1f35de8ca0b\",\"cabab48d-da29-4857-88f0-789518f35342\",\"a3ea6660-0f26-4ca7-8772-09c454995588\",\"406307ea-f1c6-4592-b338-fdf958e300e6\",\"3b98cb2d-64df-4532-a36a-b835b0494744\",\"076cf91a-5eb9-4ee2-9bbf-647e8d818ddb\",\"3742010c-b092-4f45-9448-d0ba8d14c7b8\",\"148e2723-a8b5-4bac-ba2a-02ee22afe3dc\",\"c8cf041f-6c65-4e3a-b304-e0b7cfe5a7a8\",\"4aafbb38-45c3-4510-a4fb-79ddee4609e1\",\"9295f662-1576-4cd9-ae2c-e5b98e004013\",\"caa10cde-996e-4f8d-adfb-d7e3d8046726\",\"73992542-7eea-446a-a813-be9be977a1e9\",\"800d0ed9-5ab9-43c2-b9bf-65bb3d740822\",\"75cbd5cd-883c-4b21-a7f7-cd7f4862c796\",\"4f15c6a9-03c7-4290-a534-d8125d5cf9c0\",\"e1f7972d-096f-4309-8ff3-e95fc6e290be\",\"b88ac08b-1838-4987-8510-5d098e4e029b\",\"bbeb12ae-8826-49e2-b9c1-efb3c49c336e\",\"7c2068ba-d812-424b-bb7f-59445cac4081\",\"ce7feb1b-c0e1-4a8e-a841-3711b1bee26d\",\"07fd3b0d-1350-46c2-91be-bf586c46e878\",\"e76d4f0e-1cbc-4afb-85f9-eea31e83f8e0\",\"3985e331-9778-4909-aa73-79e23575ccc5\",\"7cf78357-6f6e-49bc-9d7c-2a53a51a7de2\",\"45fae77e-3723-4cd9-a1c4-bb7f1dae5943\"]}},\"description\":\"All C+AI Subscriptions must have pre-defined C+AI NSG rules. See https://aka.ms/netiso/nsgs for more details\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:32:33.7856438Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-06-09T16:37:17.0959962Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"6fe923a8-2e4d-4c1f-b7d6-a7c5984f0129\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/NRMS-SBNT-DINE-NSG-v012\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"NRMS-SBNT-DINE-NSG-v012\",\"location\":\"southindia\"},{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"azuresecuritypackautoupdate_3.2\",\"policyDefinitionId\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policySetDefinitions/9c46cf6e83dedb18\",\"scope\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792\",\"parameters\":{\"AllowedLocations1\":{\"value\":[\"centraluseuap\",\"eastus2euap\",\"westcentralus\",\"northcentralus\",\"westus\",\"eastasia\",\"australiacentral\",\"australiaeast\",\"canadacentral\",\"northeurope\",\"centralindia\",\"japaneast\",\"koreacentral\",\"uksouth\",\"centralus\",\"eastus\",\"westus2\",\"francecentral\",\"southafricanorth\",\"germanynorth\",\"norwayeast\",\"switzerlandnorth\",\"uaenorth\",\"southeastasia\",\"australiacentral2\",\"australiasoutheast\",\"canadaeast\",\"westeurope\",\"southindia\",\"japanwest\",\"koreasouth\",\"ukwest\",\"eastus2\",\"southcentralus\",\"brazilsouth\",\"westindia\",\"francesouth\",\"southafricawest\",\"germanywestcentral\",\"norwaywest\",\"uaecentral\",\"switzerlandwest\",\"brazilus\",\"indiasouth\",\"indiawest\",\"indiacentral\",\"uknorth\",\"uksouth2\",\"brazilsoutheast\",\"global\"]}},\"description\":\"Combinations of multiple policies to enable auto update of security pack and geneva agent\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-23T19:35:15.9907469Z\",\"updatedBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"updatedOn\":\"2020-07-01T19:36:03.1679769Z\"},\"enforcementMode\":\"Default\"},\"identity\":{\"principalId\":\"b7b8bd19-f827-425f-9be1-fd8a86b21904\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"type\":\"SystemAssigned\"},\"id\":\"/providers/Microsoft.Management/managementGroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyAssignments/SEC-AzSecPack-v032\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"SEC-AzSecPack-v032\",\"location\":\"australiacentral\"}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Authorization/policyAssignments/cb303b746c2b419?api-version=2019-09-01", + "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Authorization/policyAssignments/c5b61ad02b2c430?api-version=2019-09-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "dbb069b1-f5bd-464d-98a4-55e1556aa2f4", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:40 GMT", - "content-length" : "716", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7cc04559-f933-4171-a1e4-1599ddd8895d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092440Z:7cc04559-f933-4171-a1e4-1599ddd8895d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "koreasouth:0f101273-28c3-4089-b513-8e24710aaeb8", - "Body" : "{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy0dd04515\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:07.4739663Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Authorization/policyAssignments/cb303b746c2b419\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"cb303b746c2b419\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:06 GMT", + "x-ms-correlation-request-id" : "46885a31-c2d4-4adf-b0d6-6c0575236e17", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095907Z:46885a31-c2d4-4adf-b0d6-6c0575236e17", + "Vary" : "Accept-Encoding", + "Expires" : "-1", + "Content-Length" : "713", + "x-ms-request-id" : "southeastasia:0a0ffa58-075b-438b-a78e-68ea50249b32", + "Body" : "{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy058614a\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:58:37.3765411Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Authorization/policyAssignments/c5b61ad02b2c430\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"c5b61ad02b2c430\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Web/sites/39a1e9b362a44c5/providers/Microsoft.Authorization/policyAssignments/79624cf0a146493?api-version=2019-09-01", + "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Web/sites/be2d8493cf27460/providers/Microsoft.Authorization/policyAssignments/d41d8a323d784cb?api-version=2019-09-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "8406e1f1-97fb-4488-936d-43aca2a0c459", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:40 GMT", - "content-length" : "810", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cfc17305-6514-4902-91e3-8b8a301972a9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092441Z:cfc17305-6514-4902-91e3-8b8a301972a9", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "koreasouth:31760ab3-53eb-49a9-81aa-74eed55bb835", - "Body" : "{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment 2\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy0dd04515\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Web/sites/39a1e9b362a44c5\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:38.6231372Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg97e94245/providers/Microsoft.Web/sites/39a1e9b362a44c5/providers/Microsoft.Authorization/policyAssignments/79624cf0a146493\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"79624cf0a146493\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:07 GMT", + "x-ms-correlation-request-id" : "8393929a-a84e-4c7a-a814-c3912c23b771", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095907Z:8393929a-a84e-4c7a-a814-c3912c23b771", + "Vary" : "Accept-Encoding", + "Expires" : "-1", + "Content-Length" : "806", + "x-ms-request-id" : "southeastasia:d7c6d902-2a67-460b-bf5e-3a2d13aadd6c", + "Body" : "{\"sku\":{\"name\":\"A0\",\"tier\":\"Free\"},\"properties\":{\"displayName\":\"My Assignment 2\",\"policyDefinitionId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy058614a\",\"scope\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Web/sites/be2d8493cf27460\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:59:06.550309Z\",\"updatedBy\":null,\"updatedOn\":null},\"enforcementMode\":\"Default\"},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/javarg6786584/providers/Microsoft.Web/sites/be2d8493cf27460/providers/Microsoft.Authorization/policyAssignments/d41d8a323d784cb\",\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"d41d8a323d784cb\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy0dd04515?api-version=2019-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy058614a?api-version=2019-09-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "12dc31c9-ef28-4c15-b63d-96b7ca6fa585", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:41 GMT", - "content-length" : "573", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14996", - "vary" : "Accept-Encoding", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "120da97e-d1c7-4237-a590-682bc597a6bf", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092441Z:120da97e-d1c7-4237-a590-682bc597a6bf", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "koreasouth:1badc4cb-997c-4a14-8788-ebc6dcd226e9", - "Body" : "{\"properties\":{\"displayName\":\"mypolicy89612f\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:02.0814009Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy0dd04515\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy0dd04515\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:07 GMT", + "x-ms-correlation-request-id" : "f937bbf7-6cb5-46b9-8c44-2877764b6603", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095907Z:f937bbf7-6cb5-46b9-8c44-2877764b6603", + "Vary" : "Accept-Encoding", + "Expires" : "-1", + "Content-Length" : "571", + "x-ms-request-id" : "southeastasia:be13646c-db61-455f-aecd-683c8fe138bc", + "Body" : "{\"properties\":{\"displayName\":\"mypolicy266834\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:58:33.8786323Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy058614a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy058614a\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javarg97e94245?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/javarg6786584?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ba9e9eed-7c02-4e6d-8a22-9f75f0da7d4e", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:46 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14995", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8219abfd-74d8-458d-8730-2b1333194d87", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092446Z:8219abfd-74d8-458d-8730-2b1333194d87", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc5N0U5NDI0NS1VS1dFU1QiLCJqb2JMb2NhdGlvbiI6InVrd2VzdCJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "8219abfd-74d8-458d-8730-2b1333194d87", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:10 GMT", + "x-ms-correlation-request-id" : "c5b89526-ab18-4142-a1f2-996f18040469", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095910Z:c5b89526-ab18-4142-a1f2-996f18040469", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "c5b89526-ab18-4142-a1f2-996f18040469", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc2Nzg2NTg0LVVLV0VTVCIsImpvYkxvY2F0aW9uIjoidWt3ZXN0In0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc5N0U5NDI0NS1VS1dFU1QiLCJqb2JMb2NhdGlvbiI6InVrd2VzdCJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc2Nzg2NTg0LVVLV0VTVCIsImpvYkxvY2F0aW9uIjoidWt3ZXN0In0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f4638931-4027-45f6-94e6-afbdd69e5804" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:01 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11972", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "fd806836-7ec5-4d91-b364-736b77c56962", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092502Z:fd806836-7ec5-4d91-b364-736b77c56962", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc5N0U5NDI0NS1VS1dFU1QiLCJqb2JMb2NhdGlvbiI6InVrd2VzdCJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "fd806836-7ec5-4d91-b364-736b77c56962", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:26 GMT", + "x-ms-correlation-request-id" : "091ad78b-1fac-40b4-bc6c-403d9280b220", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095926Z:091ad78b-1fac-40b4-bc6c-403d9280b220", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "091ad78b-1fac-40b4-bc6c-403d9280b220", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc2Nzg2NTg0LVVLV0VTVCIsImpvYkxvY2F0aW9uIjoidWt3ZXN0In0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc5N0U5NDI0NS1VS1dFU1QiLCJqb2JMb2NhdGlvbiI6InVrd2VzdCJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc2Nzg2NTg0LVVLV0VTVCIsImpvYkxvY2F0aW9uIjoidWt3ZXN0In0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0a5b94e2-9141-4daa-b3ef-c9d40fe8b842" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:18 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11959", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "76036cd6-b227-43c5-951e-25adeb2dffd8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092518Z:76036cd6-b227-43c5-951e-25adeb2dffd8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc5N0U5NDI0NS1VS1dFU1QiLCJqb2JMb2NhdGlvbiI6InVrd2VzdCJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "76036cd6-b227-43c5-951e-25adeb2dffd8", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:41 GMT", + "x-ms-correlation-request-id" : "1a0b8e0b-4578-40b4-9ebd-7f2cad9a65f5", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095942Z:1a0b8e0b-4578-40b4-9ebd-7f2cad9a65f5", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "1a0b8e0b-4578-40b4-9ebd-7f2cad9a65f5", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc2Nzg2NTg0LVVLV0VTVCIsImpvYkxvY2F0aW9uIjoidWt3ZXN0In0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc5N0U5NDI0NS1VS1dFU1QiLCJqb2JMb2NhdGlvbiI6InVrd2VzdCJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc2Nzg2NTg0LVVLV0VTVCIsImpvYkxvY2F0aW9uIjoidWt3ZXN0In0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "df48186d-dfc3-466a-aaa2-181adc02604b" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:33 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11980", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2d1149e7-ec30-4e62-981c-f050bf66d4dd", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092534Z:2d1149e7-ec30-4e62-981c-f050bf66d4dd", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc5N0U5NDI0NS1VS1dFU1QiLCJqb2JMb2NhdGlvbiI6InVrd2VzdCJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "2d1149e7-ec30-4e62-981c-f050bf66d4dd", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:57 GMT", + "x-ms-correlation-request-id" : "0dc4f44a-59df-4f77-91ac-b701a3bb8142", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095958Z:0dc4f44a-59df-4f77-91ac-b701a3bb8142", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "0dc4f44a-59df-4f77-91ac-b701a3bb8142", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc2Nzg2NTg0LVVLV0VTVCIsImpvYkxvY2F0aW9uIjoidWt3ZXN0In0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc5N0U5NDI0NS1VS1dFU1QiLCJqb2JMb2NhdGlvbiI6InVrd2VzdCJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc2Nzg2NTg0LVVLV0VTVCIsImpvYkxvY2F0aW9uIjoidWt3ZXN0In0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "15ac4ab0-b445-4c1e-9952-740f36022b85" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:50 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "775a57cc-80cb-4f71-8866-b88d6239d123", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092551Z:775a57cc-80cb-4f71-8866-b88d6239d123", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc5N0U5NDI0NS1VS1dFU1QiLCJqb2JMb2NhdGlvbiI6InVrd2VzdCJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "775a57cc-80cb-4f71-8866-b88d6239d123", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:00:13 GMT", + "x-ms-correlation-request-id" : "7776822d-0c7b-4b2b-8e1c-b2a625c29785", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100014Z:7776822d-0c7b-4b2b-8e1c-b2a625c29785", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "7776822d-0c7b-4b2b-8e1c-b2a625c29785", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc2Nzg2NTg0LVVLV0VTVCIsImpvYkxvY2F0aW9uIjoidWt3ZXN0In0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc5N0U5NDI0NS1VS1dFU1QiLCJqb2JMb2NhdGlvbiI6InVrd2VzdCJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc2Nzg2NTg0LVVLV0VTVCIsImpvYkxvY2F0aW9uIjoidWt3ZXN0In0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d2cd3453-b416-4fbd-a00e-e2ba7f63b381" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:26:07 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4abd4078-55bc-41ff-9bc5-9513674ea71f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092607Z:4abd4078-55bc-41ff-9bc5-9513674ea71f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc5N0U5NDI0NS1VS1dFU1QiLCJqb2JMb2NhdGlvbiI6InVrd2VzdCJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4abd4078-55bc-41ff-9bc5-9513674ea71f", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:00:29 GMT", + "x-ms-correlation-request-id" : "9381861d-bdc3-4e1b-ab44-659e7a76b894", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100030Z:9381861d-bdc3-4e1b-ab44-659e7a76b894", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "9381861d-bdc3-4e1b-ab44-659e7a76b894", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc2Nzg2NTg0LVVLV0VTVCIsImpvYkxvY2F0aW9uIjoidWt3ZXN0In0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc5N0U5NDI0NS1VS1dFU1QiLCJqb2JMb2NhdGlvbiI6InVrd2VzdCJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1KQVZBUkc2Nzg2NTg0LVVLV0VTVCIsImpvYkxvY2F0aW9uIjoidWt3ZXN0In0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "fa1afe48-ae76-4b3a-ac32-e42f70cf29fd" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:26:22 GMT", - "content-length" : "0", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2e771e2d-ef4d-4e91-ac0e-7fefe75d67ea", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092623Z:2e771e2d-ef4d-4e91-ac0e-7fefe75d67ea", - "cache-control" : "no-cache", - "x-ms-request-id" : "2e771e2d-ef4d-4e91-ac0e-7fefe75d67ea", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:00:44 GMT", + "x-ms-correlation-request-id" : "05df0cef-3798-4627-b7e7-8436728741cc", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100045Z:05df0cef-3798-4627-b7e7-8436728741cc", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "05df0cef-3798-4627-b7e7-8436728741cc" + }, + "Exception" : null } ], - "variables" : [ "policy0dd04515", "mypolicy89612f", "javarg97e94245", "cb303b746c2b419", "79624cf0a146493", "39a1e9b362a44c5" ] + "variables" : [ "policy058614a", "mypolicy266834", "javarg6786584", "c5b61ad02b2c430", "d41d8a323d784cb", "be2d8493cf27460" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCRUDPolicyDefinition.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCRUDPolicyDefinition.json index b9600340b90b..cb60bc1ba3b5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCRUDPolicyDefinition.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCRUDPolicyDefinition.json @@ -1,103 +1,111 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy5e873449?api-version=2019-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy47866b2?api-version=2019-09-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5f1c0b79-2bc6-4c5e-8641-f5e2981be73f", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:02 GMT", - "content-length" : "573", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "491837db-edf9-410a-bf21-774941dbc2d1", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092402Z:491837db-edf9-410a-bf21-774941dbc2d1", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "koreasouth:06e0f61c-5043-4e56-8f71-ccf77ef17207", - "Body" : "{\"properties\":{\"displayName\":\"mypolicy30923f\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:02.1425381Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy5e873449\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy5e873449\"}" - } + "Date" : "Tue, 11 Aug 2020 09:58:34 GMT", + "x-ms-correlation-request-id" : "9acbc39c-b4b0-45f6-a33a-f157dd1fa176", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095834Z:9acbc39c-b4b0-45f6-a33a-f157dd1fa176", + "Expires" : "-1", + "Content-Length" : "571", + "x-ms-request-id" : "southeastasia:1c5c8c85-385d-4594-b02e-09ec0885fea3", + "Body" : "{\"properties\":{\"displayName\":\"mypolicy26269c\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:58:33.8118731Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy47866b2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy47866b2\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions?api-version=2019-09-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "9e434f95-be43-4500-8e13-f2d6a59fa7c5", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:03 GMT", - "content-length" : "2874371", - "expires" : "-1", - "vary" : "Accept-Encoding", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e3abc5e2-db19-4c26-84da-af7e21ba5643", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092403Z:e3abc5e2-db19-4c26-84da-af7e21ba5643", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "koreasouth:98ba824a-4eb8-49eb-a514-8ba527ae183b", - "Body" : "{\"value\":[{\"properties\":{\"displayName\":\"Microsoft Managed Control 1599 - Developer Configuration Management | Software / Firmware Integrity Verification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1599\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0004bbf0-5099-4179-869e-e9ffe5fb0945\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0004bbf0-5099-4179-869e-e9ffe5fb0945\"},{\"properties\":{\"displayName\":\"Audit virtual machines without disaster recovery configured\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit virtual machines which do not have disaster recovery configured. To learn more about disaster recovery, visit https://aka.ms/asr-doc.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.Resources/links\",\"existenceCondition\":{\"field\":\"name\",\"like\":\"ASR-Protect-*\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0015ea4d-51ff-4ce3-8d8c-f3f8f0179a56\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0015ea4d-51ff-4ce3-8d8c-f3f8f0179a56\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Sockets state for a Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"The Web Sockets protocol is vulnerable to different types of security threats. Use of Web Sockets within an Function app must be carefully reviewed.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"functionapp\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"DisableWebSockets\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/001802d1-4969-4c82-a700-c29c6c6f9bbd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"001802d1-4969-4c82-a700-c29c6c6f9bbd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1375 - Incident Response Assistance | Automation Support For Availability Of Information / Support\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1375\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/00379355-8932-4b52-b63a-3bc6daf3451a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"00379355-8932-4b52-b63a-3bc6daf3451a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1605 - Developer Security Testing And Evaluation | Static Code Analysis\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1605\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0062eb8b-dc75-4718-8ea5-9bb4a9606655\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0062eb8b-dc75-4718-8ea5-9bb4a9606655\"},{\"properties\":{\"displayName\":\"Azure Backup should be enabled for Virtual Machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy helps audit if Azure Backup service is enabled for all Virtual machines. Azure Backup is a cost-effective, one-click backup solution simplifies data recovery and is easier to enable than other cloud backup services.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Backup\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.RecoveryServices/backupprotecteditems\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/013e242c-8828-4970-87b3-ab247555486d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"013e242c-8828-4970-87b3-ab247555486d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1142 - Security Assessment And Authorization Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1142\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/01524fa8-4555-48ce-ba5f-c3b8dcef5147\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"01524fa8-4555-48ce-ba5f-c3b8dcef5147\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1099 - Security Training Records\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1099\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/01910bab-8639-4bd0-84ef-cc53b24d79ba\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"01910bab-8639-4bd0-84ef-cc53b24d79ba\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1285 - Telecommunications Services | Provider Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1285\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/01f7726b-db54-45c2-bcb5-9bd7a43796ee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"01f7726b-db54-45c2-bcb5-9bd7a43796ee\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1709 - Security Function Verification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1709\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/025992d6-7fee-4137-9bbf-2ffc39c0686c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"025992d6-7fee-4137-9bbf-2ffc39c0686c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1052 - Session Lock\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1052\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/027cae1c-ec3e-4492-9036-4168d540c42a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"027cae1c-ec3e-4492-9036-4168d540c42a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1034 - Least Privilege\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1034\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/02a5ed00-6d2e-4e97-9a98-46c32c057329\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"02a5ed00-6d2e-4e97-9a98-46c32c057329\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs on which the remote host connection status does not match the specified one\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines on which the remote host connection status does not match the specified one. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsRemoteConnection\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/02a84be7-c304-421f-9bb7-5d2c26af54ad\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"02a84be7-c304-421f-9bb7-5d2c26af54ad\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1623 - Boundary Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1623\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/02ce1b22-412a-4528-8630-c42146f917ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"02ce1b22-412a-4528-8630-c42146f917ed\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1515 - Personnel Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1515\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/02dd141a-a2b2-49a7-bcbd-ca31142f6211\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"02dd141a-a2b2-49a7-bcbd-ca31142f6211\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1327 - Authenticator Management | Password-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1327\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/03188d8f-1ae5-4fe1-974d-2d7d32ef937d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"03188d8f-1ae5-4fe1-974d-2d7d32ef937d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1229 - Information System Component Inventory | No Duplicate Accounting Of Components\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1229\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/03752212-103c-4ab8-a306-7e813022ca9d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"03752212-103c-4ab8-a306-7e813022ca9d\"},{\"properties\":{\"displayName\":\"Cognitive Services accounts should restrict network access\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Network access to Cognitive Services accounts should be restricted. Configure network rules so only applications from allowed networks can access the Cognitive Services account. To allow connections from specific internet or on-premises clients, access can be granted to traffic from specific Azure virtual networks or to public internet IP address ranges.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cognitive Services\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.CognitiveServices/accounts\"},{\"field\":\"Microsoft.CognitiveServices/accounts/networkAcls.defaultAction\",\"notEquals\":\"Deny\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/037eea7a-bd0a-46c5-9a66-03aea78705d3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"037eea7a-bd0a-46c5-9a66-03aea78705d3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1123 - Audit Review, Analysis, And Reporting | Audit Level Adjustment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1123\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/03996055-37a4-45a5-8b70-3f1caa45f87d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"03996055-37a4-45a5-8b70-3f1caa45f87d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1474 - Emergency Power | Long-Term Alternate Power Supply - Minimal Operational Capability\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1474\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/03ad326e-d7a1-44b1-9a76-e17492efc9e4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"03ad326e-d7a1-44b1-9a76-e17492efc9e4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1227 - Information System Component Inventory | Automated Unauthorized Component Detection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1227\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/03b78f5e-4877-4303-b0f4-eb6583f25768\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"03b78f5e-4877-4303-b0f4-eb6583f25768\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1361 - Incident Handling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1361\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/03ed3be1-7276-4452-9a5d-e4168565ac67\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"03ed3be1-7276-4452-9a5d-e4168565ac67\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1594 - Developer Configuration Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1594\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/042ba2a1-8bb8-45f4-b080-c78cf62b90e9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"042ba2a1-8bb8-45f4-b080-c78cf62b90e9\"},{\"properties\":{\"displayName\":\"Azure Cosmos DB allowed locations\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables you to restrict the locations your organization can specify when deploying Azure Cosmos DB resources. Use to enforce your geo-compliance requirements.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cosmos DB\"},\"parameters\":{\"listOfAllowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying Azure Cosmos DB resources.\",\"strongType\":\"location\"}},\"policyEffect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Policy Effect\",\"description\":\"The desired effect of the policy.\"},\"allowedValues\":[\"deny\",\"audit\",\"disabled\"],\"defaultValue\":\"deny\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DocumentDB/databaseAccounts\"},{\"count\":{\"field\":\"Microsoft.DocumentDB/databaseAccounts/Locations[*]\",\"where\":{\"value\":\"[replace(toLower(first(field('Microsoft.DocumentDB/databaseAccounts/Locations[*].locationName'))), ' ', '')]\",\"in\":\"[parameters('listOfAllowedLocations')]\"}},\"notEquals\":\"[length(field('Microsoft.DocumentDB/databaseAccounts/Locations[*]'))]\"}]},\"then\":{\"effect\":\"[parameters('policyEffect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0473574d-2d43-4217-aefe-941fcdf7e684\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0473574d-2d43-4217-aefe-941fcdf7e684\"},{\"properties\":{\"displayName\":\"SQL Managed Instance TDE protector should be encrypted with your own key\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Transparent Data Encryption (TDE) with your own key support provides increased transparency and control over the TDE Protector, increased security with an HSM-backed external service, and promotion of separation of duties.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/managedInstances/encryptionProtector\",\"name\":\"current\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Sql/managedInstances/encryptionProtector/serverKeyType\",\"equals\":\"AzureKeyVault\"},{\"field\":\"Microsoft.Sql/managedInstances/encryptionProtector/uri\",\"notEquals\":\"\"},{\"field\":\"Microsoft.Sql/managedInstances/encryptionProtector/uri\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/048248b0-55cd-46da-b1ff-39efd52db260\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"048248b0-55cd-46da-b1ff-39efd52db260\"},{\"properties\":{\"displayName\":\"[Preview]: Network traffic data collection agent should be installed on Linux virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Security Center uses the Microsoft Dependency agent to collect network traffic data from your Azure virtual machines to enable advanced network protection features such as traffic visualization on the network map, network hardening recommendations and specific network threats.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Monitoring\",\"preview\":\"true\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable Dependency Agent for Linux VMs monitoring\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"14.04.0-LTS\",\"14.04.1-LTS\",\"14.04.5-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"16.04-LTS\",\"16.04.0-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"18.04-LTS\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"12-SP2\",\"12-SP3\",\"12-SP4\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"DependencyAgentLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/04c4380f-3fae-46e8-96c9-30193528f602\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"04c4380f-3fae-46e8-96c9-30193528f602\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Service Bus to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Service Bus to stream to a regional Log Analytics workspace when any Service Bus which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ServiceBus/namespaces\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.ServiceBus/namespaces/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"OperationalLogs\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/04d53d87-841c-4f23-8a5b-21564380b55e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"04d53d87-841c-4f23-8a5b-21564380b55e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1572 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1572\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/04f5fb00-80bb-48a9-a75b-4cb4d4c97c36\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"04f5fb00-80bb-48a9-a75b-4cb4d4c97c36\"},{\"properties\":{\"displayName\":\"Deploy Log Analytics agent for Linux VMs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Log Analytics agent for Linux VMs if the VM Image (OS) is in the list defined and the agent is not installed.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"12*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"14.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"16.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"18.04*LTS\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7.*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"OmsAgentForLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"MMAExtension\",\"vmExtensionPublisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"vmExtensionType\":\"OmsAgentForLinux\",\"vmExtensionTypeHandlerVersion\":\"1.7\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2018-06-01\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\",\"stopOnMultipleConnections\":\"true\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/053d3325-282c-4e5c-b944-24faffd30d77\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"053d3325-282c-4e5c-b944-24faffd30d77\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1331 - Authenticator Management | Password-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1331\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/05460fe2-301f-4ed1-8174-d62c8bb92ff4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"05460fe2-301f-4ed1-8174-d62c8bb92ff4\"},{\"properties\":{\"displayName\":\"Web Application Firewall (WAF) should be enabled for Azure Front Door Service\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Requires Web Application Firewall (WAF) on any Azure Front Door Service. A Web Application Firewall provides greater security for your other Azure resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/frontdoors\"},{\"field\":\"Microsoft.Network/frontdoors/frontendEndpoints[*].webApplicationFirewallPolicyLink.id\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/055aa869-bc98-4af8-bafc-23f1ab6ffe2c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"055aa869-bc98-4af8-bafc-23f1ab6ffe2c\"},{\"properties\":{\"displayName\":\"Private endpoint should be enabled for PostgreSQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits PostgreSQL servers not configured to use a private endpoint. For more details, visit https://aka.ms/pgprivatelink.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/privateEndpointConnections\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/privateEndpointConnections/privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0564d078-92f5-4f97-8398-b9f58a51f70b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0564d078-92f5-4f97-8398-b9f58a51f70b\"},{\"properties\":{\"displayName\":\"Vulnerability Assessment settings for SQL server should contain an email address to receive scan reports\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Ensure that an email address is provided for the 'Send scan reports to' field in the Vulnerability Assessment settings. This email address receives scan result summary after a periodic scan runs on SQL servers.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/vulnerabilityAssessments\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/vulnerabilityAssessments/default.recurringScans.emails[*]\",\"notEquals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/057d6cfe-9c4f-4a6d-bc60-14420ea1f1a9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"057d6cfe-9c4f-4a6d-bc60-14420ea1f1a9\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Azure Data Lake Store should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Data Lake\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeStore/accounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/057ef27e-665e-4328-8ea3-04b3122bd9fb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"057ef27e-665e-4328-8ea3-04b3122bd9fb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1132 - Protection Of Audit Information | Audit Backup On Separate Physical Systems / Components\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1132\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/05938e10-cdbd-4a54-9b2b-1cbcfc141ad0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"05938e10-cdbd-4a54-9b2b-1cbcfc141ad0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1223 - Information System Component Inventory\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1223\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/05a1bb01-ad5a-49c1-aad3-b0c893b2ec3a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"05a1bb01-ad5a-49c1-aad3-b0c893b2ec3a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1640 - Transmission Confidentiality And Integrity\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1640\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/05a289ce-6a20-4b75-a0f3-dc8601b6acd0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"05a289ce-6a20-4b75-a0f3-dc8601b6acd0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1420 - Maintenance Personnel\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1420\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/05ae08cc-a282-413b-90c7-21a2c60b8404\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"05ae08cc-a282-413b-90c7-21a2c60b8404\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1658 - Secure Name / Address Resolution Service (Recursive Or Caching Resolver)\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1658\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/063b540e-4bdc-4e7a-a569-3a42ddf22098\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"063b540e-4bdc-4e7a-a569-3a42ddf22098\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1688 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1688\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/063c3f09-e0f0-4587-8fd5-f4276fae675f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"063c3f09-e0f0-4587-8fd5-f4276fae675f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1332 - Authenticator Management | Password-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1332\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/068260be-a5e6-4b0a-a430-cd27071c226a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"068260be-a5e6-4b0a-a430-cd27071c226a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1455 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1455\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/068a88d4-e520-434e-baf0-9005a8164e6a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"068a88d4-e520-434e-baf0-9005a8164e6a\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit SQL DB Level Audit Setting\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit DB level audit setting for SQL databases\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"setting\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Audit Setting\"},\"allowedValues\":[\"enabled\",\"disabled\"]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers/databases\"},{\"field\":\"name\",\"notEquals\":\"master\"}]},\"then\":{\"effect\":\"AuditIfNotExists\",\"details\":{\"type\":\"Microsoft.Sql/servers/databases/auditingSettings\",\"name\":\"default\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Sql/auditingSettings.state\",\"equals\":\"[parameters('setting')]\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/06a78e20-9358-41c9-923c-fb736d382a12\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"06a78e20-9358-41c9-923c-fb736d382a12\"},{\"properties\":{\"displayName\":\"Audit VMs that do not use managed disks\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits VMs that do not use managed disks\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/virtualMachines/osDisk.uri\",\"exists\":\"True\"}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/VirtualMachineScaleSets\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osDisk.vhdContainers\",\"exists\":\"True\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osdisk.imageUrl\",\"exists\":\"True\"}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/06a78e20-9358-41c9-923c-fb736d382a4d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"06a78e20-9358-41c9-923c-fb736d382a4d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1366 - Incident Handling | Information Correlation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1366\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/06c45c30-ae44-4f0f-82be-41331da911cc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"06c45c30-ae44-4f0f-82be-41331da911cc\"},{\"properties\":{\"displayName\":\"Public network access should be disabled for Cognitive Services accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Cognitive Services account in your environment with public network access enabled. Public network access should be disabled so that only connections from private endpoints are allowed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cognitive Services\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.CognitiveServices/accounts\"},{\"field\":\"Microsoft.CognitiveServices/accounts/publicNetworkAccess\",\"notEquals\":\"Disabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0725b4dd-7e76-479c-a735-68e7ee23d5ca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0725b4dd-7e76-479c-a735-68e7ee23d5ca\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1633 - Boundary Protection | Route Traffic To Authenticated Proxy Servers\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1633\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/07557aa0-e02f-4460-9a81-8ecd2fed601a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"07557aa0-e02f-4460-9a81-8ecd2fed601a\"},{\"properties\":{\"displayName\":\"CORS should not allow every resource to access your Function Apps\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Cross-Origin Resource Sharing (CORS) should not allow all domains to access your Function app. Allow only required domains to interact with your Function app.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.cors.allowedOrigins[*]\",\"notEquals\":\"*\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0820b7b9-23aa-4725-a1ce-ae4558f718e5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0820b7b9-23aa-4725-a1ce-ae4558f718e5\"},{\"properties\":{\"displayName\":\"Deploy Log Analytics agent for Windows VMs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Log Analytics agent for Windows VMs if the VM Image (OS) is in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example values: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"MicrosoftMonitoringAgent\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"MMAExtension\",\"vmExtensionPublisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"vmExtensionType\":\"MicrosoftMonitoringAgent\",\"vmExtensionTypeHandlerVersion\":\"1.0\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2018-06-01\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\",\"stopOnMultipleConnections\":\"true\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0868462e-646c-4fe3-9ced-a733534b6a2c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0868462e-646c-4fe3-9ced-a733534b6a2c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1583 - Information System Documentation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1583\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0882d488-8e80-4466-bc0f-0cd15b6cb66d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0882d488-8e80-4466-bc0f-0cd15b6cb66d\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Applications that are not using latest supported PHP Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported PHP version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestPHP\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/08b17839-76c6-4015-90e0-33d9d54d219c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"08b17839-76c6-4015-90e0-33d9d54d219c\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Search Services to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Search Services to stream to a regional Log Analytics workspace when any Search Services which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Search/searchServices\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Search/searchServices/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"OperationLogs\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/08ba64b8-738f-4918-9686-730d2ed79c7d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"08ba64b8-738f-4918-9686-730d2ed79c7d\"},{\"properties\":{\"displayName\":\"Adaptive Network Hardening recommendations should be applied on internet facing virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Azure Security Center analyzes the traffic patterns of Internet facing virtual machines and provides Network Security Group rule recommendations that reduce the potential attack surface\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"adaptiveNetworkHardenings\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/08e6af2d-db70-460a-bfe9-d5bd474ba9d6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"08e6af2d-db70-460a-bfe9-d5bd474ba9d6\"},{\"properties\":{\"displayName\":\"There should be more than one owner assigned to your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"It is recommended to designate more than one subscription owner in order to have administrator access redundancy.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"DesignateMoreThanOneOwner\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/09024ccc-0c5f-475e-9457-b7c0d9ed487b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"09024ccc-0c5f-475e-9457-b7c0d9ed487b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1159 - Security Authorization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1159\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0925f098-7877-450b-8ba4-d1e55f2d8795\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0925f098-7877-450b-8ba4-d1e55f2d8795\"},{\"properties\":{\"displayName\":\"Disk encryption should be applied on virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"VMs without an enabled disk encryption will be monitored by Azure Security Center as recommendations\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"encryption\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0961003e-5a0a-4549-abde-af6a37f2724d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0961003e-5a0a-4549-abde-af6a37f2724d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1302 - Identification And Authentication (Org. Users) | Network Access To Non-Privileged Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1302\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/09828c65-e323-422b-9774-9d5c646124da\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"09828c65-e323-422b-9774-9d5c646124da\"},{\"properties\":{\"displayName\":\"Configure backup on VMs of a location to an existing central Vault in the same location\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy configures Azure Backup protection on VMs in a given location to an existing central vault in the same location. It applies to only those VMs that are not already configured for backup. It is recommended that this policy is assigned to not more than 200 VMs. If the policy is assigned for more than 200 VMs, it can result in the backup getting triggered a few hours beyond the defined schedule. This policy will be enhanced to support more VM images.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Backup\"},\"parameters\":{\"vaultLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Location (Specify the location of the VMs that you want to protect)\",\"description\":\"Specify the location of the VMs that you want to protect. VMs should be backed up to a vault in the same location.\\nFor example - southeastasia\",\"strongType\":\"location\"}},\"backupPolicyId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Backup Policy (of type Azure VM from a vault in the location chosen above)\",\"description\":\"Specify the id of the Azure backup policy to configure backup of the virtual machines. The selected Azure backup policy should be of type Azure virtual machine. This policy needs to be in a vault that is present in the location chosen above.\\nFor example - /subscriptions//resourceGroups//providers/Microsoft.RecoveryServices/vaults//backupPolicies/\",\"strongType\":\"Microsoft.RecoveryServices/vaults/backupPolicies\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"deployIfNotExists\",\"auditIfNotExists\",\"disabled\"],\"defaultValue\":\"deployIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"location\",\"equals\":\"[parameters('vaultLocation')]\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"12*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"14.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"16.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"18.04*LTS\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7.*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\"/providers/microsoft.authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\"],\"type\":\"Microsoft.RecoveryServices/backupprotecteditems\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"backupPolicyId\":{\"type\":\"String\"},\"fabricName\":{\"type\":\"String\"},\"protectionContainers\":{\"type\":\"String\"},\"protectedItems\":{\"type\":\"String\"},\"sourceResourceId\":{\"type\":\"String\"}},\"resources\":[{\"apiVersion\":\"2017-05-10\",\"name\":\"[concat('DeployProtection-',uniqueString(parameters('protectedItems')))]\",\"type\":\"Microsoft.Resources/deployments\",\"resourceGroup\":\"[first(skip(split(parameters('backupPolicyId'), '/'), 4))]\",\"subscriptionId\":\"[first(skip(split(parameters('backupPolicyId'), '/'), 2))]\",\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"backupPolicyId\":{\"type\":\"String\"},\"fabricName\":{\"type\":\"String\"},\"protectionContainers\":{\"type\":\"String\"},\"protectedItems\":{\"type\":\"String\"},\"sourceResourceId\":{\"type\":\"String\"}},\"resources\":[{\"type\":\"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\"name\":\"[concat(first(skip(split(parameters('backupPolicyId'), '/'), 8)), '/', parameters('fabricName'), '/',parameters('protectionContainers'), '/', parameters('protectedItems'))]\",\"apiVersion\":\"2016-06-01\",\"properties\":{\"protectedItemType\":\"Microsoft.Compute/virtualMachines\",\"policyId\":\"[parameters('backupPolicyId')]\",\"sourceResourceId\":\"[parameters('sourceResourceId')]\"}}]},\"parameters\":{\"backupPolicyId\":{\"value\":\"[parameters('backupPolicyId')]\"},\"fabricName\":{\"value\":\"[parameters('fabricName')]\"},\"protectionContainers\":{\"value\":\"[parameters('protectionContainers')]\"},\"protectedItems\":{\"value\":\"[parameters('protectedItems')]\"},\"sourceResourceId\":{\"value\":\"[parameters('sourceResourceId')]\"}}}}]},\"parameters\":{\"backupPolicyId\":{\"value\":\"[parameters('backupPolicyId')]\"},\"fabricName\":{\"value\":\"Azure\"},\"protectionContainers\":{\"value\":\"[concat('iaasvmcontainer;iaasvmcontainerv2;', resourceGroup().name, ';' ,field('name'))]\"},\"protectedItems\":{\"value\":\"[concat('vm;iaasvmcontainerv2;', resourceGroup().name, ';' ,field('name'))]\"},\"sourceResourceId\":{\"value\":\"[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', resourceGroup().name, '/providers/Microsoft.Compute/virtualMachines/',field('name'))]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/09ce66bc-1220-4153-8104-e3f51c936913\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"09ce66bc-1220-4153-8104-e3f51c936913\"},{\"properties\":{\"displayName\":\"Private endpoint should be enabled for MariaDB servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MariaDB servers not configured to use a private endpoint. For more details, visit https://aka.ms/mariadbprivatelink.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforMariaDB/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforMariaDB/servers/privateEndpointConnections\",\"existenceCondition\":{\"field\":\"Microsoft.DBforMariaDB/servers/privateEndpointConnections/privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a1302fb-a631-4106-9753-f3d494733990\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a1302fb-a631-4106-9753-f3d494733990\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes Management Policy add-on should be installed and enabled on your clusters\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Azure Kubernetes Management Policy add-on extends Gatekeeper v3, an admission controller webhook for Open Policy Agent (OPA), to apply at-scale enforcements and safeguards on your clusters in a centralized, consistent manner.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"anyOf\":[{\"field\":\"Microsoft.ContainerService/managedClusters/addonProfiles.azurePolicy.enabled\",\"exists\":\"false\"},{\"field\":\"Microsoft.ContainerService/managedClusters/addonProfiles.azurePolicy.enabled\",\"equals\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a15ec92-a229-4763-bb14-0ea34a568f8d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a15ec92-a229-4763-bb14-0ea34a568f8d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1654 - Voice Over Internet Protocol\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1654\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a2ee16e-ab1f-414a-800b-d1608835862b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a2ee16e-ab1f-414a-800b-d1608835862b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1402 - Controlled Maintenance | Automated Maintenance Activities\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1402\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a560d32-8075-4fec-9615-9f7c853f4ea9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a560d32-8075-4fec-9615-9f7c853f4ea9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1428 - Media Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1428\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a77fcc7-b8d8-451a-ab52-56197913c0c7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a77fcc7-b8d8-451a-ab52-56197913c0c7\"},{\"properties\":{\"displayName\":\"Audit resource location matches resource group location\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit that the resource location matches its resource group location\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"General\"},\"policyRule\":{\"if\":{\"field\":\"location\",\"notIn\":[\"[resourcegroup().location]\",\"global\"]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a914e76-4921-4c19-b460-a2d36003525a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a914e76-4921-4c19-b460-a2d36003525a\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Account Management'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Account Management'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesAccountManagement\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesAccountManagement\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a9991e6-21be-49f9-8916-a06d934bcf29\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a9991e6-21be-49f9-8916-a06d934bcf29\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1044 - Unsuccessful Logon Attempts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1044\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0abbac52-57cf-450d-8408-1208d0dd9e90\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0abbac52-57cf-450d-8408-1208d0dd9e90\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1253 - Contingency Plan | Resume Essential Missions / Business Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1253\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0afce0b3-dd9f-42bb-af28-1e4284ba8311\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0afce0b3-dd9f-42bb-af28-1e4284ba8311\"},{\"properties\":{\"displayName\":\"Email notification to subscription owner for high severity alerts should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable emailing security alerts to the subscription owner, in order to have them receive security alert emails from Microsoft. This ensures that they are aware of any potential security issues and can mitigate the risk in a timely fashion\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/securityContacts\",\"existenceCondition\":{\"field\":\"Microsoft.Security/securityContacts/alertsToAdmins\",\"notEquals\":\"Off\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0b15565f-aa9e-48ba-8619-45960f2c314d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0b15565f-aa9e-48ba-8619-45960f2c314d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1046 - Automatic Account Lock | Purge / Wipe Mobile Device\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1046\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0b1aa965-7502-41f9-92be-3e2fe7cc392a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0b1aa965-7502-41f9-92be-3e2fe7cc392a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1020 - Account Management | Role-Based Schemes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1020\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0b291ee8-3140-4cad-beb7-568c077c78ce\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0b291ee8-3140-4cad-beb7-568c077c78ce\"},{\"properties\":{\"displayName\":\"Key Vault objects should be recoverable\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits if key vault objects are not recoverable. Soft Delete feature helps to effectively hold the resources for a given retention period (90 days) even after a DELETE operation, while giving the appearance that the object is deleted. When 'Purge protection' is on, a vault or an object in deleted state cannot be purged until the retention period of 90 days has passed. These vaults and objects can still be recovered, assuring customers that the retention policy will be followed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Key Vault\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.KeyVault/vaults\"},{\"anyOf\":[{\"field\":\"Microsoft.KeyVault/vaults/enableSoftDelete\",\"exists\":\"false\"},{\"field\":\"Microsoft.KeyVault/vaults/enablePurgeProtection\",\"exists\":\"false\"},{\"field\":\"Microsoft.KeyVault/vaults/enableSoftDelete\",\"equals\":\"false\"},{\"field\":\"Microsoft.KeyVault/vaults/enablePurgeProtection\",\"equals\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0b60c0b2-2dc2-4e1c-b5c9-abbed971de53\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0b60c0b2-2dc2-4e1c-b5c9-abbed971de53\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1115 - Audit Review, Analysis, And Reporting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1115\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0b653845-2ad9-4e09-a4f3-5a7c1d78353d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0b653845-2ad9-4e09-a4f3-5a7c1d78353d\"},{\"properties\":{\"displayName\":\"Azure Cosmos DB throughput should be limited\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy enables you to restrict the maximum throughput your organization can specify when creating Azure Cosmos DB databases and containers through the resource provider. It blocks the creation of autoscale resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cosmos DB\"},\"parameters\":{\"throughputMax\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"Max RUs\",\"description\":\"The maximum throughput (RU/s) that can be assigned to a container via the Resource Provider during create or update.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Policy Effect\",\"description\":\"The desired effect of the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"anyOf\":[{\"field\":\"type\",\"like\":\"Microsoft.DocumentDB/databaseAccounts/*/throughputSettings\"},{\"field\":\"type\",\"in\":[\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\"Microsoft.DocumentDB/databaseAccounts/tables\"]}]},{\"anyOf\":[{\"value\":\"[requestContext().apiVersion]\",\"less\":\"2019-08-01\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/sqlDatabases/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/sqlDatabases/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/tables/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/tables/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/tables/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0b7ef78e-a035-4f23-b9bd-aff122a1b1cf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0b7ef78e-a035-4f23-b9bd-aff122a1b1cf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1239 - User-Installed Software\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1239\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0be51298-f643-4556-88af-d7db90794879\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0be51298-f643-4556-88af-d7db90794879\"},{\"properties\":{\"displayName\":\"Ensure API app has 'Client Certificates (Incoming client certificates)' set to 'On'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Client certificates allow for the app to request a certificate for incoming requests. Only clients that have a valid certificate will be able to reach the app.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"},{\"field\":\"Microsoft.Web/sites/clientCertEnabled\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0c192fe8-9cbb-4516-85b3-0ade8bd03886\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0c192fe8-9cbb-4516-85b3-0ade8bd03886\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1496 - System Security Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1496\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0ca96127-2f87-46ab-a4fc-0d2a786df1c8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0ca96127-2f87-46ab-a4fc-0d2a786df1c8\"},{\"properties\":{\"displayName\":\"SQL server TDE protector should be encrypted with your own key\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Transparent Data Encryption (TDE) with your own key support provides increased transparency and control over the TDE Protector, increased security with an HSM-backed external service, and promotion of separation of duties.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/encryptionProtector\",\"name\":\"current\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Sql/servers/encryptionProtector/serverKeyType\",\"equals\":\"AzureKeyVault\"},{\"field\":\"Microsoft.Sql/servers/encryptionProtector/uri\",\"notEquals\":\"\"},{\"field\":\"Microsoft.Sql/servers/encryptionProtector/uri\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0d134df8-db83-46fb-ad72-fe0c9428c8dd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0d134df8-db83-46fb-ad72-fe0c9428c8dd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1518 - Personnel Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1518\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0d58f734-c052-40e9-8b2f-a1c2bff0b815\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0d58f734-c052-40e9-8b2f-a1c2bff0b815\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1713 - Software, Firmware, And Information Integrity | Integrity Checks\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1713\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0d87c70b-5012-48e9-994b-e70dd4b8def0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0d87c70b-5012-48e9-994b-e70dd4b8def0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1466 - Visitor Access Records\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1466\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0d943a9c-a6f1-401f-a792-740cdb09c451\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0d943a9c-a6f1-401f-a792-740cdb09c451\"},{\"properties\":{\"displayName\":\"[Deprecated]: Show audit results from Windows VMs on which Windows Defender Exploit Guard is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines on which Windows Defender Exploit Guard is not enabled. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Guest Configuration\",\"deprecated\":true},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDefenderExploitGuard\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0d9b45ff-9ddd-43fc-bf59-fbd1c8423053\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0d9b45ff-9ddd-43fc-bf59-fbd1c8423053\"},{\"properties\":{\"displayName\":\"Managed identity should be used in your Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use a managed identity for enhanced authentication security\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/managedServiceIdentityId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0da106f2-4ca3-48e8-bc85-c638fe6aea8f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0da106f2-4ca3-48e8-bc85-c638fe6aea8f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1718 - Software, Firmware, And Information Integrity | Binary Or Machine Executable Code\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1718\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0dced7ab-9ce5-4137-93aa-14c13e06ab17\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0dced7ab-9ce5-4137-93aa-14c13e06ab17\"},{\"properties\":{\"displayName\":\"[Preview]: Authorized IP ranges should be defined on Kubernetes Services\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Restrict access to the Kubernetes Service Management API by granting API access only to IP addresses in specific ranges. It is recommended to limit access to authorized IP ranges to ensure that only applications from allowed networks can access the cluster.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Security Center\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"Microsoft.ContainerService/managedClusters/apiServerAccessProfile.authorizedIPRanges\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0e246bcf-5f6f-4f87-bc6f-775d4712c7ea\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0e246bcf-5f6f-4f87-bc6f-775d4712c7ea\"},{\"properties\":{\"displayName\":\"Remote debugging should be turned off for Function Apps\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Remote debugging requires inbound ports to be opened on function apps. Remote debugging should be turned off.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.remoteDebuggingEnabled\",\"equals\":\"false\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0e60b895-3786-45da-8377-9c6b4b6ac5f9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0e60b895-3786-45da-8377-9c6b4b6ac5f9\"},{\"properties\":{\"displayName\":\"Advanced threat protection should be enabled on Azure Key Vault vaults\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced threat protection provides an additional layer of protection of security intelligence by detecting unusual and potentially harmful attempts to access or exploit key vault accounts.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"KeyVaults\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0e6763cc-5078-4e64-889d-ff4d9a839047\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0e6763cc-5078-4e64-889d-ff4d9a839047\"},{\"properties\":{\"displayName\":\"Geo-redundant backup should be enabled for Azure Database for MariaDB\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Azure Database for MariaDB with geo-redundant backup not enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforMariaDB/servers\"},{\"field\":\"Microsoft.DBforMariaDB/servers/storageProfile.geoRedundantBackup\",\"notEquals\":\"Enabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0ec47710-77ff-4a3d-9181-6aa50af424d0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0ec47710-77ff-4a3d-9181-6aa50af424d0\"},{\"properties\":{\"displayName\":\"[Deprecated]: Deploy prerequisites to enable Guest Configuration Policy on Windows VMs.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a system-assigned managed identity and deploys the VM extension for Guest Configuration on Windows VMs. This is a prerequisite for Guest Configuration Policy and must be assigned to the scope before using any Guest Configuration policy. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.2.0-deprecated\",\"deprecated\":true,\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"AzurePolicyforWindows\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.GuestConfiguration\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"ConfigurationforWindows\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0ecd903d-91e7-4726-83d3-a229d7f2e293\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0ecd903d-91e7-4726-83d3-a229d7f2e293\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1601 - Developer Security Testing And Evaluation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1601\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0ee79a0c-addf-4ce9-9b3c-d9576ed5e20e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0ee79a0c-addf-4ce9-9b3c-d9576ed5e20e\"},{\"properties\":{\"displayName\":\"[Preview]: Audit Azure Spring Cloud instances where distributed tracing is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Distributed tracing tools in Azure Spring Cloud allow debugging and monitoring the complex interconnections between microservices in an application. Distributed tracing tools should be enabled and in a healthy state.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"App Platform\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.AppPlatform/Spring\"},{\"anyOf\":[{\"field\":\"Microsoft.AppPlatform/Spring/trace.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.AppPlatform/Spring/trace.state\",\"notEquals\":\"Succeeded\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0f2d8593-4667-4932-acca-6a9f187af109\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0f2d8593-4667-4932-acca-6a9f187af109\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1476 - Fire Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1476\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0f3c4ac2-3e35-4906-a80b-473b12a622d7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0f3c4ac2-3e35-4906-a80b-473b12a622d7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1204 - Access Restrictions For Change | Review System Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1204\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0f4f6750-d1ab-4a4c-8dfd-af3237682665\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0f4f6750-d1ab-4a4c-8dfd-af3237682665\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1430 - Media Marking\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1430\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0f559588-5e53-4b14-a7c4-85d28ebc2234\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0f559588-5e53-4b14-a7c4-85d28ebc2234\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1574 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1574\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0f935dab-83d6-47b8-85ef-68b8584161b9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0f935dab-83d6-47b8-85ef-68b8584161b9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1164 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1164\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0fb8d3ce-9e96-481c-9c68-88d4e3019310\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0fb8d3ce-9e96-481c-9c68-88d4e3019310\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1017 - Account Management | Inactivity Logout\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1017\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0fc3db37-e59a-48c1-84e9-1780cedb409e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0fc3db37-e59a-48c1-84e9-1780cedb409e\"},{\"properties\":{\"displayName\":\"CORS should not allow every domain to access your API for FHIR\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Cross-Origin Resource Sharing (CORS) should not allow all domains to access your API for FHIR. To protect your API for FHIR, remove access for all domains and explicitly define the domains allowed to connect.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"API for FHIR\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"audit\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HealthcareApis/services\"},{\"not\":{\"field\":\"Microsoft.HealthcareApis/services/corsConfiguration.origins[*]\",\"notEquals\":\"*\"}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0fea8f8a-4169-495d-8307-30ec335f387d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0fea8f8a-4169-495d-8307-30ec335f387d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1087 - Security Awareness And Training Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1087\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/100c82ba-42e9-4d44-a2ba-94b209248583\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"100c82ba-42e9-4d44-a2ba-94b209248583\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not contain the specified certificates in Trusted Root\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows VMs that do not contain the specified certificates in the Trusted Root Certification Authorities certificate store (Cert:\\\\LocalMachine\\\\Root). It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"CertificateThumbprints\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Certificate thumbprints\",\"description\":\"A semicolon-separated list of certificate thumbprints that should exist under the Trusted Root certificate store (Cert:\\\\LocalMachine\\\\Root). e.g. THUMBPRINT1;THUMBPRINT2;THUMBPRINT3\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsCertificateInTrustedRoot\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[CertificateStore]CertificateStore1;CertificateThumbprintsToInclude', '=', parameters('CertificateThumbprints')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsCertificateInTrustedRoot\"},\"CertificateThumbprints\":{\"value\":\"[parameters('CertificateThumbprints')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"CertificateThumbprints\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[CertificateStore]CertificateStore1;CertificateThumbprintsToInclude\",\"value\":\"[parameters('CertificateThumbprints')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[CertificateStore]CertificateStore1;CertificateThumbprintsToInclude\",\"value\":\"[parameters('CertificateThumbprints')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/106ccbe4-a791-4f33-a44a-06796944b8d5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"106ccbe4-a791-4f33-a44a-06796944b8d5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1554 - Vulnerability Scanning | Discoverable Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1554\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/10984b4e-c93e-48d7-bf20-9c03b04e9eca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"10984b4e-c93e-48d7-bf20-9c03b04e9eca\"},{\"properties\":{\"displayName\":\"Ensure that '.NET Framework' version is the latest, if used as a part of the Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for .NET Framework software either due to security flaws or to include additional functionality. Using the latest .NET framework version for web apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.netFrameworkVersion\",\"in\":[\"v3.0\",\"v4.0\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/10c1859c-e1a7-4df3-ab97-a487fa8059f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"10c1859c-e1a7-4df3-ab97-a487fa8059f6\"},{\"properties\":{\"displayName\":\"Custom subscription owner roles should not exist\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy ensures that no custom subscription owner roles exist.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"General\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Authorization/roleDefinitions\"},{\"field\":\"Microsoft.Authorization/roleDefinitions/type\",\"equals\":\"CustomRole\"},{\"anyOf\":[{\"not\":{\"field\":\"Microsoft.Authorization/roleDefinitions/permissions[*].actions[*]\",\"notEquals\":\"*\"}},{\"not\":{\"field\":\"Microsoft.Authorization/roleDefinitions/permissions.actions[*]\",\"notEquals\":\"*\"}}]},{\"anyOf\":[{\"not\":{\"field\":\"Microsoft.Authorization/roleDefinitions/assignableScopes[*]\",\"notIn\":[\"[concat(subscription().id,'/')]\",\"[subscription().id]\",\"/\"]}},{\"not\":{\"field\":\"Microsoft.Authorization/roleDefinitions/assignableScopes[*]\",\"notLike\":\"/providers/Microsoft.Management/*\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/10ee2ea2-fb4d-45b8-a7e9-a2e770044cd9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"10ee2ea2-fb4d-45b8-a7e9-a2e770044cd9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1230 - Configuration Management Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1230\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/11158848-f679-4e9b-aa7b-9fb07d945071\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"11158848-f679-4e9b-aa7b-9fb07d945071\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1432 - Media Storage\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1432\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1140e542-b80d-4048-af45-3f7245be274b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1140e542-b80d-4048-af45-3f7245be274b\"},{\"properties\":{\"displayName\":\"Cognitive Services accounts should use customer owned storage or enable data encryption.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Cognitive Services account not using customer owned storage nor data encryption. For each Cognitive Services account with storage, use either customer owned storage or enable data encryption.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cognitive Services\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.CognitiveServices/accounts\"},{\"count\":{\"field\":\"Microsoft.CognitiveServices/accounts/userOwnedStorage[*]\"},\"less\":1},{\"field\":\"Microsoft.CognitiveServices/accounts/encryption.keySource\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/11566b39-f7f7-4b82-ab06-68d8700eb0a4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"11566b39-f7f7-4b82-ab06-68d8700eb0a4\"},{\"properties\":{\"displayName\":\"Audit Dependency agent deployment - VM Image (OS) unlisted\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Reports VMs as non-compliant if the VM Image (OS) is not in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude_windows\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]},\"listOfImageIdToInclude_linux\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"not\":{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_windows')]\"},{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_linux')]\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"12-SP2\",\"12-SP3\",\"12-SP4\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"14.04.0-LTS\",\"14.04.1-LTS\",\"14.04.5-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"16.04-LTS\",\"16.04.0-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"18.04-LTS\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Centos\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/11ac78e3-31bc-4f0c-8434-37ab963cea07\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"11ac78e3-31bc-4f0c-8434-37ab963cea07\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1655 - Voice Over Internet Protocol\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1655\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/121eab72-390e-4629-a7e2-6d6184f57c6b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"121eab72-390e-4629-a7e2-6d6184f57c6b\"},{\"properties\":{\"displayName\":\"Allowlist rules in your adaptive application control policy should be updated\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Monitor for changes in behavior on groups of machines configured for auditing by Azure Security Center's adaptive application controls. Security Center uses machine learning to analyze the running processes on your machines and suggest a list of known-safe applications. These are presented as recommended apps to allow in adaptive application control policies.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"applicationWhitelistingUpdate\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/123a3936-f020-408a-ba0c-47873faf1534\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"123a3936-f020-408a-ba0c-47873faf1534\"},{\"properties\":{\"displayName\":\"Web Application Firewall (WAF) should use the specified mode for Application Gateway\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Mandates the use of 'Detection' or 'Prevention' mode to be active on all Web Application Firewall policies for Application Gateway.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"modeRequirement\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Mode Requirement\",\"description\":\"Mode required for all WAF policies\"},\"allowedValues\":[\"Prevention\",\"Detection\"],\"defaultValue\":\"Detection\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies\"},{\"field\":\"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/policySettings.mode\",\"notEquals\":\"[parameters('modeRequirement')]\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/12430be1-6cc8-4527-a9a8-e3d38f250096\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"12430be1-6cc8-4527-a9a8-e3d38f250096\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1681 - Malicious Code Protection | Automatic Updates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1681\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/12623e7e-4736-4b2e-b776-c1600f35f93a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"12623e7e-4736-4b2e-b776-c1600f35f93a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1240 - User-Installed Software\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1240\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/129eb39f-d79a-4503-84cd-92f036b5e429\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"129eb39f-d79a-4503-84cd-92f036b5e429\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - System objects'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - System objects'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsSystemobjects\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsSystemobjects\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/12ae2d24-3805-4b37-9fa9-465968bfbcfa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"12ae2d24-3805-4b37-9fa9-465968bfbcfa\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1666 - System And Information Integrity Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1666\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/12e30ee3-61e6-4509-8302-a871e8ebb91e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"12e30ee3-61e6-4509-8302-a871e8ebb91e\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not have the specified applications installed. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"installedApplication\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Application names (supports wildcards)\",\"description\":\"A semicolon-separated list of the names of the applications that should be installed. e.g. 'Microsoft SQL Server 2014 (64-bit); Microsoft Visual Studio Code' or 'Microsoft SQL Server 2014*' (to match any application starting with 'Microsoft SQL Server 2014')\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WhitelistedApplication\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[InstalledApplication]bwhitelistedapp;Name', '=', parameters('installedApplication')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WhitelistedApplication\"},\"installedApplication\":{\"value\":\"[parameters('installedApplication')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"installedApplication\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[InstalledApplication]bwhitelistedapp;Name\",\"value\":\"[parameters('installedApplication')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[InstalledApplication]bwhitelistedapp;Name\",\"value\":\"[parameters('installedApplication')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/12f7e5d0-42a7-4630-80d8-54fb7cff9bd6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"12f7e5d0-42a7-4630-80d8-54fb7cff9bd6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1347 - Identification And Authentication (Non-Org. Users) | Acceptance Of PIV Creds. From Other Agys.\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1347\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/131a2706-61e9-4916-a164-00e052056462\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"131a2706-61e9-4916-a164-00e052056462\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1450 - Physical Access Authorizations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1450\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/134d7a13-ba3e-41e2-b236-91bfcfa24e01\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"134d7a13-ba3e-41e2-b236-91bfcfa24e01\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1184 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1184\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/13579d0e-0ab0-4b26-b0fb-d586f6d7ed20\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"13579d0e-0ab0-4b26-b0fb-d586f6d7ed20\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1085 - Publicly Accessible Content\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1085\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/13d117e0-38b0-4bbb-aaab-563be5dd10ba\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"13d117e0-38b0-4bbb-aaab-563be5dd10ba\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1404 - Maintenance Tools\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1404\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/13d8f903-0cd6-449f-a172-50f6579c182b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"13d8f903-0cd6-449f-a172-50f6579c182b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1695 - Information System Monitoring | Wireless Intrusion Detection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1695\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/13fcf812-ec82-4eda-9b89-498de9efd620\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"13fcf812-ec82-4eda-9b89-498de9efd620\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs in which the Administrators group contains any of the specified members\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines in which the Administrators group contains any of the specified members. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"MembersToExclude\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Members to exclude\",\"description\":\"A semicolon-separated list of members that should be excluded in the Administrators local group. Ex: Administrator; myUser1; myUser2\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AdministratorsGroupMembersToExclude\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[LocalGroup]AdministratorsGroup;MembersToExclude', '=', parameters('MembersToExclude')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AdministratorsGroupMembersToExclude\"},\"MembersToExclude\":{\"value\":\"[parameters('MembersToExclude')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"MembersToExclude\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LocalGroup]AdministratorsGroup;MembersToExclude\",\"value\":\"[parameters('MembersToExclude')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LocalGroup]AdministratorsGroup;MembersToExclude\",\"value\":\"[parameters('MembersToExclude')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/144f1397-32f9-4598-8c88-118decc3ccba\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"144f1397-32f9-4598-8c88-118decc3ccba\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1157 - Plan Of Action And Milestones\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1157\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/15495367-cf68-464c-bbc3-f53ca5227b7a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"15495367-cf68-464c-bbc3-f53ca5227b7a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1491 - Security Planning Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1491\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1571dd40-dafc-4ef4-8f55-16eba27efc7b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1571dd40-dafc-4ef4-8f55-16eba27efc7b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1564 - System Development Life Cycle\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1564\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/157f0ef9-143f-496d-b8f9-f8c8eeaad801\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"157f0ef9-143f-496d-b8f9-f8c8eeaad801\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not have a minimum password age of 1 day\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not have a minimum password age of 1 day. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MinimumPasswordAge\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"MinimumPasswordAge\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/16390df4-2f73-4b42-af13-c801066763df\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"16390df4-2f73-4b42-af13-c801066763df\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1662 - Fail In Known State\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1662\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/165cb91f-7ea8-4ab7-beaf-8636b98c9d15\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"165cb91f-7ea8-4ab7-beaf-8636b98c9d15\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1684 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1684\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/16bfdb59-db38-47a5-88a9-2e9371a638cf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"16bfdb59-db38-47a5-88a9-2e9371a638cf\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not have the specified Windows PowerShell modules installed\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not have the specified Windows PowerShell modules installed. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsPowerShellModules\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/16f9b37c-4408-4c30-bc17-254958f2e2d6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"16f9b37c-4408-4c30-bc17-254958f2e2d6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1103 - Audit Events\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1103\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/16feeb31-6377-437e-bbab-d7f73911896d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"16feeb31-6377-437e-bbab-d7f73911896d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1007 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1007\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/17200329-bf6c-46d8-ac6d-abf4641c2add\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"17200329-bf6c-46d8-ac6d-abf4641c2add\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1349 - Identification And Authentication (Non-Org. Users) | Use Of FICAM-Approved Products\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1349\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/17641f70-94cd-4a5d-a613-3d1143e20e34\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"17641f70-94cd-4a5d-a613-3d1143e20e34\"},{\"properties\":{\"displayName\":\"Deploy associations for a managed application\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys an association resource that associates selected resource types to the specified managed application. This policy deployment does not support nested resource types.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Managed Application\"},\"parameters\":{\"targetManagedApplicationId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Managed application ID\",\"description\":\"Resource ID of the managed application to which resources need to be associated.\"}},\"resourceTypesToAssociate\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Resource types to associate\",\"description\":\"The list of resource types to be associated to the managed application.\",\"strongType\":\"resourceTypes\"}},\"associationNamePrefix\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Association name prefix\",\"description\":\"Prefix to be added to the name of the association resource being created.\"},\"defaultValue\":\"DeployedByPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":\"[parameters('resourceTypesToAssociate')]\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.CustomProviders/Associations\",\"name\":\"[concat(parameters('associationNamePrefix'), '-', uniqueString(parameters('targetManagedApplicationId')))]\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"associatedResourceName\":{\"type\":\"string\"},\"resourceTypesToAssociate\":{\"type\":\"string\"},\"targetManagedApplicationId\":{\"type\":\"string\"},\"associationNamePrefix\":{\"type\":\"string\"}},\"variables\":{\"resourceType\":\"[concat(parameters('resourceTypesToAssociate'), '/providers/associations')]\",\"resourceName\":\"[concat(parameters('associatedResourceName'), '/microsoft.customproviders/', parameters('associationNamePrefix'), '-', uniqueString(parameters('targetManagedApplicationId')))]\"},\"resources\":[{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2017-05-10\",\"name\":\"[concat(deployment().Name, '-2')]\",\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"resources\":[{\"type\":\"[variables('resourceType')]\",\"name\":\"[variables('resourceName')]\",\"apiVersion\":\"2018-09-01-preview\",\"properties\":{\"targetResourceId\":\"[parameters('targetManagedApplicationId')]\"}}]}}}]},\"parameters\":{\"resourceTypesToAssociate\":{\"value\":\"[field('type')]\"},\"associatedResourceName\":{\"value\":\"[field('name')]\"},\"targetManagedApplicationId\":{\"value\":\"[parameters('targetManagedApplicationId')]\"},\"associationNamePrefix\":{\"value\":\"[parameters('associationNamePrefix')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/17763ad9-70c0-4794-9397-53d765932634\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"17763ad9-70c0-4794-9397-53d765932634\"},{\"properties\":{\"displayName\":\"Transparent Data Encryption on SQL databases should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Transparent data encryption should be enabled to protect data-at-rest and meet compliance requirements\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers/databases\"},{\"field\":\"name\",\"notEquals\":\"master\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/databases/transparentDataEncryption\",\"name\":\"current\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Sql/transparentDataEncryption.status\",\"equals\":\"enabled\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/17k78e20-9358-41c9-923c-fb736d382a12\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"17k78e20-9358-41c9-923c-fb736d382a12\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1325 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1325\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1845796a-7581-49b2-ae20-443121538e19\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1845796a-7581-49b2-ae20-443121538e19\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1480 - Temperature And Humidity Controls\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1480\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/18a767cc-1947-4338-a240-bc058c81164f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"18a767cc-1947-4338-a240-bc058c81164f\"},{\"properties\":{\"displayName\":\"Bring your own key data protection should be enabled for PostgreSQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits PostgreSQL servers in your environment without bring your own key data protection enabled. For more details, visit https://aka.ms/postgresqlbyok.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/keys\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.DBforPostgreSQL/servers/keys/serverKeyType\",\"equals\":\"AzureKeyVault\"},{\"field\":\"Microsoft.DBforPostgreSQL/servers/keys/uri\",\"notEquals\":\"\"},{\"field\":\"Microsoft.DBforPostgreSQL/servers/keys/uri\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/18adea5e-f416-4d0f-8aa8-d24321e3e274\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"18adea5e-f416-4d0f-8aa8-d24321e3e274\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1369 - Incident Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1369\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/18cc35ed-a429-486d-8d59-cb47e87304ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"18cc35ed-a429-486d-8d59-cb47e87304ed\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1269 - Alternate Storage Site | Separation From Primary Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1269\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/19b9439d-865d-4474-b17d-97d2702fdb66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"19b9439d-865d-4474-b17d-97d2702fdb66\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1071 - Wireless Access | Restrict Configurations By Users\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1071\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1a437f5b-9ad6-4f28-8861-de404d511ae4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1a437f5b-9ad6-4f28-8861-de404d511ae4\"},{\"properties\":{\"displayName\":\"Azure Monitor log profile should collect logs for categories 'write,' 'delete,' and 'action'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy ensures that a log profile collects logs for categories 'write,' 'delete,' and 'action'\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/logprofiles\",\"existenceCondition\":{\"allOf\":[{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/categories[*]\",\"notEquals\":\"Write\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/categories[*]\",\"notEquals\":\"Delete\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/categories[*]\",\"notEquals\":\"Action\"}}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1a4e592a-6a6e-44a5-9814-e36264ca96e7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1a4e592a-6a6e-44a5-9814-e36264ca96e7\"},{\"properties\":{\"displayName\":\"[Deprecated]: Access to App Services should be restricted\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Azure security center has discovered that the networking configuration of some of your app services are overly permissive and allow inbound traffic from ranges that are too broad\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"restrictAccessToAppServices\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1a833ff1-d297-4a0f-9944-888428f8e0ff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1a833ff1-d297-4a0f-9944-888428f8e0ff\"},{\"properties\":{\"displayName\":\"Vulnerability assessment should be enabled on SQL Managed Instance\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit each SQL Managed Instance which doesn't have recurring vulnerability assessment scans enabled. Vulnerability assessment can discover, track, and help you remediate potential database vulnerabilities.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/managedInstances/vulnerabilityAssessments\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/recurringScans.isEnabled\",\"equals\":\"True\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1b7aa243-30e4-4c9e-bca8-d0d3022b634a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1b7aa243-30e4-4c9e-bca8-d0d3022b634a\"},{\"properties\":{\"displayName\":\"Public network access on Azure SQL Database should be disabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Disabling the public network access property improves security by ensuring your Azure SQL Database can only be accessed from a private endpoint. This configuration denies all logins that match IP or virtual network based firewall rules.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"field\":\"Microsoft.Sql/servers/publicNetworkAccess\",\"notEquals\":\"Disabled\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1b8ca024-1d5c-4dec-8995-b1a932b41780\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1b8ca024-1d5c-4dec-8995-b1a932b41780\"},{\"properties\":{\"displayName\":\"Ensure that 'PHP version' is the latest, if used as a part of the Api app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for PHP software either due to security flaws or to include additional functionality. Using the latest PHP version for API apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"PHPLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Latest PHP version\",\"description\":\"Latest supported PHP version for App Services\"},\"defaultValue\":\"7.3\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"PHP\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"[concat('PHP|', parameters('PHPLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"[parameters('PHPLatestVersion')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1bc1795e-d44a-4d48-9b3b-6fff0fd5f9ba\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1bc1795e-d44a-4d48-9b3b-6fff0fd5f9ba\"},{\"properties\":{\"displayName\":\"Deploy Dependency agent for Windows virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Dependency agent for Windows virtual machines if the VM Image (OS) is in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated.\",\"metadata\":{\"version\":\"1.1.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"DependencyAgentWindows\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"DependencyAgent\",\"vmExtensionPublisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"vmExtensionType\":\"DependencyAgentWindows\",\"vmExtensionTypeHandlerVersion\":\"9.6\"},\"resources\":[{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"apiVersion\":\"2019-12-01\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1c210e94-a481-4beb-95fa-1571b434fb04\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1c210e94-a481-4beb-95fa-1571b434fb04\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1072 - Wireless Access | Antennas / Transmission Power Levels\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1072\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1ca29e41-34ec-4e70-aba9-6248aca18c31\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1ca29e41-34ec-4e70-aba9-6248aca18c31\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1656 - Secure Name / Address Resolution Service (Authoritative Source)\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1656\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1cb067d5-c8b5-4113-a7ee-0a493633924b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1cb067d5-c8b5-4113-a7ee-0a493633924b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1592 - External Information System Services | Consistent Interests Of Consumers And Providers\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1592\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1d01ba6c-289f-42fd-a408-494b355b6222\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1d01ba6c-289f-42fd-a408-494b355b6222\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1088 - Security Awareness And Training Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1088\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1d50f99d-1356-49c0-934a-45f742ba7783\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1d50f99d-1356-49c0-934a-45f742ba7783\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy GitOps to Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy deploys a 'sourceControlConfiguration' to Kubernetes clusters to assure that the clusters get their source of truth from the defined git repo. For instructions on using this policy, visit https://aka.ms/K8sGitOpsPolicy.\",\"metadata\":{\"preview\":true,\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\"},\"parameters\":{\"configurationResourceName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Configuration resource name\",\"description\":\"The name for the sourceControlConfiguration. Learn more about setting up GitOps configuration: https://aka.ms/AzureArcK8sUsingGitOps.\"}},\"operatorInstanceName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Operator instance name\",\"description\":\"The name of the operator associated with this configuration. The instance name can contain up to 353 lower-case alphanumeric characters, hyphen, or period. If enableHelmOperator is true, then operatorInstanceName + operatorNamespace strings cannot exceed 47 characters combined.\"}},\"operatorNamespace\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Operator namespace\",\"description\":\"The namespace to use for the configuration operator. The namespace can contain up to 353 lower-case alphanumeric characters, hyphen, or period. If enableHelmOperator is true, then operatorInstanceName + operatorNamespace strings cannot exceed 47 characters combined.\"}},\"operatorScope\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Operator scope\",\"description\":\"The permission scope for the operator. Possible values are 'cluster' (full access) or 'namespace' (restricted access).\"},\"allowedValues\":[\"cluster\",\"namespace\"],\"defaultValue\":\"namespace\"},\"operatorType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Operator type\",\"description\":\"The type of operator to install. Currently, 'Flux' is supported.\"},\"allowedValues\":[\"Flux\"],\"defaultValue\":\"Flux\"},\"operatorParams\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Operator parameters\",\"description\":\"Parameters to set on the Flux operator, separated by spaces. For example, --git-readonly --git-path=namespaces,workloads. Learn more: http://aka.ms/AzureArcK8sFluxOperatorParams.\"},\"defaultValue\":\"\"},\"repositoryUrl\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Repository Url\",\"description\":\"The URL for the source control repository. Private repo: git@github.com:Contoso/cluster-config\"}},\"enableHelmOperator\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Enable Helm\",\"description\":\"Indicate whether to enable Helm for this instance of Flux. Learn more: http://aka.ms/AzureArcK8sGitOpsWithHelm.\"},\"allowedValues\":[\"true\",\"false\"],\"defaultValue\":\"true\"},\"chartVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Helm chart version for installing Flux Helm\",\"description\":\"The version of the Helm chart for installing Flux Helm. For example, 0.6.0\"},\"defaultValue\":\"0.6.0\"},\"chartValues\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Helm chart parameters for installing Flux Helm\",\"description\":\"Parameters for the Helm chart for installing Flux Helm, separated by spaces.\"},\"defaultValue\":\"\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations\",\"name\":\"[parameters('configurationResourceName')]\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deploymentScope\":\"ResourceGroup\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations/operatorParams\",\"in\":[\"--git-readonly\",\"[parameters('operatorParams')]\",\"[concat('--git-readonly ',parameters('operatorParams'))]\"]},{\"field\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations/repositoryUrl\",\"equals\":\"[parameters('repositoryUrl')]\"},{\"anyOf\":[{\"field\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations/enableHelmOperator\",\"equals\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations/enableHelmOperator\",\"equals\":\"true\"},{\"field\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations/helmOperatorProperties.chartVersion\",\"equals\":\"[parameters('chartVersion')]\"},{\"field\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations/helmOperatorProperties.chartValues\",\"equals\":\"[parameters('chartValues')]\"}]}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"configurationResourceName\":{\"type\":\"string\"},\"clusterLocation\":{\"type\":\"string\"},\"clusterName\":{\"type\":\"string\"},\"operatorInstanceName\":{\"type\":\"string\"},\"operatorNamespace\":{\"type\":\"string\"},\"operatorScope\":{\"type\":\"string\"},\"operatorType\":{\"type\":\"string\"},\"operatorParams\":{\"type\":\"string\"},\"repositoryUrl\":{\"type\":\"string\"},\"enableHelmOperator\":{\"type\":\"string\"},\"chartVersion\":{\"type\":\"string\"},\"chartValues\":{\"type\":\"string\"},\"clusterResourceType\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[contains(parameters('clusterResourceType'), 'connectedclusters')]\",\"type\":\"Microsoft.Kubernetes/connectedClusters/providers/sourceControlConfigurations\",\"name\":\"[concat(parameters('clusterName'), '/Microsoft.KubernetesConfiguration/', parameters('configurationResourceName'))]\",\"apiVersion\":\"2019-11-01-preview\",\"properties\":{\"operatorInstanceName\":\"[parameters('operatorInstanceName')]\",\"operatorNamespace\":\"[parameters('operatorNamespace')]\",\"operatorScope\":\"[parameters('operatorScope')]\",\"operatorType\":\"[parameters('operatorType')]\",\"operatorParams\":\"[parameters('operatorParams')]\",\"repositoryUrl\":\"[parameters('repositoryUrl')]\",\"enableHelmOperator\":\"[parameters('enableHelmOperator')]\",\"helmOperatorProperties\":{\"chartVersion\":\"[parameters('chartVersion')]\",\"chartValues\":\"[parameters('chartValues')]\"}}},{\"condition\":\"[contains(parameters('clusterResourceType'), 'managedclusters')]\",\"type\":\"Microsoft.ContainerService/managedClusters/providers/sourceControlConfigurations\",\"name\":\"[concat(parameters('clusterName'), '/Microsoft.KubernetesConfiguration/', parameters('configurationResourceName'))]\",\"apiVersion\":\"2019-11-01-preview\",\"properties\":{\"operatorInstanceName\":\"[parameters('operatorInstanceName')]\",\"operatorNamespace\":\"[parameters('operatorNamespace')]\",\"operatorScope\":\"[parameters('operatorScope')]\",\"operatorType\":\"[parameters('operatorType')]\",\"operatorParams\":\"[parameters('operatorParams')]\",\"repositoryUrl\":\"[parameters('repositoryUrl')]\",\"enableHelmOperator\":\"[parameters('enableHelmOperator')]\",\"helmOperatorProperties\":{\"chartVersion\":\"[parameters('chartVersion')]\",\"chartValues\":\"[parameters('chartValues')]\"}}}]},\"parameters\":{\"clusterLocation\":{\"value\":\"[field('location')]\"},\"clusterName\":{\"value\":\"[field('name')]\"},\"configurationResourceName\":{\"value\":\"[parameters('configurationResourceName')]\"},\"operatorInstanceName\":{\"value\":\"[parameters('operatorInstanceName')]\"},\"operatorNamespace\":{\"value\":\"[parameters('operatorNamespace')]\"},\"operatorScope\":{\"value\":\"[parameters('operatorScope')]\"},\"operatorType\":{\"value\":\"[parameters('operatorType')]\"},\"operatorParams\":{\"value\":\"[parameters('operatorParams')]\"},\"repositoryUrl\":{\"value\":\"[parameters('repositoryUrl')]\"},\"enableHelmOperator\":{\"value\":\"[parameters('enableHelmOperator')]\"},\"chartVersion\":{\"value\":\"[parameters('chartVersion')]\"},\"chartValues\":{\"value\":\"[parameters('chartValues')]\"},\"clusterResourceType\":{\"value\":\"[field('type')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1d61c4d2-aef2-432b-87fc-7f96b019b7e1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1d61c4d2-aef2-432b-87fc-7f96b019b7e1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1538 - Security Categorization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1538\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1d7658b2-e827-49c3-a2ae-6d2bd0b45874\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1d7658b2-e827-49c3-a2ae-6d2bd0b45874\"},{\"properties\":{\"displayName\":\"Virtual machines should be migrated to new Azure Resource Manager resources\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use new Azure Resource Manager for your virtual machines to provide security enhancements such as: stronger access control (RBAC), better auditing, Azure Resource Manager based deployment and governance, access to managed identities, access to key vault for secrets, Azure AD-based authentication and support for tags and resource groups for easier security management\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.ClassicCompute/virtualMachines\",\"Microsoft.Compute/virtualMachines\"]},{\"value\":\"[field('type')]\",\"equals\":\"Microsoft.ClassicCompute/virtualMachines\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1d84d5fb-01f6-4d12-ba4f-4a26081d403d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1d84d5fb-01f6-4d12-ba4f-4a26081d403d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1298 - Identification And Authentication Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1298\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1dc784b5-4895-4d27-9d40-a06b032bd1ee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1dc784b5-4895-4d27-9d40-a06b032bd1ee\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit API Applications that are not using latest supported .NET Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported .NET Framework version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestDotNet\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1de7b11d-1870-41a5-8181-507e7c663cfb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1de7b11d-1870-41a5-8181-507e7c663cfb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1595 - Developer Configuration Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1595\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1e0414e7-6ef5-4182-8076-aa82fbb53341\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1e0414e7-6ef5-4182-8076-aa82fbb53341\"},{\"properties\":{\"displayName\":\"Require a tag and its value on resources\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Enforces a required tag and its value. Does not apply to resource groups.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"not\":{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"equals\":\"[parameters('tagValue')]\"}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1e30110a-5ceb-460c-a204-c1c3969c6d62\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1e30110a-5ceb-460c-a204-c1c3969c6d62\"},{\"properties\":{\"displayName\":\"An Azure Active Directory administrator should be provisioned for SQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit provisioning of an Azure Active Directory administrator for your SQL server to enable Azure AD authentication. Azure AD authentication enables simplified permission management and centralized identity management of database users and other Microsoft services\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/administrators\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1f314764-cb73-4fc9-b863-8eca98ac36e9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1f314764-cb73-4fc9-b863-8eca98ac36e9\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Event Hub to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Event Hub to stream to a regional Log Analytics workspace when any Event Hub which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.EventHub/namespaces\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.EventHub/namespaces/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"ArchiveLogs\",\"enabled\":true,\"retentionPolicy\":{\"enabled\":false,\"days\":0}},{\"category\":\"OperationalLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"AutoScaleLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"KafkaCoordinatorLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"EventHubVNetConnectionEvent\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"CustomerManagedKeyUserLogs\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1f6e93e8-6b31-41b1-83f6-36e449a42579\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1f6e93e8-6b31-41b1-83f6-36e449a42579\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Shutdown'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Shutdown'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Shutdown: Allow system to be shut down without having to log on\",\"description\":\"Specifies whether a computer can be shut down when a user is not logged on. If this policy setting is enabled, the shutdown command is available on the Windows logon screen.\"},\"defaultValue\":\"0\"},\"ShutdownClearVirtualMemoryPagefile\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Shutdown: Clear virtual memory pagefile\",\"description\":\"Specifies whether the virtual memory pagefile is cleared when the system is shut down. When this policy setting is enabled, the system pagefile is cleared each time that the system shuts down properly. For systems with large amounts of RAM, this could result in substantial time needed to complete the shutdown.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsShutdown\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Shutdown: Allow system to be shut down without having to log on;ExpectedValue', '=', parameters('ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn'), ',', 'Shutdown: Clear virtual memory pagefile;ExpectedValue', '=', parameters('ShutdownClearVirtualMemoryPagefile')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsShutdown\"},\"ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn\":{\"value\":\"[parameters('ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn')]\"},\"ShutdownClearVirtualMemoryPagefile\":{\"value\":\"[parameters('ShutdownClearVirtualMemoryPagefile')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn\":{\"type\":\"string\"},\"ShutdownClearVirtualMemoryPagefile\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Shutdown: Allow system to be shut down without having to log on;ExpectedValue\",\"value\":\"[parameters('ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn')]\"},{\"name\":\"Shutdown: Clear virtual memory pagefile;ExpectedValue\",\"value\":\"[parameters('ShutdownClearVirtualMemoryPagefile')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Shutdown: Allow system to be shut down without having to log on;ExpectedValue\",\"value\":\"[parameters('ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn')]\"},{\"name\":\"Shutdown: Clear virtual memory pagefile;ExpectedValue\",\"value\":\"[parameters('ShutdownClearVirtualMemoryPagefile')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1f8c20ce-3414-4496-8b26-0e902a1541da\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1f8c20ce-3414-4496-8b26-0e902a1541da\"},{\"properties\":{\"displayName\":\"Azure Cosmos DB account should use customer-managed keys to encrypt data at rest\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use customer-managed keys to control the encryption at rest of the data stored in Azure Cosmos DB when this is a regulatory or compliance requirement. Customer-managed keys also deliver double encryption by adding a second layer of encryption on top of the default one done with service-managed keys. See https://aka.ms/cosmosdb-cmk\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cosmos DB\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The desired effect of the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"Microsoft.DocumentDB/databaseAccounts/keyVaultKeyUri\",\"exists\":false},{\"field\":\"type\",\"equals\":\"Microsoft.DocumentDB/databaseAccounts\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1f905d99-2ab7-462c-a6b0-f709acca6c8f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1f905d99-2ab7-462c-a6b0-f709acca6c8f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1616 - System And Communications Protection Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1616\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2006457a-48b3-4f7b-8d2e-1532287f9929\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2006457a-48b3-4f7b-8d2e-1532287f9929\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1650 - Public Key Infrastructure Certificates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1650\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/201d3740-bd16-4baf-b4b8-7cda352228b7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"201d3740-bd16-4baf-b4b8-7cda352228b7\"},{\"properties\":{\"displayName\":\"[Deprecated]: Web ports should be restricted on Network Security Groups associated to your VM\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Azure security center has discovered that some of your virtual machines are running web applications, and the NSGs associated to these virtual machines are overly permissive with regards to the web application ports\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"unprotectedWebApplication\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/201ea587-7c90-41c3-910f-c280ae01cfd6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"201ea587-7c90-41c3-910f-c280ae01cfd6\"},{\"properties\":{\"displayName\":\"VM Image Builder templates should use private link\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit VM Image Builder templates that do not have a virtual network configured. When a virtual network is not configured, a public IP is created and used instead which may expose resources directly to the internet and increase the potential attack surface.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"VM Image Builder\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.VirtualMachineImages/imageTemplates\"},{\"field\":\"Microsoft.VirtualMachineImages/imageTemplates/vmProfile.vnetConfig\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2154edb9-244f-4741-9970-660785bccdaa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2154edb9-244f-4741-9970-660785bccdaa\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1181 - Baseline Configuration | Retention Of Previous Configurations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1181\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/21839937-d241-4fa5-95c6-b669253d9ab9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"21839937-d241-4fa5-95c6-b669253d9ab9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1111 - Response To Audit Processing Failures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1111\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/21de687c-f15e-4e51-bf8d-f35c8619965b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"21de687c-f15e-4e51-bf8d-f35c8619965b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1596 - Developer Configuration Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1596\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/21e25e01-0ae0-41be-919e-04ce92b8e8b8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"21e25e01-0ae0-41be-919e-04ce92b8e8b8\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Audit'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Audit'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsAudit\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/21e2995e-683e-497a-9e81-2f42ad07050a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"21e2995e-683e-497a-9e81-2f42ad07050a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1426 - Media Protection Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1426\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/21f639bc-f42b-46b1-8f40-7a2a389c291a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"21f639bc-f42b-46b1-8f40-7a2a389c291a\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit API Apps that are not using custom domains\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use of custom domains protects a API app from common attacks such as phishing and other DNS-related attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UsedCustomDomains\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/224da9fe-0d38-4e79-adb3-0a6e2af942ac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"224da9fe-0d38-4e79-adb3-0a6e2af942ac\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1399 - Controlled Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1399\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2256e638-eb23-480f-9e15-6cf1af0a76b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2256e638-eb23-480f-9e15-6cf1af0a76b3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1221 - Least Functionality | Authorized Software / Whitelisting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1221\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/22589a07-0007-486a-86ca-95355081ae2a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"22589a07-0007-486a-86ca-95355081ae2a\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Account Management'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Account Management'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesAccountManagement\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/225e937e-d32e-4713-ab74-13ce95b3519a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"225e937e-d32e-4713-ab74-13ce95b3519a\"},{\"properties\":{\"displayName\":\"Management ports should be closed on your virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Open remote management ports are exposing your VM to a high level of risk from Internet-based attacks. These attacks attempt to brute force credentials to gain admin access to the machine.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"restrictAccessToManagementPorts\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/22730e10-96f6-4aac-ad84-9383d35b5917\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"22730e10-96f6-4aac-ad84-9383d35b5917\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1493 - System Security Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1493\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/22b469b3-fccf-42da-aa3b-a28e6fb113ce\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"22b469b3-fccf-42da-aa3b-a28e6fb113ce\"},{\"properties\":{\"displayName\":\"Only secure connections to your Azure Cache for Redis should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of only connections via SSL to Azure Cache for Redis. Use of secure connections ensures authentication between the server and the service and protects data in transit from network layer attacks such as man-in-the-middle, eavesdropping, and session-hijacking\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cache\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Cache/redis\"},{\"field\":\"Microsoft.Cache/Redis/enableNonSslPort\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/22bee202-a82f-4305-9a2a-6d7f44d4dedb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"22bee202-a82f-4305-9a2a-6d7f44d4dedb\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not restrict the minimum password length to 14 characters\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not restrict the minimum password length to 14 characters. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MinimumPasswordLength\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"MinimumPasswordLength\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/23020aa6-1135-4be2-bae2-149982b06eca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"23020aa6-1135-4be2-bae2-149982b06eca\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1256 - Contingency Plan | Identify Critical Assets\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1256\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/232ab24b-810b-4640-9019-74a7d0d6a980\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"232ab24b-810b-4640-9019-74a7d0d6a980\"},{\"properties\":{\"displayName\":\"Service Bus should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Service Bus not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ServiceBus/namespaces\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.ServiceBus/namespaces/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.ServiceBus/namespaces/virtualNetworkRules/virtualNetworkSubnetId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/235359c5-7c52-4b82-9055-01c75cf9f60e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"235359c5-7c52-4b82-9055-01c75cf9f60e\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Stream Analytics to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Stream Analytics to stream to a regional Log Analytics workspace when any Stream Analytics which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.StreamAnalytics/streamingjobs\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.StreamAnalytics/streamingjobs/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"Execution\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Authoring\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/237e0f7e-b0e8-4ec4-ad46-8c12cb66d673\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"237e0f7e-b0e8-4ec4-ad46-8c12cb66d673\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1268 - Alternate Storage Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1268\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/23f6e984-3053-4dfc-ab48-543b764781f5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"23f6e984-3053-4dfc-ab48-543b764781f5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1122 - Audit Review, Analysis, And Reporting | Permitted Actions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1122\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/243ec95e-800c-49d4-ba52-1fdd9f6b8b57\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"243ec95e-800c-49d4-ba52-1fdd9f6b8b57\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1231 - Configuration Management Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1231\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/244e0c05-cc45-4fe7-bf36-42dcf01f457d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"244e0c05-cc45-4fe7-bf36-42dcf01f457d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1082 - Information Sharing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1082\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/24d480ef-11a0-4b1b-8e70-4e023bf2be23\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"24d480ef-11a0-4b1b-8e70-4e023bf2be23\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not have a maximum password age of 70 days\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not have a maximum password age of 70 days. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MaximumPasswordAge\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/24dde96d-f0b1-425e-884f-4a1421e2dcdc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"24dde96d-f0b1-425e-884f-4a1421e2dcdc\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Data Lake Storage Gen1 to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Data Lake Storage Gen1 to stream to a regional Log Analytics workspace when any Data Lake Storage Gen1 which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeStore/accounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.DataLakeStore/accounts/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"Audit\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Requests\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/25763a0a-5783-4f14-969e-79d4933eb74b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"25763a0a-5783-4f14-969e-79d4933eb74b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1372 - Incident Reporting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1372\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/25b96717-c912-4c00-9143-4e487f411726\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"25b96717-c912-4c00-9143-4e487f411726\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1038 - Least Privilege | Privileged Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1038\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/26692e88-71b7-4a5f-a8ac-9f31dd05bd8e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"26692e88-71b7-4a5f-a8ac-9f31dd05bd8e\"},{\"properties\":{\"displayName\":\"Endpoint protection solution should be installed on virtual machine scale sets\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit the existence and health of an endpoint protection solution on your virtual machines scale sets, to protect them from threats and vulnerabilities.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"EndpointProtection\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/26a828e1-e88f-464e-bbb3-c134a282b9de\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"26a828e1-e88f-464e-bbb3-c134a282b9de\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1649 - Collaborative Computing Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1649\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/26d292cc-b0b8-4c29-9337-68abc758bf7b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"26d292cc-b0b8-4c29-9337-68abc758bf7b\"},{\"properties\":{\"displayName\":\"Metric alert rules should be configured on Batch accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit configuration of metric alert rules on Batch account to enable the required metric\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Batch\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"metricName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Metric name\",\"description\":\"The metric name that an alert rule must be enabled on\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/alertRules\",\"existenceScope\":\"Subscription\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/alertRules/isEnabled\",\"equals\":\"true\"},{\"field\":\"Microsoft.Insights/alertRules/condition.dataSource.metricName\",\"equals\":\"[parameters('metricName')]\"},{\"field\":\"Microsoft.Insights/alertRules/condition.dataSource.resourceUri\",\"equals\":\"[concat('/subscriptions/', subscription().subscriptionId, '/resourcegroups/', resourceGroup().name, '/providers/Microsoft.Batch/batchAccounts/', field('name'))]\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/26ee67a2-f81a-4ba8-b9ce-8550bd5ee1a7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"26ee67a2-f81a-4ba8-b9ce-8550bd5ee1a7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1396 - Controlled Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1396\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/276af98f-4ff9-4e69-99fb-c9b2452fb85f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"276af98f-4ff9-4e69-99fb-c9b2452fb85f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1074 - Access Control For Mobile Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1074\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/27a69937-af92-4198-9b86-08d355c7e59a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"27a69937-af92-4198-9b86-08d355c7e59a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1527 - Access Agreements\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1527\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2823de66-332f-4bfd-94a3-3eb036cd3b67\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2823de66-332f-4bfd-94a3-3eb036cd3b67\"},{\"properties\":{\"displayName\":\"Deploy default Microsoft IaaSAntimalware extension for Windows Server\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys a Microsoft IaaSAntimalware extension with a default configuration when a VM is not configured with the antimalware extension.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\"]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"IaaSAntimalware\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Security\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"ExclusionsPaths\":{\"type\":\"string\",\"defaultValue\":\"\",\"metadata\":{\"description\":\"Semicolon delimited list of file paths or locations to exclude from scanning\"}},\"ExclusionsExtensions\":{\"type\":\"string\",\"defaultValue\":\"\",\"metadata\":{\"description\":\"Semicolon delimited list of file extensions to exclude from scanning\"}},\"ExclusionsProcesses\":{\"type\":\"string\",\"defaultValue\":\"\",\"metadata\":{\"description\":\"Semicolon delimited list of process names to exclude from scanning\"}},\"RealtimeProtectionEnabled\":{\"type\":\"string\",\"defaultValue\":\"true\",\"metadata\":{\"description\":\"Indicates whether or not real time protection is enabled (default is true)\"}},\"ScheduledScanSettingsIsEnabled\":{\"type\":\"string\",\"defaultValue\":\"false\",\"metadata\":{\"description\":\"Indicates whether or not custom scheduled scan settings are enabled (default is false)\"}},\"ScheduledScanSettingsScanType\":{\"type\":\"string\",\"defaultValue\":\"Quick\",\"metadata\":{\"description\":\"Indicates whether scheduled scan setting type is set to Quick or Full (default is Quick)\"}},\"ScheduledScanSettingsDay\":{\"type\":\"string\",\"defaultValue\":\"7\",\"metadata\":{\"description\":\"Day of the week for scheduled scan (1-Sunday, 2-Monday, ..., 7-Saturday)\"}},\"ScheduledScanSettingsTime\":{\"type\":\"string\",\"defaultValue\":\"120\",\"metadata\":{\"description\":\"When to perform the scheduled scan, measured in minutes from midnight (0-1440). For example: 0 = 12AM, 60 = 1AM, 120 = 2AM.\"}}},\"resources\":[{\"name\":\"[concat(parameters('vmName'),'/IaaSAntimalware')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2017-12-01\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"type\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.3\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"AntimalwareEnabled\":true,\"RealtimeProtectionEnabled\":\"[parameters('RealtimeProtectionEnabled')]\",\"ScheduledScanSettings\":{\"isEnabled\":\"[parameters('ScheduledScanSettingsIsEnabled')]\",\"day\":\"[parameters('ScheduledScanSettingsDay')]\",\"time\":\"[parameters('ScheduledScanSettingsTime')]\",\"scanType\":\"[parameters('ScheduledScanSettingsScanType')]\"},\"Exclusions\":{\"Extensions\":\"[parameters('ExclusionsExtensions')]\",\"Paths\":\"[parameters('ExclusionsPaths')]\",\"Processes\":\"[parameters('ExclusionsProcesses')]\"}}}}]},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"RealtimeProtectionEnabled\":{\"value\":\"true\"},\"ScheduledScanSettingsIsEnabled\":{\"value\":\"true\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2835b622-407b-4114-9198-6f7064cbe0dc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2835b622-407b-4114-9198-6f7064cbe0dc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1342 - Authenticator Management | Hardware Token-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1342\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/283a4e29-69d5-4c94-b99e-29acf003c899\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"283a4e29-69d5-4c94-b99e-29acf003c899\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1436 - Media Transport\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1436\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/28aab8b4-74fd-4b7c-9080-5a7be525d574\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"28aab8b4-74fd-4b7c-9080-5a7be525d574\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1224 - Information System Component Inventory | Updates During Installations / Removals\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1224\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/28cfa30b-7f72-47ce-ba3b-eed26c8d2c82\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"28cfa30b-7f72-47ce-ba3b-eed26c8d2c82\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1148 - Security Assessments | Independent Assessors\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1148\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/28e62650-c7c2-4786-bdfa-17edc1673902\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"28e62650-c7c2-4786-bdfa-17edc1673902\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1418 - Nonlocal Maintenance | Comparable Security / Sanitization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1418\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/28e633fd-284e-4ea7-88b4-02ca157ed713\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"28e633fd-284e-4ea7-88b4-02ca157ed713\"},{\"properties\":{\"displayName\":\"Advanced threat protection should be enabled on Azure App Service plans\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced threat protection leverages the scale of the cloud, and the visibility that Azure has as a cloud provider, to monitor for common web app attacks.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"AppServices\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2913021d-f2fd-4f3d-b958-22354e2bdbcb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2913021d-f2fd-4f3d-b958-22354e2bdbcb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1634 - Boundary Protection | Prevent Unauthorized Exfiltration\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1634\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/292a7c44-37fa-4c68-af7c-9d836955ded2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"292a7c44-37fa-4c68-af7c-9d836955ded2\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - User Account Control'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - User Account Control'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsUserAccountControl\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/29829ec2-489d-4925-81b7-bda06b1718e0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"29829ec2-489d-4925-81b7-bda06b1718e0\"},{\"properties\":{\"displayName\":\"Append a tag and its value to resources\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Appends the specified tag and value when any resource which is missing this tag is created or updated. Does not modify the tags of resources created before this policy was applied until those resources are changed. Does not apply to resource groups. New 'modify' effect policies are available that support remediation of tags on existing resources (see https://aka.ms/modifydoc).\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[parameters('tagValue')]\"}]}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2a0e14a6-b0a6-4fab-991a-187a4f81c498\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2a0e14a6-b0a6-4fab-991a-187a4f81c498\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1219 - Least Functionality | Authorized Software / Whitelisting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1219\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2a39ac75-622b-4c88-9a3f-45b7373f7ef7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2a39ac75-622b-4c88-9a3f-45b7373f7ef7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1274 - Alternate Processing Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1274\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2aee175f-cd16-4825-939a-a85349d96210\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2aee175f-cd16-4825-939a-a85349d96210\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1603 - Developer Security Testing And Evaluation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1603\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2b909c26-162f-47ce-8e15-0c1f55632eac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2b909c26-162f-47ce-8e15-0c1f55632eac\"},{\"properties\":{\"displayName\":\"Managed identity should be used in your Web App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use a managed identity for enhanced authentication security\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/managedServiceIdentityId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2b9ad585-36bc-4615-b300-fd4435808332\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2b9ad585-36bc-4615-b300-fd4435808332\"},{\"properties\":{\"displayName\":\"Cognitive Services accounts should enable data encryption\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Cognitive Services account not using data encryption. For each Cognitive Services account with storage, should enable data encryption with either customer managed or Microsoft managed key.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cognitive Services\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.CognitiveServices/accounts\"},{\"field\":\"Microsoft.CognitiveServices/accounts/encryption.keySource\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2bdd0062-9d75-436e-89df-487dd8e4b3c7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2bdd0062-9d75-436e-89df-487dd8e4b3c7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1434 - Media Transport\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1434\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2c18f06b-a68d-41c3-8863-b8cd3acb5f8f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2c18f06b-a68d-41c3-8863-b8cd3acb5f8f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1343 - Authenticator Management | Expiration Of Cached Authenticators\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1343\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2c251a55-31eb-4e53-99c6-e9c43c393ac2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2c251a55-31eb-4e53-99c6-e9c43c393ac2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1388 - Information Spillage Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1388\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2c7c575a-d4c5-4f6f-bd49-dee97a8cba55\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2c7c575a-d4c5-4f6f-bd49-dee97a8cba55\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1344 - Authenticator Feedback\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1344\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2c895fe7-2d8e-43a2-838c-3a533a5b355e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2c895fe7-2d8e-43a2-838c-3a533a5b355e\"},{\"properties\":{\"displayName\":\"SSH access from the Internet should be blocked\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits any network security rule that allows SSH access from Internet\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups/securityRules\"},{\"allOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Allow\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"},{\"anyOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange\",\"equals\":\"*\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange\",\"equals\":\"22\"},{\"value\":\"[if(and(not(empty(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'))), contains(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'),'-')), and(lessOrEquals(int(first(split(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'), '-'))),22),greaterOrEquals(int(last(split(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'), '-'))),22)), 'false')]\",\"equals\":\"true\"},{\"count\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\"where\":{\"value\":\"[if(and(not(empty(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')))), contains(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')),'-')), and(lessOrEquals(int(first(split(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')), '-'))),22),greaterOrEquals(int(last(split(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')), '-'))),22)) , 'false')]\",\"equals\":\"true\"}},\"greater\":0},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\"notEquals\":\"*\"}},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\"notEquals\":\"22\"}}]},{\"anyOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"*\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Internet\"},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefixes[*]\",\"notEquals\":\"*\"}},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefixes[*]\",\"notEquals\":\"Internet\"}}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2c89a2e5-7285-40fe-afe0-ae8654b92fab\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2c89a2e5-7285-40fe-afe0-ae8654b92fab\"},{\"properties\":{\"displayName\":\"Unattached disks should be encrypted\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any unattached disk without encryption enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/disks\"},{\"field\":\"Microsoft.Compute/disks/diskState\",\"equals\":\"Unattached\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/disks/encryptionSettingsCollection.enabled\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/disks/encryptionSettingsCollection.enabled\",\"equals\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2c89a2e5-7285-40fe-afe0-ae8654b92fb2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2c89a2e5-7285-40fe-afe0-ae8654b92fb2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1593 - External Information System Services | Processing, Storage, And Service Location\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1593\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2cd0a426-b5f5-4fe0-9539-a6043cdbc6fa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2cd0a426-b5f5-4fe0-9539-a6043cdbc6fa\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1546 - Vulnerability Scanning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1546\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2ce1ea7e-4038-4e53-82f4-63e8859333c1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2ce1ea7e-4038-4e53-82f4-63e8859333c1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1414 - Nonlocal Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1414\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2ce63a52-e47b-4ae2-adbb-6e40d967f9e6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2ce63a52-e47b-4ae2-adbb-6e40d967f9e6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1679 - Malicious Code Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1679\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2cf42a28-193e-41c5-98df-7688e7ef0a88\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2cf42a28-193e-41c5-98df-7688e7ef0a88\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1068 - Wireless Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1068\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2d045bca-a0fd-452e-9f41-4ec33769717c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2d045bca-a0fd-452e-9f41-4ec33769717c\"},{\"properties\":{\"displayName\":\"App Service should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any App Service not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/virtualNetworkConnections\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/virtualnetworkconnections/vnetResourceId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2d21331d-a4c2-4def-a9ad-ee4e1e023beb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2d21331d-a4c2-4def-a9ad-ee4e1e023beb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1704 - Security Alerts, Advisories, And Directives\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1704\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2d44b6fa-1134-4ea6-ad4e-9edb68f65429\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2d44b6fa-1134-4ea6-ad4e-9edb68f65429\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not store passwords using reversible encryption\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not store passwords using reversible encryption. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"StorePasswordsUsingReversibleEncryption\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2d60d3b7-aa10-454c-88a8-de39d99d17c6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2d60d3b7-aa10-454c-88a8-de39d99d17c6\"},{\"properties\":{\"displayName\":\"Show audit results from Linux VMs that allow remote connections from accounts without passwords\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Linux virtual machines that allow remote connections from accounts without passwords. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordPolicy_msid110\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2d67222d-05fd-4526-a171-2ee132ad9e83\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2d67222d-05fd-4526-a171-2ee132ad9e83\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1077 - Use Of External Information Systems\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1077\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2dad3668-797a-412e-a798-07d3849a7a79\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2dad3668-797a-412e-a798-07d3849a7a79\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1149 - Security Assessments | Specialized Assessments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1149\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2e1b855b-a013-481a-aeeb-2bcb129fd35d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2e1b855b-a013-481a-aeeb-2bcb129fd35d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1497 - System Security Plan | Plan / Coordinate With Other Organizational Entities\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1497\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2e3c5583-1729-4d36-8771-59c32f090a22\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2e3c5583-1729-4d36-8771-59c32f090a22\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1000 - Access Control Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1000\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2ef3cc79-733e-48ed-ab6f-7bf439e9b406\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2ef3cc79-733e-48ed-ab6f-7bf439e9b406\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1519 - Personnel Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1519\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2f13915a-324c-4ab8-b45c-2eefeeefb098\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2f13915a-324c-4ab8-b45c-2eefeeefb098\"},{\"properties\":{\"displayName\":\"[Preview]: Network traffic data collection agent should be installed on Windows virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Security Center uses the Microsoft Dependency agent to collect network traffic data from your Azure virtual machines to enable advanced network protection features such as traffic visualization on the network map, network hardening recommendations and specific network threats.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Monitoring\",\"preview\":\"true\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable Dependency Agent for Windows VMs monitoring\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"DependencyAgentWindows\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2f2ee1de-44aa-4762-b6bd-0893fc3f306d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2f2ee1de-44aa-4762-b6bd-0893fc3f306d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1144 - Security Assessments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1144\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2fa15ff1-a693-4ee4-b094-324818dc9a51\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2fa15ff1-a693-4ee4-b094-324818dc9a51\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1090 - Security Awareness Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1090\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2fb740e5-cbc7-4d10-8686-d1bf826652b1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2fb740e5-cbc7-4d10-8686-d1bf826652b1\"},{\"properties\":{\"displayName\":\"[Deprecated]: Web Application should only be accessible over HTTPS\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use of HTTPS ensures server/service authentication and protects data in transit from network layer eavesdropping attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"OnlyHttpsForWebApplication\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2fde8a98-6892-426a-83ba-050e640c0ce0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2fde8a98-6892-426a-83ba-050e640c0ce0\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Network Access'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Network Access'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsNetworkAccess\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/30040dab-4e75-4456-8273-14b8f75d91d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"30040dab-4e75-4456-8273-14b8f75d91d9\"},{\"properties\":{\"displayName\":\"Advanced threat protection should be enabled on Azure Storage accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced threat protection provides detections of unusual and potentially harmful attempts to access or exploit Storage accounts.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"StorageAccounts\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/308fbb08-4ab8-4e67-9b29-592e93fb94fa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"308fbb08-4ab8-4e67-9b29-592e93fb94fa\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that are not joined to the specified domain\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that are not joined to the specified domain. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"DomainName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Domain Name (FQDN)\",\"description\":\"The fully qualified domain name (FQDN) that the Windows VMs should be joined to\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDomainMembership\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[DomainMembership]WindowsDomainMembership;DomainName', '=', parameters('DomainName')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsDomainMembership\"},\"DomainName\":{\"value\":\"[parameters('DomainName')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"DomainName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[DomainMembership]WindowsDomainMembership;DomainName\",\"value\":\"[parameters('DomainName')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[DomainMembership]WindowsDomainMembership;DomainName\",\"value\":\"[parameters('DomainName')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/315c850a-272d-4502-8935-b79010405970\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"315c850a-272d-4502-8935-b79010405970\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1042 - Least Privilege | Auditing Use Of Privileged Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1042\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/319dc4f0-0fed-4ac9-8fc3-7aeddee82c07\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"319dc4f0-0fed-4ac9-8fc3-7aeddee82c07\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1698 - Information System Monitoring | Individuals Posing Greater Risk\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1698\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/31b752c1-05a9-432a-8fce-c39b56550119\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"31b752c1-05a9-432a-8fce-c39b56550119\"},{\"properties\":{\"displayName\":\"[Preview]: Audit Log Analytics Agent Deployment - VM Image (OS) unlisted\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Reports VMs as non-compliant if the VM Image (OS) is not in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Monitoring\",\"preview\":true},\"parameters\":{\"listOfImageIdToInclude_windows\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]},\"listOfImageIdToInclude_linux\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"not\":{\"anyOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_windows')]\"},{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_linux')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"12*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"14.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"16.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"18.04*LTS\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7.*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/32133ab0-ee4b-4b44-98d6-042180979d50\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"32133ab0-ee4b-4b44-98d6-042180979d50\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1587 - External Information System Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1587\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/32820956-9c6d-4376-934c-05cd8525be7c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"32820956-9c6d-4376-934c-05cd8525be7c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1333 - Authenticator Management | Pki-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1333\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3298d6bf-4bc6-4278-a95d-f7ef3ac6e594\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3298d6bf-4bc6-4278-a95d-f7ef3ac6e594\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs on which the specified services are not installed and 'Running'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines on which the specified services are not installed and 'Running'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"ServiceName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Service names (supports wildcards)\",\"description\":\"A semicolon-separated list of the names of the services that should be installed and 'Running'. e.g. 'WinRm;Wi*'\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsServiceStatus\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsServiceStatus]WindowsServiceStatus1;ServiceName', '=', parameters('ServiceName')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsServiceStatus\"},\"ServiceName\":{\"value\":\"[parameters('ServiceName')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"ServiceName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsServiceStatus]WindowsServiceStatus1;ServiceName\",\"value\":\"[parameters('ServiceName')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsServiceStatus]WindowsServiceStatus1;ServiceName\",\"value\":\"[parameters('ServiceName')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/32b1e4d4-6cd5-47b4-a935-169da8a5c262\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"32b1e4d4-6cd5-47b4-a935-169da8a5c262\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1445 - Physical And Environmental Protection Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1445\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/32d07d59-2716-4972-b37b-214a67ac4a37\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"32d07d59-2716-4972-b37b-214a67ac4a37\"},{\"properties\":{\"displayName\":\"Azure SQL Database should have the minimal TLS version of 1.2\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Setting minimal TLS version to 1.2 improves security by ensuring your Azure SQL Database can only be accessed from clients using TLS 1.2. Using versions of TLS less than 1.2 is not reccomended since they have well documented security vunerabilities.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"anyOf\":[{\"field\":\"Microsoft.Sql/servers/minimalTlsVersion\",\"exists\":false},{\"field\":\"Microsoft.Sql/servers/minimalTlsVersion\",\"notEquals\":\"1.2\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/32e6bbec-16b6-44c2-be37-c5b672d103cf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"32e6bbec-16b6-44c2-be37-c5b672d103cf\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy the Linux Guest Configuration extension to enable Guest Configuration assignments on Linux virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Linux Guest Configuration extension to Linux virtual machines hosted in Azure that are supported by Guest Configuration. The Linux Guest Configuration extension is a prerequisite for all Linux Guest Configuration assignments and must deployed to machines before using any Linux Guest Configuration policy definition. For more information on Guest Configuration, visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.0.0-preview\",\"preview\":true},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"AzurePolicyforLinux\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.GuestConfiguration\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"ConfigurationforLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/331e8ea8-378a-410f-a2e5-ae22f38bb0da\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"331e8ea8-378a-410f-a2e5-ae22f38bb0da\"},{\"properties\":{\"displayName\":\"MySQL server should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MySQL servers not configured to use a virtual network service endpoint. For more details, visit https://aka.ms/mysqlvnet.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforMySQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforMySQL/servers/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.DBforMySQL/servers/virtualNetworkRules/virtualNetworkSubnetId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3375856c-3824-4e0e-ae6a-79e011dd4c47\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3375856c-3824-4e0e-ae6a-79e011dd4c47\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1282 - Telecommunications Services | Single Points Of Failure\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1282\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/34042a97-ec6d-4263-93d2-8c1c46823b2a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34042a97-ec6d-4263-93d2-8c1c46823b2a\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Linux VMs that have accounts without passwords\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Linux virtual machines that have accounts without passwords. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordPolicy_msid232\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"PasswordPolicy_msid232\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3470477a-b35a-49db-aca5-1073d04524fe\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3470477a-b35a-49db-aca5-1073d04524fe\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1151 - System Interconnections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1151\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/347e3b69-7fb7-47df-a8ef-71a1a7b44bca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"347e3b69-7fb7-47df-a8ef-71a1a7b44bca\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1412 - Nonlocal Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1412\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3492d949-0dbb-4589-88b3-7b59601cc764\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3492d949-0dbb-4589-88b3-7b59601cc764\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1475 - Emergency Lighting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1475\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/34a63848-30cf-4081-937e-ce1a1c885501\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34a63848-30cf-4081-937e-ce1a1c885501\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1060 - Remote Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1060\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/34a987fd-2003-45de-a120-014956581f2b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34a987fd-2003-45de-a120-014956581f2b\"},{\"properties\":{\"displayName\":\"Storage accounts should restrict network access\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Network access to storage accounts should be restricted. Configure network rules so only applications from allowed networks can access the storage account. To allow connections from specific internet or on-premise clients, access can be granted to traffic from specific Azure virtual networks or to public internet IP address ranges\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Storage\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"field\":\"Microsoft.Storage/storageAccounts/networkAcls.defaultAction\",\"notEquals\":\"Deny\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/34c877ad-507e-4c82-993e-3452a6e0ad3c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34c877ad-507e-4c82-993e-3452a6e0ad3c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1341 - Authenticator Management | Multiple Information System Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1341\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/34cb7e92-fe4c-4826-b51e-8cd203fa5d35\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34cb7e92-fe4c-4826-b51e-8cd203fa5d35\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Logic Apps should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Logic Apps\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Logic/workflows\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/34f95f76-5386-4de7-b824-0d8478470c9d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34f95f76-5386-4de7-b824-0d8478470c9d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1210 - Configuration Settings\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1210\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3502c968-c490-4570-8167-1476f955e9b8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3502c968-c490-4570-8167-1476f955e9b8\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not have a maximum password age of 70 days\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not have a maximum password age of 70 days. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MaximumPasswordAge\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"MaximumPasswordAge\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/356a906e-05e5-4625-8729-90771e0ee934\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"356a906e-05e5-4625-8729-90771e0ee934\"},{\"properties\":{\"displayName\":\"CORS should not allow every resource to access your API App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Cross-Origin Resource Sharing (CORS) should not allow all domains to access your API app. Allow only required domains to interact with your API app.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.cors.allowedOrigins[*]\",\"notEquals\":\"*\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/358c20a6-3f9e-4f0e-97ff-c6ce485e2aac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"358c20a6-3f9e-4f0e-97ff-c6ce485e2aac\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1659 - Architecture And Provisioning For Name / Address Resolution Service\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1659\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/35a4102f-a778-4a2e-98c2-971056288df8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"35a4102f-a778-4a2e-98c2-971056288df8\"},{\"properties\":{\"displayName\":\"Gateway subnets should not be configured with a network security group\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy denies if a gateway subnet is configured with a network security group. Assigning a network security group to a gateway subnet will cause the gateway to stop functioning.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"field\":\"name\",\"equals\":\"GatewaySubnet\"},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"exists\":\"true\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/35f9c03a-cc27-418e-9c0c-539ff999d010\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"35f9c03a-cc27-418e-9c0c-539ff999d010\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1043 - Least Privilege | Prohibit Non-Privileged Users From Executing Privileged Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1043\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/361a77f6-0f9c-4748-8eec-bc13aaaa2455\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"361a77f6-0f9c-4748-8eec-bc13aaaa2455\"},{\"properties\":{\"displayName\":\"Deploy Advanced Threat Protection on Storage Accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables Advanced Threat Protection on Storage Accounts.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Storage\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/advancedThreatProtectionSettings\",\"name\":\"current\",\"existenceCondition\":{\"field\":\"Microsoft.Security/advancedThreatProtectionSettings/isEnabled\",\"equals\":\"true\"},\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2019-01-01\",\"type\":\"Microsoft.Storage/storageAccounts/providers/advancedThreatProtectionSettings\",\"name\":\"[concat(parameters('storageAccountName'), '/Microsoft.Security/current')]\",\"properties\":{\"isEnabled\":true}}]},\"parameters\":{\"storageAccountName\":{\"value\":\"[field('name')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/361c2074-3595-4e5d-8cab-4f21dffc835c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"361c2074-3595-4e5d-8cab-4f21dffc835c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1313 - Identifier Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1313\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/36220f5b-79a1-4cdb-8c74-2d2449f9a510\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"36220f5b-79a1-4cdb-8c74-2d2449f9a510\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1630 - Boundary Protection | External Telecommunications Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1630\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3643717a-3897-4bfd-8530-c7c96b26b2a0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3643717a-3897-4bfd-8530-c7c96b26b2a0\"},{\"properties\":{\"displayName\":\"Automation account variables should be encrypted\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"It is important to enable encryption of Automation account variable assets when storing sensitive data\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Automation\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Automation/automationAccounts/variables\"},{\"field\":\"Microsoft.Automation/automationAccounts/variables/isEncrypted\",\"notEquals\":\"true\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3657f5a0-770e-44a3-b44e-9431ba1e9735\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3657f5a0-770e-44a3-b44e-9431ba1e9735\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1339 - Authenticator Management | Protection Of Authenticators\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1339\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/367ae386-db7f-4167-b672-984ff86277c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"367ae386-db7f-4167-b672-984ff86277c0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1685 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1685\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/36b0ef30-366f-4b1b-8652-a3511df11f53\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"36b0ef30-366f-4b1b-8652-a3511df11f53\"},{\"properties\":{\"displayName\":\"Deploy Threat Detection on SQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy ensures that Threat Detection is enabled on SQL Servers.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"Default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/securityAlertPolicies.state\",\"equals\":\"Enabled\"},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"serverName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"name\":\"[concat(parameters('serverName'), '/Default')]\",\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"apiVersion\":\"2017-03-01-preview\",\"properties\":{\"state\":\"Enabled\",\"emailAccountAdmins\":true}}]},\"parameters\":{\"serverName\":{\"value\":\"[field('name')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/36d49e87-48c4-4f2e-beed-ba4ed02b71f5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"36d49e87-48c4-4f2e-beed-ba4ed02b71f5\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Network Security'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Network Security'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"NetworkSecurityConfigureEncryptionTypesAllowedForKerberos\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network Security: Configure encryption types allowed for Kerberos\",\"description\":\"Specifies the encryption types that Kerberos is allowed to use.\"},\"defaultValue\":\"2147483644\"},\"NetworkSecurityLANManagerAuthenticationLevel\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network security: LAN Manager authentication level\",\"description\":\"Specify which challenge-response authentication protocol is used for network logons. This choice affects the level of authentication protocol used by clients, the level of session security negotiated, and the level of authentication accepted by servers.\"},\"defaultValue\":\"5\"},\"NetworkSecurityLDAPClientSigningRequirements\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network security: LDAP client signing requirements\",\"description\":\"Specify the level of data signing that is requested on behalf of clients that issue LDAP BIND requests.\"},\"defaultValue\":\"1\"},\"NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network security: Minimum session security for NTLM SSP based (including secure RPC) clients\",\"description\":\"Specifies which behaviors are allowed by clients for applications using the NTLM Security Support Provider (SSP). The SSP Interface (SSPI) is used by applications that need authentication services. See https://docs.microsoft.com/en-us/windows/security/threat-protection/security-policy-settings/network-security-minimum-session-security-for-ntlm-ssp-based-including-secure-rpc-servers for more information.\"},\"defaultValue\":\"537395200\"},\"NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network security: Minimum session security for NTLM SSP based (including secure RPC) servers\",\"description\":\"Specifies which behaviors are allowed by servers for applications using the NTLM Security Support Provider (SSP). The SSP Interface (SSPI) is used by applications that need authentication services.\"},\"defaultValue\":\"537395200\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsNetworkSecurity\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Network Security: Configure encryption types allowed for Kerberos;ExpectedValue', '=', parameters('NetworkSecurityConfigureEncryptionTypesAllowedForKerberos'), ',', 'Network security: LAN Manager authentication level;ExpectedValue', '=', parameters('NetworkSecurityLANManagerAuthenticationLevel'), ',', 'Network security: LDAP client signing requirements;ExpectedValue', '=', parameters('NetworkSecurityLDAPClientSigningRequirements'), ',', 'Network security: Minimum session security for NTLM SSP based (including secure RPC) clients;ExpectedValue', '=', parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients'), ',', 'Network security: Minimum session security for NTLM SSP based (including secure RPC) servers;ExpectedValue', '=', parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsNetworkSecurity\"},\"NetworkSecurityConfigureEncryptionTypesAllowedForKerberos\":{\"value\":\"[parameters('NetworkSecurityConfigureEncryptionTypesAllowedForKerberos')]\"},\"NetworkSecurityLANManagerAuthenticationLevel\":{\"value\":\"[parameters('NetworkSecurityLANManagerAuthenticationLevel')]\"},\"NetworkSecurityLDAPClientSigningRequirements\":{\"value\":\"[parameters('NetworkSecurityLDAPClientSigningRequirements')]\"},\"NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients\":{\"value\":\"[parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients')]\"},\"NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers\":{\"value\":\"[parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"NetworkSecurityConfigureEncryptionTypesAllowedForKerberos\":{\"type\":\"string\"},\"NetworkSecurityLANManagerAuthenticationLevel\":{\"type\":\"string\"},\"NetworkSecurityLDAPClientSigningRequirements\":{\"type\":\"string\"},\"NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients\":{\"type\":\"string\"},\"NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Network Security: Configure encryption types allowed for Kerberos;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityConfigureEncryptionTypesAllowedForKerberos')]\"},{\"name\":\"Network security: LAN Manager authentication level;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityLANManagerAuthenticationLevel')]\"},{\"name\":\"Network security: LDAP client signing requirements;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityLDAPClientSigningRequirements')]\"},{\"name\":\"Network security: Minimum session security for NTLM SSP based (including secure RPC) clients;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients')]\"},{\"name\":\"Network security: Minimum session security for NTLM SSP based (including secure RPC) servers;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Network Security: Configure encryption types allowed for Kerberos;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityConfigureEncryptionTypesAllowedForKerberos')]\"},{\"name\":\"Network security: LAN Manager authentication level;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityLANManagerAuthenticationLevel')]\"},{\"name\":\"Network security: LDAP client signing requirements;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityLDAPClientSigningRequirements')]\"},{\"name\":\"Network security: Minimum session security for NTLM SSP based (including secure RPC) clients;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients')]\"},{\"name\":\"Network security: Minimum session security for NTLM SSP based (including secure RPC) servers;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/36e17963-7202-494a-80c3-f508211c826b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"36e17963-7202-494a-80c3-f508211c826b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1557 - Vulnerability Scanning | Review Historic Audit Logs\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1557\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/36fbe499-f2f2-41b6-880e-52d7ea1d94a5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"36fbe499-f2f2-41b6-880e-52d7ea1d94a5\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Interactive Logon'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Interactive Logon'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsInteractiveLogon\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsInteractiveLogon\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3750712b-43d0-478e-9966-d2c26f6141b9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3750712b-43d0-478e-9966-d2c26f6141b9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1624 - Boundary Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1624\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/37d079e3-d6aa-4263-a069-dd7ac6dd9684\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"37d079e3-d6aa-4263-a069-dd7ac6dd9684\"},{\"properties\":{\"displayName\":\"Storage accounts should be migrated to new Azure Resource Manager resources\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use new Azure Resource Manager for your storage accounts to provide security enhancements such as: stronger access control (RBAC), better auditing, Azure Resource Manager based deployment and governance, access to managed identities, access to key vault for secrets, Azure AD-based authentication and support for tags and resource groups for easier security management\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Storage\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.ClassicStorage/storageAccounts\",\"Microsoft.Storage/StorageAccounts\"]},{\"value\":\"[field('type')]\",\"equals\":\"Microsoft.ClassicStorage/storageAccounts\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/37e0d2fe-28a5-43d6-a273-67d37d1f5606\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"37e0d2fe-28a5-43d6-a273-67d37d1f5606\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1335 - Authenticator Management | Pki-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1335\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/382016f3-d4ba-4e15-9716-55077ec4dc2a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"382016f3-d4ba-4e15-9716-55077ec4dc2a\"},{\"properties\":{\"displayName\":\"Diagnostic logs in IoT Hub should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Internet of Things\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Devices/IotHubs\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"not\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"}},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/383856f8-de7f-44a2-81fc-e5135b5c2aa4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"383856f8-de7f-44a2-81fc-e5135b5c2aa4\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy the Windows Guest Configuration extension to enable Guest Configuration assignments on Windows virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Windows Guest Configuration extension to Windows virtual machines hosted in Azure that are supported by Guest Configuration. The Windows Guest Configuration extension is a prerequisite for all Windows Guest Configuration assignments and must deployed to machines before using any Windows Guest Configuration policy definition. For more information on Guest Configuration, visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.0.0-preview\",\"preview\":true},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"AzurePolicyforWindows\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.GuestConfiguration\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"ConfigurationforWindows\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/385f5831-96d4-41db-9a3c-cd3af78aaae6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"385f5831-96d4-41db-9a3c-cd3af78aaae6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1081 - Information Sharing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1081\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3867f2a9-23bb-4729-851f-c3ad98580caf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3867f2a9-23bb-4729-851f-c3ad98580caf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1522 - Personnel Transfer\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1522\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/38b470cc-f939-4a15-80e0-9f0c74f2e2c9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"38b470cc-f939-4a15-80e0-9f0c74f2e2c9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1416 - Nonlocal Maintenance | Document Nonlocal Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1416\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/38dfd8a3-5290-4099-88b7-4081f4c4d8ae\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"38dfd8a3-5290-4099-88b7-4081f4c4d8ae\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1397 - Controlled Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1397\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/391af4ab-1117-46b9-b2c7-78bbd5cd995b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"391af4ab-1117-46b9-b2c7-78bbd5cd995b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1556 - Vulnerability Scanning | Automated Trend Analyses\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1556\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/391ff8b3-afed-405e-9f7d-ef2f8168d5da\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"391ff8b3-afed-405e-9f7d-ef2f8168d5da\"},{\"properties\":{\"displayName\":\"[Deprecated]: Advanced data security settings for SQL Managed Instance should contain an email address to receive security alerts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Ensure that an email address is provided for the 'Send alerts to' field in the advanced data security settings. This email address receives alert notifications when anomalous activities are detected on SQL Managed Instance.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/managedInstances/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Sql/managedInstances/securityAlertPolicies/emailAddresses[*]\",\"notEquals\":\"\"},{\"field\":\"Microsoft.Sql/managedInstances/securityAlertPolicies/emailAddresses[*]\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3965c43d-b5f4-482e-b74a-d89ee0e0b3a8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3965c43d-b5f4-482e-b74a-d89ee0e0b3a8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1232 - Configuration Management Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1232\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/396ba986-eac1-4d6d-85c4-d3fda6b78272\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"396ba986-eac1-4d6d-85c4-d3fda6b78272\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1246 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1246\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/398eb61e-8111-40d5-a0c9-003df28f1753\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"398eb61e-8111-40d5-a0c9-003df28f1753\"},{\"properties\":{\"displayName\":\"FTPS only should be required in your Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Enable FTPS enforcement for enhanced security\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/ftpsState\",\"in\":[\"FtpsOnly\",\"Disabled\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/399b2637-a50f-4f95-96f8-3a145476eb15\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"399b2637-a50f-4f95-96f8-3a145476eb15\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1680 - Malicious Code Protection | Central Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1680\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/399cd6ee-0e18-41db-9dea-cde3bd712f38\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"399cd6ee-0e18-41db-9dea-cde3bd712f38\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1228 - Information System Component Inventory | Accountability Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1228\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/39c54140-5902-4079-8bb5-ad31936fe764\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"39c54140-5902-4079-8bb5-ad31936fe764\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1039 - Least Privilege | Review Of User Privileges\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1039\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3a7b9de4-a8a2-4672-914d-c5f6752aa7f9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3a7b9de4-a8a2-4672-914d-c5f6752aa7f9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1648 - Collaborative Computing Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1648\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3a9eb14b-495a-4ebb-933c-ce4ef5264e32\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3a9eb14b-495a-4ebb-933c-ce4ef5264e32\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1315 - Identifier Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1315\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3aa87116-f1a1-4edb-bfbf-14e036f8d454\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3aa87116-f1a1-4edb-bfbf-14e036f8d454\"},{\"properties\":{\"displayName\":\"[Preview]: Pod Security Policies should be defined on Kubernetes Services\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Define Pod Security Policies to reduce the attack vector by removing unnecessary application privileges. It is recommended to configure Pod Security Policies to only allow pods to access the resources which they have permissions to access.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Security Center\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"anyOf\":[{\"field\":\"Microsoft.ContainerService/managedClusters/enablePodSecurityPolicy\",\"exists\":\"false\"},{\"field\":\"Microsoft.ContainerService/managedClusters/enablePodSecurityPolicy\",\"equals\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3abeb944-26af-43ee-b83d-32aaf060fb94\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3abeb944-26af-43ee-b83d-32aaf060fb94\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1548 - Vulnerability Scanning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1548\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3afe6c78-6124-4d95-b85c-eb8c0c9539cb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3afe6c78-6124-4d95-b85c-eb8c0c9539cb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1266 - Contingency Plan Testing | Alternate Processing Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1266\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3b4a3eb2-c25d-40bf-ad41-5094b6f59cee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3b4a3eb2-c25d-40bf-ad41-5094b6f59cee\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1003 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1003\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3b68b179-3704-4ff7-b51d-7d65374d165d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3b68b179-3704-4ff7-b51d-7d65374d165d\"},{\"properties\":{\"displayName\":\"An activity log alert should exist for specific Security operations\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits specific Security operations with no activity log alerts configured.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"operationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Operation Name\",\"description\":\"Security Operation name for which activity log alert should exist\"},\"allowedValues\":[\"Microsoft.Security/policies/write\",\"Microsoft.Security/securitySolutions/write\",\"Microsoft.Security/securitySolutions/delete\"]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/ActivityLogAlerts\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/enabled\",\"equals\":\"true\"},{\"count\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"category\"},{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].equals\",\"equals\":\"Security\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"operationName\"},{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].equals\",\"equals\":\"[parameters('operationName')]\"}]}]}},\"equals\":2},{\"not\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"category\"}},{\"not\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"operationName\"}}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3b980d31-7904-4bb7-8575-5665739a8052\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3b980d31-7904-4bb7-8575-5665739a8052\"},{\"properties\":{\"displayName\":\"Deploy Dependency agent for Windows virtual machine scale sets\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Dependency agent for Windows virtual machine scale sets if the VM Image (OS) is in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated. Note: if your scale set upgradePolicy is set to Manual, you need to apply the extension to the all virtual machines in the set by calling upgrade on them. In CLI this would be az vmss update-instances.\",\"metadata\":{\"version\":\"1.1.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"DependencyAgentWindows\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"DependencyAgent\",\"vmExtensionPublisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"vmExtensionType\":\"DependencyAgentWindows\",\"vmExtensionTypeHandlerVersion\":\"9.7\"},\"resources\":[{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"apiVersion\":\"2019-12-01\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for: ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3be22e3b-d919-47aa-805e-8985dbeb0ad9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3be22e3b-d919-47aa-805e-8985dbeb0ad9\"},{\"properties\":{\"displayName\":\"PostgreSQL server should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits PostgreSQL servers not configured to use a virtual network service endpoint. For more details, visit https://aka.ms/postgresqlvnet.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/virtualNetworkRules/virtualNetworkSubnetId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3c14b034-bcb6-4905-94e7-5b8e98a47b65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3c14b034-bcb6-4905-94e7-5b8e98a47b65\"},{\"properties\":{\"displayName\":\"Deploy Log Analytics agent for Windows virtual machine scale sets\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Log Analytics agent for Windows virtual machine scale sets if the VM Image (OS) is in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated. Note: if your scale set upgradePolicy is set to Manual, you need to apply the extension to the all VMs in the set by calling upgrade on them. In CLI this would be az vmss update-instances.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"MicrosoftMonitoringAgent\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"MMAExtension\",\"vmExtensionPublisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"vmExtensionType\":\"MicrosoftMonitoringAgent\",\"vmExtensionTypeHandlerVersion\":\"1.0\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2018-06-01\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\",\"stopOnMultipleConnections\":\"true\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for: ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3c1b3629-c8f8-4bf6-862c-037cb9094038\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3c1b3629-c8f8-4bf6-862c-037cb9094038\"},{\"properties\":{\"displayName\":\"Vulnerabilities in security configuration on your virtual machine scale sets should be remediated\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit the OS vulnerabilities on your virtual machine scale sets to protect them from attacks.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"OsVulnerabilities\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3c735d8a-a4ba-4a3a-b7cf-db7754cf57f4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3c735d8a-a4ba-4a3a-b7cf-db7754cf57f4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1621 - Resource Availability\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1621\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3cb9f731-744a-4691-a481-ca77b0411538\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3cb9f731-744a-4691-a481-ca77b0411538\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1521 - Personnel Termination | Automated Notification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1521\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3cbddf9c-a3aa-4330-a0f5-4c0c1f1862e5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3cbddf9c-a3aa-4330-a0f5-4c0c1f1862e5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1127 - Time Stamps\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1127\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3ce328db-aef3-48ed-9f81-2ab7cf839c66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3ce328db-aef3-48ed-9f81-2ab7cf839c66\"},{\"properties\":{\"displayName\":\"[Preview]: Add system-assigned managed identity to enable Guest Configuration assignments on virtual machines with no identities\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy adds a system-assigned managed identity to virtual machines hosted in Azure that are supported by Guest Configuration but do not have any managed identities. A system-assigned managed identity is a prerequisite for all Guest Configuration assignments and must be added to machines before using any Guest Configuration policy definitions. For more information on Guest Configuration, visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.0.0-preview\",\"preview\":true},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"value\":\"[requestContext().apiVersion]\",\"greaterOrEquals\":\"2018-10-01\"},{\"anyOf\":[{\"field\":\"identity.type\",\"exists\":\"false\"},{\"field\":\"identity.type\",\"equals\":\"None\"}]}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"addOrReplace\",\"field\":\"identity.type\",\"value\":\"SystemAssigned\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3cf2ab00-13f1-4d0c-8971-2ac904541a7e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3cf2ab00-13f1-4d0c-8971-2ac904541a7e\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Search Services to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Search Services to stream to a regional Event Hub when any Search Services which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Search Services in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Search/searchServices\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Search/searchServices/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"OperationLogs\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3d5da587-71bd-41f5-ac95-dd3330c2d58d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3d5da587-71bd-41f5-ac95-dd3330c2d58d\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Devices'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Devices'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsDevices\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3d7b154e-2700-4c8c-9e46-cb65ac1578c2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3d7b154e-2700-4c8c-9e46-cb65ac1578c2\"},{\"properties\":{\"displayName\":\"[Deprecated]: Deploy default Log Analytics Agent for Ubuntu VMs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Log Analytics Agent on Ubuntu VMs, and connects to the selected Log Analytics workspace\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Compute\",\"deprecated\":true},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"18.04-LTS\",\"16.04-LTS\",\"16.04.0-LTS\",\"14.04.2-LTS\",\"12.04.5-LTS\"]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"OmsAgentForLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"resources\":[{\"name\":\"[concat(parameters('vmName'),'/omsPolicy')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2017-12-01\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"type\":\"OmsAgentForLinux\",\"typeHandlerVersion\":\"1.4\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled monitoring for Linux VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3d8640fc-63f6-4734-8dcb-cfd3d8c78f38\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3d8640fc-63f6-4734-8dcb-cfd3d8c78f38\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1385 - Information Spillage Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1385\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3e495e65-8663-49ca-9b38-9f45e800bc58\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3e495e65-8663-49ca-9b38-9f45e800bc58\"},{\"properties\":{\"displayName\":\"Azure Monitor solution 'Security and Audit' must be deployed\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy ensures that Security and Audit is deployed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.OperationsManagement/solutions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.OperationsManagement/solutions/provisioningState\",\"equals\":\"Succeeded\"},{\"field\":\"name\",\"like\":\"Security(*)\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3e596b57-105f-48a6-be97-03e9243bad6e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3e596b57-105f-48a6-be97-03e9243bad6e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1160 - Security Authorization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1160\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3e797ca6-2aa8-4333-b335-7036f1110c05\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3e797ca6-2aa8-4333-b335-7036f1110c05\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1545 - Risk Assessment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1545\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3f4b171a-a56b-4328-8112-32cf7f947ee1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3f4b171a-a56b-4328-8112-32cf7f947ee1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1179 - Baseline Configuration | Reviews And Updates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1179\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3f9ce557-c8ab-4e6c-bb2c-9b8ed002c46c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3f9ce557-c8ab-4e6c-bb2c-9b8ed002c46c\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit API Applications that are not using latest supported PHP Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported PHP version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestPHP\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3fe37002-5d00-4b37-a301-da09e3a0ca66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3fe37002-5d00-4b37-a301-da09e3a0ca66\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1561 - Allocation Of Resources\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1561\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/40364c3f-c331-4e29-b1e3-2fbe998ba2f5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"40364c3f-c331-4e29-b1e3-2fbe998ba2f5\"},{\"properties\":{\"displayName\":\"Secure transfer to storage accounts should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit requirement of Secure transfer in your storage account. Secure transfer is an option that forces your storage account to accept requests only from secure connections (HTTPS). Use of HTTPS ensures authentication between the server and the service and protects data in transit from network layer attacks such as man-in-the-middle, eavesdropping, and session-hijacking\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Storage\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"anyOf\":[{\"allOf\":[{\"value\":\"[requestContext().apiVersion]\",\"less\":\"2019-04-01\"},{\"field\":\"Microsoft.Storage/storageAccounts/supportsHttpsTrafficOnly\",\"exists\":\"false\"}]},{\"field\":\"Microsoft.Storage/storageAccounts/supportsHttpsTrafficOnly\",\"equals\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"404c3081-a854-4457-ae30-26a93ef643f9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1100 - Audit And Accountability Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1100\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4057863c-ca7d-47eb-b1e0-503580cba8a4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4057863c-ca7d-47eb-b1e0-503580cba8a4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1637 - Boundary Protection | Fail Secure\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1637\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4075bedc-c62a-4635-bede-a01be89807f3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4075bedc-c62a-4635-bede-a01be89807f3\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Administrative Templates - System'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - System'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AlwaysUseClassicLogon\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Always use classic logon\",\"description\":\"Specifies whether to force the user to log on to the computer using the classic logon screen. This setting only works when the computer is not on a domain.\"},\"defaultValue\":\"0\"},\"BootStartDriverInitializationPolicy\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Boot-Start Driver Initialization Policy\",\"description\":\"Specifies which boot-start drivers are initialized based on a classification determined by an Early Launch Antimalware boot-start driver.\"},\"defaultValue\":\"3\"},\"EnableWindowsNTPClient\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable Windows NTP Client\",\"description\":\"Specifies whether the Windows NTP Client is enabled. Enabling the Windows NTP Client allows your computer to synchronize its computer clock with other NTP servers.\"},\"defaultValue\":\"1\"},\"TurnOnConveniencePINSignin\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Turn on convenience PIN sign-in\",\"description\":\"Specifies whether a domain user can sign in using a convenience PIN.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdministrativeTemplatesSystem\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Always use classic logon;ExpectedValue', '=', parameters('AlwaysUseClassicLogon'), ',', 'Boot-Start Driver Initialization Policy;ExpectedValue', '=', parameters('BootStartDriverInitializationPolicy'), ',', 'Enable Windows NTP Client;ExpectedValue', '=', parameters('EnableWindowsNTPClient'), ',', 'Turn on convenience PIN sign-in;ExpectedValue', '=', parameters('TurnOnConveniencePINSignin')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_AdministrativeTemplatesSystem\"},\"AlwaysUseClassicLogon\":{\"value\":\"[parameters('AlwaysUseClassicLogon')]\"},\"BootStartDriverInitializationPolicy\":{\"value\":\"[parameters('BootStartDriverInitializationPolicy')]\"},\"EnableWindowsNTPClient\":{\"value\":\"[parameters('EnableWindowsNTPClient')]\"},\"TurnOnConveniencePINSignin\":{\"value\":\"[parameters('TurnOnConveniencePINSignin')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AlwaysUseClassicLogon\":{\"type\":\"string\"},\"BootStartDriverInitializationPolicy\":{\"type\":\"string\"},\"EnableWindowsNTPClient\":{\"type\":\"string\"},\"TurnOnConveniencePINSignin\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Always use classic logon;ExpectedValue\",\"value\":\"[parameters('AlwaysUseClassicLogon')]\"},{\"name\":\"Boot-Start Driver Initialization Policy;ExpectedValue\",\"value\":\"[parameters('BootStartDriverInitializationPolicy')]\"},{\"name\":\"Enable Windows NTP Client;ExpectedValue\",\"value\":\"[parameters('EnableWindowsNTPClient')]\"},{\"name\":\"Turn on convenience PIN sign-in;ExpectedValue\",\"value\":\"[parameters('TurnOnConveniencePINSignin')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Always use classic logon;ExpectedValue\",\"value\":\"[parameters('AlwaysUseClassicLogon')]\"},{\"name\":\"Boot-Start Driver Initialization Policy;ExpectedValue\",\"value\":\"[parameters('BootStartDriverInitializationPolicy')]\"},{\"name\":\"Enable Windows NTP Client;ExpectedValue\",\"value\":\"[parameters('EnableWindowsNTPClient')]\"},{\"name\":\"Turn on convenience PIN sign-in;ExpectedValue\",\"value\":\"[parameters('TurnOnConveniencePINSignin')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/40917425-69db-4018-8dae-2a0556cef899\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"40917425-69db-4018-8dae-2a0556cef899\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1202 - Access Restrictions For Change\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1202\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/40a2a83b-74f2-4c02-ae65-f460a5d2792a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"40a2a83b-74f2-4c02-ae65-f460a5d2792a\"},{\"properties\":{\"displayName\":\"Inherit a tag from the subscription if missing\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Adds the specified tag with its value from the containing subscription when any resource missing this tag is created or updated. Existing resources can be remediated by triggering a remediation task. If the tag exists with a different value it will not be changed.\",\"metadata\":{\"category\":\"Tags\",\"version\":\"1.0.0\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[subscription().tags[parameters('tagName')]]\",\"notEquals\":\"\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"add\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[subscription().tags[parameters('tagName')]]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/40df99da-1232-49b1-a39a-6da8d878f469\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"40df99da-1232-49b1-a39a-6da8d878f469\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1438 - Media Sanitization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1438\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/40fcc635-52a2-4dbc-9523-80a1f4aa1de6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"40fcc635-52a2-4dbc-9523-80a1f4aa1de6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1365 - Incident Handling | Continuity Of Operations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1365\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4116891d-72f7-46ee-911c-8056cc8dcbd5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4116891d-72f7-46ee-911c-8056cc8dcbd5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1022 - Account Management | Shared / Group Account Credential Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1022\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/411f7e2d-9a0b-4627-a0b9-1700432db47d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"411f7e2d-9a0b-4627-a0b9-1700432db47d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1464 - Monitoring Physical Access | Intrusion Alarms / Surveillance Equipment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1464\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/41256567-1795-4684-b00b-a1308ce43cac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"41256567-1795-4684-b00b-a1308ce43cac\"},{\"properties\":{\"displayName\":\"Azure Monitor should collect activity logs from all regions\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits the Azure Monitor log profile which does not export activities from all Azure supported regions including global.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/logProfiles\",\"existenceCondition\":{\"allOf\":[{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"australiacentral\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"australiacentral2\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"australiaeast\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"australiasoutheast\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"brazilsouth\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"canadacentral\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"canadaeast\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"centralindia\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"centralus\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"eastasia\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"eastus\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"eastus2\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"francecentral\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"francesouth\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"japaneast\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"japanwest\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"koreacentral\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"koreasouth\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"northcentralus\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"northeurope\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"southafricanorth\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"southafricawest\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"southcentralus\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"southindia\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"southeastasia\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"uaecentral\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"uaenorth\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"uksouth\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"ukwest\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"westcentralus\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"westeurope\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"westindia\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"westus\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"westus2\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"global\"}}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/41388f1c-2db0-4c25-95b2-35d7f5ccbfa9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"41388f1c-2db0-4c25-95b2-35d7f5ccbfa9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1263 - Contingency Plan Testing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1263\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/41472613-3b05-49f6-8fe8-525af113ce17\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"41472613-3b05-49f6-8fe8-525af113ce17\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1096 - Role-Based Security Training | Practical Exercises\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1096\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/420c1477-aa43-49d0-bd7e-c4abdd9addff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"420c1477-aa43-49d0-bd7e-c4abdd9addff\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1260 - Contingency Training | Simulated Events\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1260\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/42254fc4-2738-4128-9613-72aaa4f0d9c3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"42254fc4-2738-4128-9613-72aaa4f0d9c3\"},{\"properties\":{\"displayName\":\"Web Application Firewall (WAF) should use the specified mode for Azure Front Door Service\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Mandates the use of 'Detection' or 'Prevention' mode to be active on all Web Application Firewall policies for Azure Front Door Service.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"modeRequirement\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Mode Requirement\",\"description\":\"Mode required for all WAF policies\"},\"allowedValues\":[\"Prevention\",\"Detection\"],\"defaultValue\":\"Detection\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\"},{\"field\":\"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/policySettings.mode\",\"notEquals\":\"[parameters('modeRequirement')]\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/425bea59-a659-4cbb-8d31-34499bd030b8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"425bea59-a659-4cbb-8d31-34499bd030b8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1694 - Information System Monitoring | Analyze Communications Traffic Anomalies\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1694\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/426c4ac9-ff17-49d0-acd7-a13c157081c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"426c4ac9-ff17-49d0-acd7-a13c157081c0\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Batch accounts should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Batch\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/428256e6-1fac-4f48-a757-df34c2b3336d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"428256e6-1fac-4f48-a757-df34c2b3336d\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Detailed Tracking'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Detailed Tracking'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditProcessTermination\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Process Termination\",\"description\":\"Specifies whether audit events are generated when a process has exited. Recommended for monitoring termination of critical processes.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"No Auditing\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesDetailedTracking\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit Process Termination;ExpectedValue', '=', parameters('AuditProcessTermination')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesDetailedTracking\"},\"AuditProcessTermination\":{\"value\":\"[parameters('AuditProcessTermination')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditProcessTermination\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Process Termination;ExpectedValue\",\"value\":\"[parameters('AuditProcessTermination')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Process Termination;ExpectedValue\",\"value\":\"[parameters('AuditProcessTermination')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/42a07bbf-ffcf-459a-b4b1-30ecd118a505\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"42a07bbf-ffcf-459a-b4b1-30ecd118a505\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1174 - Configuration Management Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1174\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/42a9a714-8fbb-43ac-b115-ea12d2bd652f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"42a9a714-8fbb-43ac-b115-ea12d2bd652f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1137 - Audit Generation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1137\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4344df62-88ab-4637-b97b-bcaf2ec97e7c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4344df62-88ab-4637-b97b-bcaf2ec97e7c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1367 - Incident Handling | Insider Threats - Specific Capabilities\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1367\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/435b2547-6374-4f87-b42d-6e8dbe6ae62a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"435b2547-6374-4f87-b42d-6e8dbe6ae62a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1552 - Vulnerability Scanning | Update By Frequency / Prior To New Scan / When Identified\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1552\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/43684572-e4f1-4642-af35-6b933bc506da\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"43684572-e4f1-4642-af35-6b933bc506da\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - System settings'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - System settings'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"System settings: Use Certificate Rules on Windows Executables for Software Restriction Policies\",\"description\":\"Specifies whether digital certificates are processed when software restriction policies are enabled and a user or process attempts to run software with an .exe file name extension. It enables or disables certificate rules (a type of software restriction policies rule). For certificate rules to take effect in software restriction policies, you must enable this policy setting.\"},\"defaultValue\":\"1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsSystemsettings\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('System settings: Use Certificate Rules on Windows Executables for Software Restriction Policies;ExpectedValue', '=', parameters('SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsSystemsettings\"},\"SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies\":{\"value\":\"[parameters('SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"System settings: Use Certificate Rules on Windows Executables for Software Restriction Policies;ExpectedValue\",\"value\":\"[parameters('SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"System settings: Use Certificate Rules on Windows Executables for Software Restriction Policies;ExpectedValue\",\"value\":\"[parameters('SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/437a1f8f-8552-47a8-8b12-a2fee3269dd5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"437a1f8f-8552-47a8-8b12-a2fee3269dd5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1544 - Risk Assessment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1544\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/43ced7c9-cd53-456b-b0da-2522649a4271\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"43ced7c9-cd53-456b-b0da-2522649a4271\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1398 - Controlled Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1398\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/443e8f3d-b51a-45d8-95a7-18b0e42f4dc4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"443e8f3d-b51a-45d8-95a7-18b0e42f4dc4\"},{\"properties\":{\"displayName\":\"[Deprecated]: Monitor permissive network access in Azure Security Center\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Network Security Groups with too permissive rules will be monitored by Azure Security Center as recommendations\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"permissiveNetworkAccess\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/44452482-524f-4bf4-b852-0bff7cc4a3ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"44452482-524f-4bf4-b852-0bff7cc4a3ed\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1066 - Remote Access | Disconnect / Disable Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1066\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4455c2e8-c65d-4acf-895e-304916f90b36\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4455c2e8-c65d-4acf-895e-304916f90b36\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1720 - Spam Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1720\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/44b9a7cd-f36a-491a-a48b-6d04ae7c4221\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"44b9a7cd-f36a-491a-a48b-6d04ae7c4221\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1334 - Authenticator Management | Pki-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1334\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/44bfdadc-8c2e-4c30-9c99-f005986fabcd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"44bfdadc-8c2e-4c30-9c99-f005986fabcd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1604 - Developer Security Testing And Evaluation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1604\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/44dbba23-0b61-478e-89c7-b3084667782f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"44dbba23-0b61-478e-89c7-b3084667782f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1712 - Software, Firmware, And Information Integrity\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1712\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/44e543aa-41db-42aa-98eb-8a5eb1db53f0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"44e543aa-41db-42aa-98eb-8a5eb1db53f0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1310 - Device Identification And Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1310\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/450d7ede-823d-4931-a99d-57f6a38807dc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"450d7ede-823d-4931-a99d-57f6a38807dc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1559 - System And Services Acquisition Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1559\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/45692294-f074-42bd-ac54-16f1a3c07554\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"45692294-f074-42bd-ac54-16f1a3c07554\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1578 - Acquisition Process | Functions / Ports / Protocols / Services In Use\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1578\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/45b7b644-5f91-498e-9d89-7402532d3645\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"45b7b644-5f91-498e-9d89-7402532d3645\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1565 - System Development Life Cycle\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1565\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/45ce2396-5c76-4654-9737-f8792ab3d26b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"45ce2396-5c76-4654-9737-f8792ab3d26b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1337 - Authenticator Management | In-Person Or Trusted Third-Party Registration\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1337\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/463e5220-3f79-4e24-a63f-343e4096cd22\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"463e5220-3f79-4e24-a63f-343e4096cd22\"},{\"properties\":{\"displayName\":\"[Deprecated]: Require SQL Server version 12.0\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy ensures all SQL servers use version 12.0. This policy is deprecated because it is no longer possible to create an Azure SQL server with any version other than 12.0.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"not\":{\"field\":\"Microsoft.Sql/servers/version\",\"equals\":\"12.0\"}}]},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/464dbb85-3d5f-4a1d-bb09-95a9b5dd19cf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"464dbb85-3d5f-4a1d-bb09-95a9b5dd19cf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1346 - Identification And Authentication (Non-Organizational Users)\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1346\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/464dc8ce-2200-4720-87a5-dc5952924cc6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"464dc8ce-2200-4720-87a5-dc5952924cc6\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Applications that are not using latest supported Python Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported Python version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestPython\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/46544d7b-1f0d-46f5-81da-5c1351de1b06\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"46544d7b-1f0d-46f5-81da-5c1351de1b06\"},{\"properties\":{\"displayName\":\"Require automatic OS image patching on Virtual Machine Scale Sets\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy enforces enabling automatic OS image patching on Virtual Machine Scale Sets to always keep Virtual Machines secure by safely applying latest security patches every month.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/upgradePolicy.automaticOSUpgradePolicy.enableAutomaticOSUpgrade\",\"notEquals\":\"True\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/upgradePolicy.automaticOSUpgrade\",\"notEquals\":\"True\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/465f0161-0087-490a-9ad9-ad6217f4f43a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"465f0161-0087-490a-9ad9-ad6217f4f43a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1368 - Incident Handling | Correlation With External Organizations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1368\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/465f32da-0ace-4603-8d1b-7be5a3a702de\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"465f32da-0ace-4603-8d1b-7be5a3a702de\"},{\"properties\":{\"displayName\":\"Cognitive Services accounts should use customer owned storage\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Cognitive Services account not using customer owned storage.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cognitive Services\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.CognitiveServices/accounts\"},{\"count\":{\"field\":\"Microsoft.CognitiveServices/accounts/userOwnedStorage[*]\"},\"less\":1}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/46aa9b05-0e60-4eae-a88b-1e9d374fa515\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"46aa9b05-0e60-4eae-a88b-1e9d374fa515\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1062 - Remote Access | Protection Of Confidentiality / Integrity Using Encryption\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1062\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4708723f-e099-4af1-bbf9-b6df7642e444\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4708723f-e099-4af1-bbf9-b6df7642e444\"},{\"properties\":{\"displayName\":\"Azure Cosmos DB key based metadata write access should be disabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables you to ensure all Azure Cosmos DB accounts disable key based metadata write access.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cosmos DB\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DocumentDB/databaseAccounts\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/disableKeyBasedMetadataWriteAccess\",\"notEquals\":true}]},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"Microsoft.DocumentDB/databaseAccounts/disableKeyBasedMetadataWriteAccess\",\"value\":true}]}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4750c32b-89c0-46af-bfcb-2e4541a818d5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4750c32b-89c0-46af-bfcb-2e4541a818d5\"},{\"properties\":{\"displayName\":\"Automatic provisioning of the Log Analytics monitoring agent should be enabled on your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable automatic provisioning of the Log Analytics monitoring agent in order to collect security data\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/autoProvisioningSettings\",\"existenceCondition\":{\"field\":\"Microsoft.Security/autoProvisioningSettings/autoProvision\",\"equals\":\"On\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/475aae12-b88a-4572-8b36-9b712b2b3a17\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"475aae12-b88a-4572-8b36-9b712b2b3a17\"},{\"properties\":{\"displayName\":\"Adaptive application controls for defining safe applications should be enabled on your machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable application controls to define the list of known-safe applications running on your machines, and alert you when other applications run. This helps harden your machines against malware. To simplify the process of configuring and maintaining your rules, Security Center uses machine learning to analyze the applications running on each machine and suggest the list of known-safe applications.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"applicationWhitelisting\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/47a6b606-51aa-4496-8bb7-64b11cf66adc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"47a6b606-51aa-4496-8bb7-64b11cf66adc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1359 - Incident Response Testing | Coordination With Related Plans\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1359\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/47bc7ea0-7d13-4f7c-a154-b903f7194253\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"47bc7ea0-7d13-4f7c-a154-b903f7194253\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1165 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1165\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/47e10916-6c9e-446b-b0bd-ff5fd439d79d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"47e10916-6c9e-446b-b0bd-ff5fd439d79d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1048 - System Use Notification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1048\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/483e7ca9-82b3-45a2-be97-b93163a0deb7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"483e7ca9-82b3-45a2-be97-b93163a0deb7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1033 - Separation Of Duties\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1033\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/48540f01-fc11-411a-b160-42807c68896e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"48540f01-fc11-411a-b160-42807c68896e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1477 - Fire Protection | Detection Devices / Systems\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1477\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4862a63c-6c74-4a9d-a221-89af3c374503\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4862a63c-6c74-4a9d-a221-89af3c374503\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1484 - Water Damage Protection | Automation Support\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1484\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/486b006a-3653-45e8-b41c-a052d3e05456\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"486b006a-3653-45e8-b41c-a052d3e05456\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit IP restrictions configuration for an API App\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"IP Restrictions allow you to define a list of IP addresses that are allowed to access your app. Use of IP Restrictions protects an API app from common attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"ConfigureIPRestrictions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/48893b84-a2c8-4d9a-badf-835d5d1b7d53\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"48893b84-a2c8-4d9a-badf-835d5d1b7d53\"},{\"properties\":{\"displayName\":\"Geo-redundant backup should be enabled for Azure Database for PostgreSQL\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Azure Database for PostgreSQL with geo-redundant backup not enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},{\"field\":\"Microsoft.DBforPostgreSQL/servers/storageProfile.geoRedundantBackup\",\"notEquals\":\"Enabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/48af4db5-9b8b-401c-8e74-076be876a430\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"48af4db5-9b8b-401c-8e74-076be876a430\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1669 - Flaw Remediation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1669\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/48f2f62b-5743-4415-a143-288adc0e078d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"48f2f62b-5743-4415-a143-288adc0e078d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1376 - Incident Response Assistance | Coordination With External Providers\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1376\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/493a95f3-f2e3-47d0-af02-65e6d6decc2f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"493a95f3-f2e3-47d0-af02-65e6d6decc2f\"},{\"properties\":{\"displayName\":\"Ensure that 'Java version' is the latest, if used as a part of the Web app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for Java software either due to security flaws or to include additional functionality. Using the latest Java version for web apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"JavaLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Latest Java version\",\"description\":\"Latest supported Java version for App Services\"},\"defaultValue\":\"11\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"JAVA\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"like\":\"[concat('*', parameters('JavaLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"like\":\"[concat(parameters('JavaLatestVersion'), '*')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/496223c3-ad65-4ecd-878a-bae78737e9ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"496223c3-ad65-4ecd-878a-bae78737e9ed\"},{\"properties\":{\"displayName\":\"[Preview]: Add system-assigned managed identity to enable Guest Configuration assignments on virtual machines with a user-assigned identity\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy adds a system-assigned managed identity to virtual machines hosted in Azure that are supported by Guest Configuration and have at least one user-assigned identity but do not have a system-assigned managed identity. A system-assigned managed identity is a prerequisite for all Guest Configuration assignments and must be added to machines before using any Guest Configuration policy definitions. For more information on Guest Configuration, visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.0.0-preview\",\"preview\":true},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"value\":\"[requestContext().apiVersion]\",\"greaterOrEquals\":\"2018-10-01\"},{\"field\":\"identity.type\",\"contains\":\"UserAssigned\"},{\"field\":\"identity.type\",\"notContains\":\"SystemAssigned\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"addOrReplace\",\"field\":\"identity.type\",\"value\":\"[concat(field('identity.type'), ',SystemAssigned')]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/497dff13-db2a-4c0f-8603-28fa3b331ab6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"497dff13-db2a-4c0f-8603-28fa3b331ab6\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Audit'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Audit'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit: Shut down system immediately if unable to log security audits\",\"description\":\"Audits if the system will shut down when unable to log Security events.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsAudit\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit: Shut down system immediately if unable to log security audits;ExpectedValue', '=', parameters('AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsAudit\"},\"AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits\":{\"value\":\"[parameters('AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit: Shut down system immediately if unable to log security audits;ExpectedValue\",\"value\":\"[parameters('AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit: Shut down system immediately if unable to log security audits;ExpectedValue\",\"value\":\"[parameters('AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/498b810c-59cd-4222-9338-352ba146ccf3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"498b810c-59cd-4222-9338-352ba146ccf3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1329 - Authenticator Management | Password-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1329\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/498f6234-3e20-4b6a-a880-cbd646d973bd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"498f6234-3e20-4b6a-a880-cbd646d973bd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1638 - Boundary Protection | Dynamic Isolation / Segregation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1638\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/49b99653-32cd-405d-a135-e7d60a9aae1f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"49b99653-32cd-405d-a135-e7d60a9aae1f\"},{\"properties\":{\"displayName\":\"Append a tag and its value to resource groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Appends the specified tag and value when any resource group which is missing this tag is created or updated. Does not modify the tags of resource groups created before this policy was applied until those resource groups are changed. New 'modify' effect policies are available that support remediation of tags on existing resources (see https://aka.ms/modifydoc).\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions/resourceGroups\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[parameters('tagValue')]\"}]}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/49c88fc8-6fd1-46fd-a676-f12d1d3a4c71\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"49c88fc8-6fd1-46fd-a676-f12d1d3a4c71\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1294 - Information System Backup | Transfer To Alternate Storage Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1294\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/49dbe627-2c1e-438c-979e-dd7a39bbf81d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"49dbe627-2c1e-438c-979e-dd7a39bbf81d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1218 - Least Functionality | Prevent Program Execution\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1218\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4a1d0394-b9f5-493e-9e83-563fd0ac4df8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4a1d0394-b9f5-493e-9e83-563fd0ac4df8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1677 - Malicious Code Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1677\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4a248e1e-040f-43e5-bff2-afc3a57a3923\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4a248e1e-040f-43e5-bff2-afc3a57a3923\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1094 - Role-Based Security Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1094\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4b1853e0-8973-446b-b567-09d901d31a09\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4b1853e0-8973-446b-b567-09d901d31a09\"},{\"properties\":{\"displayName\":\"Azure Event Grid topics should use private links\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Azure Event Grid topics that do not have at least one approved private endpoint connection. Clients in a virtual network can securely access resources that have private endpoint connections via private links. For more information, visit https://aka.ms/privateendpoints.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Event Grid\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.EventGrid/topics\"},{\"count\":{\"field\":\"Microsoft.EventGrid/topics/privateEndpointConnections[*]\",\"where\":{\"field\":\"Microsoft.EventGrid/topics/privateEndpointConnections[*].privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}},\"less\":1}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4b90e17e-8448-49db-875e-bd83fb6f804f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4b90e17e-8448-49db-875e-bd83fb6f804f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1114 - Response To Audit Processing Failures | Real-Time Alerts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1114\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4c090801-59bc-4454-bb33-e0455133486a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4c090801-59bc-4454-bb33-e0455133486a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1364 - Incident Handling | Dynamic Reconfiguration\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1364\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4c615c2a-dc83-4dda-8220-abce7b50c9bc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4c615c2a-dc83-4dda-8220-abce7b50c9bc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1661 - Session Authenticity | Invalidate Session Identifiers At Logout\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1661\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4c643c9a-1be7-4016-a5e7-e4bada052920\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4c643c9a-1be7-4016-a5e7-e4bada052920\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1373 - Incident Reporting | Automated Reporting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1373\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4cca950f-c3b7-492a-8e8f-ea39663c14f9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4cca950f-c3b7-492a-8e8f-ea39663c14f9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1632 - Boundary Protection | Prevent Split Tunneling For Remote Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1632\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4ce9073a-77fa-48f0-96b1-87aa8e6091c2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4ce9073a-77fa-48f0-96b1-87aa8e6091c2\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Linux VMs that do not have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Linux virtual machines that do not have the specified applications installed. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"ApplicationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Application names\",\"description\":\"A semicolon-separated list of the names of the applications that should be installed. e.g. 'python; powershell'\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"installed_application_linux\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[ChefInSpec]InstalledApplicationLinuxResource1;AttributesYmlContent', '=', concat('packages: [', replace(parameters('ApplicationName'), ';', ','), ']')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"installed_application_linux\"},\"ApplicationName\":{\"value\":\"[parameters('ApplicationName')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"ApplicationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[ChefInSpec]InstalledApplicationLinuxResource1;AttributesYmlContent\",\"value\":\"[concat('packages: [', replace(parameters('ApplicationName'), ';', ','), ']')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[ChefInSpec]InstalledApplicationLinuxResource1;AttributesYmlContent\",\"value\":\"[concat('packages: [', replace(parameters('ApplicationName'), ';', ','), ']')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4d1c04de-2172-403f-901b-90608c35c721\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4d1c04de-2172-403f-901b-90608c35c721\"},{\"properties\":{\"displayName\":\"FTPS should be required in your Web App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Enable FTPS enforcement for enhanced security\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/ftpsState\",\"in\":[\"FtpsOnly\",\"Disabled\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4d24b6d4-5e53-4a4f-a7f4-618fa573ee4b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4d24b6d4-5e53-4a4f-a7f4-618fa573ee4b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1155 - System Interconnections | Restrictions On External System Connections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1155\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4d33f9f1-12d0-46ad-9fbd-8f8046694977\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4d33f9f1-12d0-46ad-9fbd-8f8046694977\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1156 - Plan Of Action And Milestones\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1156\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4d52e864-9a3b-41ee-8f03-520815fe5378\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4d52e864-9a3b-41ee-8f03-520815fe5378\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1312 - Identifier Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1312\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4d6a5968-9eef-4c18-8534-376790ab7274\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4d6a5968-9eef-4c18-8534-376790ab7274\"},{\"properties\":{\"displayName\":\"Deploy Dependency agent for Linux virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Dependency agent for Linux virtual machines if the VM Image (OS) is in the list defined and the agent is not installed.\",\"metadata\":{\"version\":\"1.1.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"14.04.0-LTS\",\"14.04.1-LTS\",\"14.04.5-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"16.04-LTS\",\"16.04.0-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"18.04-LTS\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"12-SP2\",\"12-SP3\",\"12-SP4\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"DependencyAgentLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"DependencyAgent\",\"vmExtensionPublisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"vmExtensionType\":\"DependencyAgentLinux\",\"vmExtensionTypeHandlerVersion\":\"9.6\"},\"resources\":[{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"apiVersion\":\"2019-12-01\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4da21710-ce6f-4e06-8cdb-5cc4c93ffbee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4da21710-ce6f-4e06-8cdb-5cc4c93ffbee\"},{\"properties\":{\"displayName\":\"Advanced threat protection should be enabled on Virtual Machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced threat protection provides real-time threat protection for virtual machine workloads and generates hardening recommendations as well as alerts about suspicious activities.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"VirtualMachines\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4da35fc9-c9e7-4960-aec9-797fe7d9051d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4da35fc9-c9e7-4960-aec9-797fe7d9051d\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Data Lake Analytics to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Data Lake Analytics to stream to a regional Event Hub when any Data Lake Analytics which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Data Lake Analytics in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeAnalytics/accounts\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.DataLakeAnalytics/accounts/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"Audit\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Requests\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4daddf25-4823-43d4-88eb-2419eb6dcc08\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4daddf25-4823-43d4-88eb-2419eb6dcc08\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1394 - System Maintenance Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1394\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4db56f68-3f50-45ab-88f3-ca46f5379a94\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4db56f68-3f50-45ab-88f3-ca46f5379a94\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1702 - Information System Monitoring | Indicators Of Compromise\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1702\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4dfc0855-92c4-4641-b155-a55ddd962362\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4dfc0855-92c4-4641-b155-a55ddd962362\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1001 - Access Control Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1001\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e26f8c3-4bf3-4191-b8fc-d888805101b7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e26f8c3-4bf3-4191-b8fc-d888805101b7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1083 - Publicly Accessible Content\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1083\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e319cb6-2ca3-4a58-ad75-e67f484e50ec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e319cb6-2ca3-4a58-ad75-e67f484e50ec\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1579 - Acquisition Process | Use Of Approved Piv Products\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1579\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e54c7ef-7457-430b-9a3e-ef8881d4a8e0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e54c7ef-7457-430b-9a3e-ef8881d4a8e0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1247 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1247\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e666db5-b2ef-4b06-aac6-09bfce49151b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e666db5-b2ef-4b06-aac6-09bfce49151b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1196 - Configuration Change Control | Automated Document / Notification / Prohibition Of Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1196\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e7f4ea4-dd62-44f6-8886-ac6137cf52b0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e7f4ea4-dd62-44f6-8886-ac6137cf52b0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1134 - Protection Of Audit Information | Access By Subset Of Privileged Users\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1134\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e95f70e-181c-4422-9da2-43079710c789\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e95f70e-181c-4422-9da2-43079710c789\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1267 - Alternate Storage Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1267\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e97ba1d-be5d-4953-8da4-0cccf28f4805\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e97ba1d-be5d-4953-8da4-0cccf28f4805\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1192 - Configuration Change Control | Automated Document / Notification / Prohibition Of Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1192\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4ebd97f7-b105-4f50-8daf-c51465991240\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4ebd97f7-b105-4f50-8daf-c51465991240\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1139 - Audit Generation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1139\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4ed62522-de00-4dda-9810-5205733d2f34\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4ed62522-de00-4dda-9810-5205733d2f34\"},{\"properties\":{\"displayName\":\"A maximum of 3 owners should be designated for your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"It is recommended to designate up to 3 subscription owners in order to reduce the potential for breach by a compromised owner.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"DesignateLessThanXOwners\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4f11b553-d42e-4e3a-89be-32ca364cad4c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4f11b553-d42e-4e3a-89be-32ca364cad4c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1442 - Media Sanitization | Nondestructive Techniques\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1442\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4f26049b-2c5a-4841-9ff3-d48a26aae475\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4f26049b-2c5a-4841-9ff3-d48a26aae475\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1182 - Baseline Configuration | Configure Systems, Components, Or Devices For High-Risk Areas\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1182\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4f34f554-da4b-4786-8d66-7915c90893da\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4f34f554-da4b-4786-8d66-7915c90893da\"},{\"properties\":{\"displayName\":\"A security contact email address should be provided for your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enter an email address to receive notifications when Azure Security Center detects compromised resources\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/securityContacts\",\"existenceCondition\":{\"field\":\"Microsoft.Security/securityContacts/email\",\"notEquals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4f4f78b8-e367-4b10-a341-d9a4ad5cf1c7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4f4f78b8-e367-4b10-a341-d9a4ad5cf1c7\"},{\"properties\":{\"displayName\":\"Add a tag to resources\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Adds the specified tag and value when any resource missing this tag is created or updated. Existing resources can be remediated by triggering a remediation task. If the tag exists with a different value it will not be changed. Does not modify tags on resource groups.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"add\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[parameters('tagValue')]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4f9dc7db-30c1-420c-b61a-e1d640128d26\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4f9dc7db-30c1-420c-b61a-e1d640128d26\"},{\"properties\":{\"displayName\":\"Vulnerability assessment should be enabled on virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Monitors vulnerabilities detected by Azure Security Center vulnerability assessment on virtual machines.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"serverVulnerabilityAssessment\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"NotApplicable\",\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/501541f7-f7e7-4cd6-868c-4190fdad3ac9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"501541f7-f7e7-4cd6-868c-4190fdad3ac9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1485 - Delivery And Removal\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1485\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/50301354-95d0-4a11-8af5-8039ecf6d38b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"50301354-95d0-4a11-8af5-8039ecf6d38b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1646 - Cryptographic Key Establishment And Management | Asymmetric Keys\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1646\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/506814fa-b930-4b10-894e-a45b98c40e1a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"506814fa-b930-4b10-894e-a45b98c40e1a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1566 - System Development Life Cycle\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1566\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/50ad3724-e2ac-4716-afcc-d8eabd97adb9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"50ad3724-e2ac-4716-afcc-d8eabd97adb9\"},{\"properties\":{\"displayName\":\"A custom IPsec/IKE policy must be applied to all Azure virtual network gateway connections\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy ensures that all Azure virtual network gateway connections use a custom Internet Protocol Security(Ipsec)/Internet Key Exchange(IKE) policy. Supported algorithms and key strengths - https://aka.ms/AA62kb0\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"IPsecEncryption\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"IPsec Encryption\",\"description\":\"IPsec Encryption\"}},\"IPsecIntegrity\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"IPsec Integrity\",\"description\":\"IPsec Integrity\"}},\"IKEEncryption\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"IKE Encryption\",\"description\":\"IKE Encryption\"}},\"IKEIntegrity\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"IKE Integrity\",\"description\":\"IKE Integrity\"}},\"DHGroup\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"DH Group\",\"description\":\"DH Group\"}},\"PFSGroup\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"PFS Group\",\"description\":\"PFS Group\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/connections\"},{\"anyOf\":[{\"field\":\"Microsoft.Network/connections/ipsecPolicies[*].ipsecEncryption\",\"notIn\":\"[parameters('IPsecEncryption')]\"},{\"field\":\"Microsoft.Network/connections/ipsecPolicies[*].ipsecIntegrity\",\"notIn\":\"[parameters('IPsecIntegrity')]\"},{\"field\":\"Microsoft.Network/connections/ipsecPolicies[*].ikeEncryption\",\"notIn\":\"[parameters('IKEEncryption')]\"},{\"field\":\"Microsoft.Network/connections/ipsecPolicies[*].ikeIntegrity\",\"notIn\":\"[parameters('IKEIntegrity')]\"},{\"field\":\"Microsoft.Network/connections/ipsecPolicies[*].dhGroup\",\"notIn\":\"[parameters('DHGroup')]\"},{\"field\":\"Microsoft.Network/connections/ipsecPolicies[*].pfsGroup\",\"notIn\":\"[parameters('PFSGroup')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/50b83b09-03da-41c1-b656-c293c914862b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"50b83b09-03da-41c1-b656-c293c914862b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1248 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1248\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/50fc602d-d8e0-444b-a039-ad138ee5deb0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"50fc602d-d8e0-444b-a039-ad138ee5deb0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1386 - Information Spillage Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1386\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5120193e-91fd-4f9d-bc6d-194f94734065\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5120193e-91fd-4f9d-bc6d-194f94734065\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1352 - Incident Response Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1352\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/518cb545-bfa8-43f8-a108-3b7d5037469a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"518cb545-bfa8-43f8-a108-3b7d5037469a\"},{\"properties\":{\"displayName\":\"Advanced threat protection should be enabled on Azure Kubernetes Service clusters\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced threat protection provides real-time threat protection for containerized environments and generates alerts for suspicious activities.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"KubernetesService\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/523b5cd1-3e23-492f-a539-13118b6d1e3a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"523b5cd1-3e23-492f-a539-13118b6d1e3a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1642 - Network Disconnect\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1642\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/53397227-5ee3-4b23-9e5e-c8a767ce6928\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"53397227-5ee3-4b23-9e5e-c8a767ce6928\"},{\"properties\":{\"displayName\":\"Connection throttling should be enabled for PostgreSQL database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy helps audit any PostgreSQL databases in your environment without Connection throttling enabled. This setting enables temporary connection throttling per IP for too many invalid password login failures.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\",\"name\":\"connection_throttling\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/configurations/value\",\"equals\":\"ON\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5345bb39-67dc-4960-a1bf-427e16b9a0bd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5345bb39-67dc-4960-a1bf-427e16b9a0bd\"},{\"properties\":{\"displayName\":\"Azure SignalR Service should use private links\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Azure SignalR Service resources that do not have at least one approved private endpoint connection. Clients in a virtual network can securely access resources that have private endpoint connections through private links. For more information, visit: https://aka.ms/asrs/privatelink.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SignalR\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.SignalRService/SignalR\"},{\"count\":{\"field\":\"Microsoft.SignalRService/SignalR/privateEndpointConnections[*]\",\"where\":{\"field\":\"Microsoft.SignalRService/SignalR/privateEndpointConnections[*].privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}},\"less\":1}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/53503636-bcc9-4748-9663-5348217f160f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"53503636-bcc9-4748-9663-5348217f160f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1467 - Visitor Access Records\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1467\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5350cbf9-8bdd-4904-b22a-e88be84ca49d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5350cbf9-8bdd-4904-b22a-e88be84ca49d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1183 - Baseline Configuration | Configure Systems, Components, Or Devices For High-Risk Areas\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1183\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5352e3e0-e63a-452e-9e5f-9c1d181cff9c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5352e3e0-e63a-452e-9e5f-9c1d181cff9c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1029 - Information Flow Enforcement | Security Policy Filters\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1029\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/53ac8f8e-c2b5-4d44-8a2d-058e9ced9b69\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"53ac8f8e-c2b5-4d44-8a2d-058e9ced9b69\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1270 - Alternate Storage Site | Recovery Time / Point Objectives\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1270\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/53c76a39-2097-408a-b237-b279f7b4614d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"53c76a39-2097-408a-b237-b279f7b4614d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1040 - Least Privilege | Review Of User Privileges\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1040\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/54205576-cec9-463f-ba44-b4b3f5d0a84c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"54205576-cec9-463f-ba44-b4b3f5d0a84c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1015 - Account Management | Disable Inactive Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1015\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/544a208a-9c3f-40bc-b1d1-d7e144495c14\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"544a208a-9c3f-40bc-b1d1-d7e144495c14\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1026 - Account Management | Disable Accounts For High-Risk Individuals\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1026\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/55419419-c597-4cd4-b51e-009fd2266783\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"55419419-c597-4cd4-b51e-009fd2266783\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1045 - Unsuccessful Logon Attempts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1045\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/554d2dd6-f3a8-4ad5-b66f-5ce23bd18892\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"554d2dd6-f3a8-4ad5-b66f-5ce23bd18892\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1523 - Personnel Transfer\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1523\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5577a310-2551-49c8-803b-36e0d5e55601\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5577a310-2551-49c8-803b-36e0d5e55601\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1113 - Response To Audit Processing Failures | Audit Storage Capacity\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1113\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/562afd61-56be-4313-8fe4-b9564aa4ba7d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"562afd61-56be-4313-8fe4-b9564aa4ba7d\"},{\"properties\":{\"displayName\":\"Web Application Firewall (WAF) should be enabled for Application Gateway\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Requires Web Application Firewall (WAF) on any Application Gateway. A Web Application Firewall provides greater security for your other Azure resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/applicationGateways\"},{\"field\":\"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/564feb30-bf6a-4854-b4bb-0d2d2d1e6c66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"564feb30-bf6a-4854-b4bb-0d2d2d1e6c66\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1212 - Configuration Settings | Automated Central Management / Application / Verification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1212\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/56d970ee-4efc-49c8-8a4e-5916940d784c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"56d970ee-4efc-49c8-8a4e-5916940d784c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1403 - Controlled Maintenance | Automated Maintenance Activities\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1403\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/57149289-d52b-4f40-9fe6-5233c1ef80f7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"57149289-d52b-4f40-9fe6-5233c1ef80f7\"},{\"properties\":{\"displayName\":\"CORS should not allow every resource to access your Web Applications\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Cross-Origin Resource Sharing (CORS) should not allow all domains to access your web application. Allow only required domains to interact with your web app.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.cors.allowedOrigins[*]\",\"notEquals\":\"*\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5744710e-cc2f-4ee8-8809-3b11e89f4bc9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5744710e-cc2f-4ee8-8809-3b11e89f4bc9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1162 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1162\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5770f3d6-8c2b-4f6f-bf0e-c8c8fc36d592\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5770f3d6-8c2b-4f6f-bf0e-c8c8fc36d592\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1054 - Session Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1054\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5807e1b4-ba5e-4718-8689-a0ca05a191b2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5807e1b4-ba5e-4718-8689-a0ca05a191b2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1584 - Information System Documentation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1584\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5864522b-ff1d-4979-a9f8-58bee1fb174c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5864522b-ff1d-4979-a9f8-58bee1fb174c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1547 - Vulnerability Scanning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1547\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/58abf9b8-c6d4-4b4b-bfb9-fe98fe295f52\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"58abf9b8-c6d4-4b4b-bfb9-fe98fe295f52\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1573 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1573\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/58c93053-7b98-4cf0-b99f-1beb985416c2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"58c93053-7b98-4cf0-b99f-1beb985416c2\"},{\"properties\":{\"displayName\":\"[Deprecated]: Ensure Function app is using the latest version of TLS encryption\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Please use /providers/Microsoft.Authorization/policyDefinitions/f9d614c5-c173-4d56-95a7-b4437057d193 instead. The TLS(Transport Layer Security) protocol secures transmission of data over the internet using standard encryption technology. Encryption should be set with the latest version of TLS. App service allows TLS 1.2 by default, which is the recommended TLS level by industry standards, such as PCI DSS\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"App Service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.minTlsVersion\",\"equals\":\"1.2\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/58d94fc1-a072-47c2-bd37-9cdb38e77453\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"58d94fc1-a072-47c2-bd37-9cdb38e77453\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1063 - Remote Access | Managed Access Control Points\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1063\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/593ce201-54b2-4dd0-b34f-c308005d7780\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"593ce201-54b2-4dd0-b34f-c308005d7780\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1463 - Monitoring Physical Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1463\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/59721f87-ae25-4db0-a2a4-77cc5b25d495\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"59721f87-ae25-4db0-a2a4-77cc5b25d495\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1425 - Timely Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1425\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5983d99c-f39b-4c32-a3dc-170f19f6941b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5983d99c-f39b-4c32-a3dc-170f19f6941b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1512 - Personnel Screening\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1512\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5a8324ad-f599-429b-aaed-f9c6e8c987a8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5a8324ad-f599-429b-aaed-f9c6e8c987a8\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not have a minimum password age of 1 day\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not have a minimum password age of 1 day. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MinimumPasswordAge\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5aa11bbc-5c76-4302-80e5-aba46a4282e7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5aa11bbc-5c76-4302-80e5-aba46a4282e7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1032 - Separation Of Duties\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1032\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5aa85661-d618-46b8-a20f-ca40a86f0751\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5aa85661-d618-46b8-a20f-ca40a86f0751\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not restrict the minimum password length to 14 characters\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not restrict the minimum password length to 14 characters. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MinimumPasswordLength\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5aebc8d1-020d-4037-89a0-02043a7524ec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5aebc8d1-020d-4037-89a0-02043a7524ec\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1555 - Vulnerability Scanning | Privileged Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1555\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5afa8cab-1ed7-4e40-884c-64e0ac2059cc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5afa8cab-1ed7-4e40-884c-64e0ac2059cc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1205 - Access Restrictions For Change | Signed Components\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1205\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5b070cab-0fb8-4e48-ad29-fc90b4c2797c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5b070cab-0fb8-4e48-ad29-fc90b4c2797c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1005 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1005\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5b626abc-26d4-4e22-9de8-3831818526b1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5b626abc-26d4-4e22-9de8-3831818526b1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1105 - Audit Events\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1105\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5b73f57b-587d-4470-a344-0b0ae805f459\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5b73f57b-587d-4470-a344-0b0ae805f459\"},{\"properties\":{\"displayName\":\"Show audit results from Linux VMs that have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Linux virtual machines that have the specified applications installed. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"not_installed_application_linux\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5b842acb-0fe7-41b0-9f40-880ec4ad84d8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5b842acb-0fe7-41b0-9f40-880ec4ad84d8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1433 - Media Transport\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1433\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5b879b41-2728-41c5-ad24-9ee2c37cbe65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5b879b41-2728-41c5-ad24-9ee2c37cbe65\"},{\"properties\":{\"displayName\":\"Container Registries should be encrypted with a Customer-Managed Key (CMK)\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Container Registries that do not have encryption enabled with Customer-Managed Keys (CMK). For more information on CMK encryption, please visit: https://aka.ms/acr/CMK.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Container Registry\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerRegistry/registries\"},{\"not\":{\"field\":\"Microsoft.ContainerRegistry/registries/encryption.status\",\"equals\":\"enabled\"}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5b9159ae-1701-4a6f-9a7a-aa9c8ddd0580\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5b9159ae-1701-4a6f-9a7a-aa9c8ddd0580\"},{\"properties\":{\"displayName\":\"Ensure WEB app has 'Client Certificates (Incoming client certificates)' set to 'On'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Client certificates allow for the app to request a certificate for incoming requests. Only clients that have a valid certificate will be able to reach the app.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"},{\"field\":\"Microsoft.Web/sites/clientCertEnabled\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5bb220d9-2698-4ee4-8404-b9c30c9df609\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5bb220d9-2698-4ee4-8404-b9c30c9df609\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs on which the remote host connection status does not match the specified one\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines on which the remote host connection status does not match the specified one. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"host\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Remote Host Name\",\"description\":\"Specifies the Domain Name System (DNS) name or IP address of the remote host machine.\"}},\"port\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Port\",\"description\":\"The TCP port number on the remote host name.\"}},\"shouldConnect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Should connect to remote host\",\"description\":\"Must be 'True' or 'False'. 'True' indicates that the virtual machine should be able to establish a connection with the remote host specified, so the machine will be non-compliant if it cannot establish a connection. 'False' indicates that the virtual machine should not be able to establish a connection with the remote host specified, so the machine will be non-compliant if it can establish a connection.\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsRemoteConnection\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsRemoteConnection]WindowsRemoteConnection1;host', '=', parameters('host'), ',', '[WindowsRemoteConnection]WindowsRemoteConnection1;port', '=', parameters('port'), ',', '[WindowsRemoteConnection]WindowsRemoteConnection1;shouldConnect', '=', parameters('shouldConnect')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsRemoteConnection\"},\"host\":{\"value\":\"[parameters('host')]\"},\"port\":{\"value\":\"[parameters('port')]\"},\"shouldConnect\":{\"value\":\"[parameters('shouldConnect')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"host\":{\"type\":\"string\"},\"port\":{\"type\":\"string\"},\"shouldConnect\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsRemoteConnection]WindowsRemoteConnection1;host\",\"value\":\"[parameters('host')]\"},{\"name\":\"[WindowsRemoteConnection]WindowsRemoteConnection1;port\",\"value\":\"[parameters('port')]\"},{\"name\":\"[WindowsRemoteConnection]WindowsRemoteConnection1;shouldConnect\",\"value\":\"[parameters('shouldConnect')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsRemoteConnection]WindowsRemoteConnection1;host\",\"value\":\"[parameters('host')]\"},{\"name\":\"[WindowsRemoteConnection]WindowsRemoteConnection1;port\",\"value\":\"[parameters('port')]\"},{\"name\":\"[WindowsRemoteConnection]WindowsRemoteConnection1;shouldConnect\",\"value\":\"[parameters('shouldConnect')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5bb36dda-8a78-4df9-affd-4f05a8612a8a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5bb36dda-8a78-4df9-affd-4f05a8612a8a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1551 - Vulnerability Scanning | Update Tool Capability\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1551\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5bbda922-0172-4095-89e6-5b4a0bf03af7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5bbda922-0172-4095-89e6-5b4a0bf03af7\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Network Security'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Network Security'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsNetworkSecurity\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5c028d2a-1889-45f6-b821-31f42711ced8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5c028d2a-1889-45f6-b821-31f42711ced8\"},{\"properties\":{\"displayName\":\"Audit Log Analytics agent deployment in virtual machine scale sets - VM Image (OS) unlisted\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Reports virtual machine scale sets as non-compliant if the VM Image (OS) is not in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude_windows\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]},\"listOfImageIdToInclude_linux\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"not\":{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_windows')]\"},{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_linux')]\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"12*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"14.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"16.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"18.04*LTS\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7.*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"existenceCondition\":{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5c3bc7b8-a64c-4e08-a9cd-7ff0f31e1138\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5c3bc7b8-a64c-4e08-a9cd-7ff0f31e1138\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1671 - Flaw Remediation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1671\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5c5bbef7-a316-415b-9b38-29753ce8e698\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5c5bbef7-a316-415b-9b38-29753ce8e698\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1067 - Wireless Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1067\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5c5e54f6-0127-44d0-8b61-f31dc8dd6190\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5c5e54f6-0127-44d0-8b61-f31dc8dd6190\"},{\"properties\":{\"displayName\":\"External accounts with write permissions should be removed from your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"External accounts with write privileges should be removed from your subscription in order to prevent unmonitored access.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"RemoveExternalAccountsWithWritePermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5c607a2e-c700-4744-8254-d77e7c9eb5e4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5c607a2e-c700-4744-8254-d77e7c9eb5e4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1483 - Water Damage Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1483\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5cb81060-3c8a-4968-bcdc-395a1801f6c1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5cb81060-3c8a-4968-bcdc-395a1801f6c1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1362 - Incident Handling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1362\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5d169442-d6ef-439b-8dca-46c2c3248214\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5d169442-d6ef-439b-8dca-46c2c3248214\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1014 - Account Management | Removal Of Temporary / Emergency Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1014\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5dee936c-8037-4df1-ab35-6635733da48c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5dee936c-8037-4df1-ab35-6635733da48c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1665 - Process Isolation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1665\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5df3a55c-8456-44d4-941e-175f79332512\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5df3a55c-8456-44d4-941e-175f79332512\"},{\"properties\":{\"displayName\":\"[Deprecated]: Function App should only be accessible over HTTPS\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use of HTTPS ensures server/service authentication and protects data in transit from network layer eavesdropping attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"functionapp\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"OnlyHttpsForFunctionApp\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5df82f4f-773a-4a2d-97a2-422a806f1a55\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5df82f4f-773a-4a2d-97a2-422a806f1a55\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1251 - Contingency Plan | Coordinate With Related Plans\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1251\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5e2b3730-8c14-4081-8893-19dbb5de7348\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5e2b3730-8c14-4081-8893-19dbb5de7348\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Applications that are not using latest supported .NET Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported .NET Framework version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestDotNet\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5e3315e0-a414-4efb-a4d2-c7bd2b0443d2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5e3315e0-a414-4efb-a4d2-c7bd2b0443d2\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not have the specified applications installed. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WhitelistedApplication\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5e393799-e3ca-4e43-a9a5-0ec4648a57d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5e393799-e3ca-4e43-a9a5-0ec4648a57d9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1116 - Audit Review, Analysis, And Reporting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1116\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5e47bc51-35d1-44b8-92af-e2f2d8b67635\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5e47bc51-35d1-44b8-92af-e2f2d8b67635\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1208 - Configuration Settings\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1208\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5ea87673-d06b-456f-a324-8abcee5c159f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5ea87673-d06b-456f-a324-8abcee5c159f\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation only in India data centers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation in the following locations only: West India, South India, Central India\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"General\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"westindia\",\"southindia\",\"centralindia\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5ee85ce5-e7eb-44d6-b4a2-32a24be1ca54\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5ee85ce5-e7eb-44d6-b4a2-32a24be1ca54\"},{\"properties\":{\"displayName\":\"Deploy Log Analytics agent for Linux virtual machine scale sets\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Log Analytics agent for Linux virtual machine scale sets if the VM Image (OS) is in the list defined and the agent is not installed. Note: if your scale set upgradePolicy is set to Manual, you need to apply the extension to the all VMs in the set by calling upgrade on them. In CLI this would be az vmss update-instances.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"12*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"14.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"16.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"18.04*LTS\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7.*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"OmsAgentForLinux\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"MMAExtension\",\"vmExtensionPublisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"vmExtensionType\":\"OmsAgentForLinux\",\"vmExtensionTypeHandlerVersion\":\"1.7\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2018-06-01\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\",\"stopOnMultipleConnections\":\"true\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for: ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5ee9e9ed-0b42-41b7-8c9c-3cfb2fbe2069\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5ee9e9ed-0b42-41b7-8c9c-3cfb2fbe2069\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1576 - Acquisition Process | Design / Implementation Information For Security Controls\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1576\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5f18c885-ade3-48c5-80b1-8f9216019c18\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5f18c885-ade3-48c5-80b1-8f9216019c18\"},{\"properties\":{\"displayName\":\"External accounts with read permissions should be removed from your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"External accounts with read privileges should be removed from your subscription in order to prevent unmonitored access.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"RemoveExternalAccountsWithReadPermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5f76cf89-fbf2-47fd-a3f4-b891fa780b60\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5f76cf89-fbf2-47fd-a3f4-b891fa780b60\"},{\"properties\":{\"displayName\":\"Audit Windows virtual machines on which the Windows Guest Configuration extension is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits Windows virtual machines hosted in Azure that are supported by Guest Configuration but do not have the Guest Configuration extension enabled. For more information on Guest Configuration, visit https://aka.ms/gcpol.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Guest Configuration\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"AzurePolicyforWindows\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.GuestConfiguration\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"ConfigurationforWindows\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5fc23db3-dd4d-4c56-bcc7-43626243e601\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5fc23db3-dd4d-4c56-bcc7-43626243e601\"},{\"properties\":{\"displayName\":\"Add or replace a tag on resources\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Adds or replaces the specified tag and value when any resource is created or updated. Existing resources can be remediated by triggering a remediation task. Does not modify tags on resource groups.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"notEquals\":\"[parameters('tagValue')]\"},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"addOrReplace\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[parameters('tagValue')]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5ffd78d9-436d-4b41-a421-5baa819e3008\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5ffd78d9-436d-4b41-a421-5baa819e3008\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1663 - Protection Of Information At Rest\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1663\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/60171210-6dde-40af-a144-bf2670518bfa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"60171210-6dde-40af-a144-bf2670518bfa\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Object Access'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Object Access'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesObjectAccess\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/60aeaf73-a074-417a-905f-7ce9df0ff77b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"60aeaf73-a074-417a-905f-7ce9df0ff77b\"},{\"properties\":{\"displayName\":\"Storage Accounts should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Storage Account not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"anyOf\":[{\"field\":\"Microsoft.Storage/storageAccounts/networkAcls.defaultAction\",\"notEquals\":\"Deny\"},{\"field\":\"Microsoft.Storage/storageAccounts/networkAcls.virtualNetworkRules[*].id\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/60d21c4f-21a3-4d94-85f4-b924e6aeeda4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"60d21c4f-21a3-4d94-85f4-b924e6aeeda4\"},{\"properties\":{\"displayName\":\"Show audit results from Windows web servers that are not using secure communication protocols\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows web servers that are not using secure communication protocols (TLS 1.1 or TLS 1.2). For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AuditSecureProtocol\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/60ffe3e2-4604-4460-8f22-0f1da058266c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"60ffe3e2-4604-4460-8f22-0f1da058266c\"},{\"properties\":{\"displayName\":\"Deploy Advanced Data Security on SQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables Advanced Data Security on SQL Servers. This includes turning on Threat Detection and Vulnerability Assessment. It will automatically create a storage account in the same region and resource group as the SQL server to store scan results, with a 'sqlva' prefix.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"Default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/securityAlertPolicies.state\",\"equals\":\"Enabled\"},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\"/providers/microsoft.authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"serverName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"serverResourceGroupName\":\"[resourceGroup().name]\",\"subscriptionId\":\"[subscription().subscriptionId]\",\"uniqueStorage\":\"[uniqueString(variables('subscriptionId'), variables('serverResourceGroupName'), parameters('location'))]\",\"storageName\":\"[tolower(concat('sqlva', variables('uniqueStorage')))]\"},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[variables('storageName')]\",\"apiVersion\":\"2019-04-01\",\"location\":\"[parameters('location')]\",\"sku\":{\"name\":\"Standard_LRS\"},\"kind\":\"StorageV2\",\"properties\":{}},{\"name\":\"[concat(parameters('serverName'), '/Default')]\",\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"apiVersion\":\"2017-03-01-preview\",\"properties\":{\"state\":\"Enabled\",\"emailAccountAdmins\":true}},{\"name\":\"[concat(parameters('serverName'), '/Default')]\",\"type\":\"Microsoft.Sql/servers/vulnerabilityAssessments\",\"apiVersion\":\"2018-06-01-preview\",\"properties\":{\"storageContainerPath\":\"[concat(reference(resourceId('Microsoft.Storage/storageAccounts', variables('storageName'))).primaryEndpoints.blob, 'vulnerability-assessment')]\",\"storageAccountAccessKey\":\"[listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageName')), '2018-02-01').keys[0].value]\",\"recurringScans\":{\"isEnabled\":true,\"emailSubscriptionAdmins\":true,\"emails\":[]}},\"dependsOn\":[\"[concat('Microsoft.Storage/storageAccounts/', variables('storageName'))]\",\"[concat('Microsoft.Sql/servers/', parameters('serverName'), '/securityAlertPolicies/Default')]\"]}]},\"parameters\":{\"serverName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6134c3db-786f-471e-87bc-8f479dc890f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6134c3db-786f-471e-87bc-8f479dc890f6\"},{\"properties\":{\"displayName\":\"[Preview]: Configure time zone on Windows machines.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to set specified time zone on Windows virtual machines.\",\"metadata\":{\"version\":\"1.1.0-preview\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"],\"preview\":true},\"parameters\":{\"TimeZone\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Time zone\",\"description\":\"The expected time zone\"},\"allowedValues\":[\"(UTC-12:00) International Date Line West\",\"(UTC-11:00) Coordinated Universal Time-11\",\"(UTC-10:00) Aleutian Islands\",\"(UTC-10:00) Hawaii\",\"(UTC-09:30) Marquesas Islands\",\"(UTC-09:00) Alaska\",\"(UTC-09:00) Coordinated Universal Time-09\",\"(UTC-08:00) Baja California\",\"(UTC-08:00) Coordinated Universal Time-08\",\"(UTC-08:00) Pacific Time (US & Canada)\",\"(UTC-07:00) Arizona\",\"(UTC-07:00) Chihuahua, La Paz, Mazatlan\",\"(UTC-07:00) Mountain Time (US & Canada)\",\"(UTC-06:00) Central America\",\"(UTC-06:00) Central Time (US & Canada)\",\"(UTC-06:00) Easter Island\",\"(UTC-06:00) Guadalajara, Mexico City, Monterrey\",\"(UTC-06:00) Saskatchewan\",\"(UTC-05:00) Bogota, Lima, Quito, Rio Branco\",\"(UTC-05:00) Chetumal\",\"(UTC-05:00) Eastern Time (US & Canada)\",\"(UTC-05:00) Haiti\",\"(UTC-05:00) Havana\",\"(UTC-05:00) Indiana (East)\",\"(UTC-05:00) Turks and Caicos\",\"(UTC-04:00) Asuncion\",\"(UTC-04:00) Atlantic Time (Canada)\",\"(UTC-04:00) Caracas\",\"(UTC-04:00) Cuiaba\",\"(UTC-04:00) Georgetown, La Paz, Manaus, San Juan\",\"(UTC-04:00) Santiago\",\"(UTC-03:30) Newfoundland\",\"(UTC-03:00) Araguaina\",\"(UTC-03:00) Brasilia\",\"(UTC-03:00) Cayenne, Fortaleza\",\"(UTC-03:00) City of Buenos Aires\",\"(UTC-03:00) Greenland\",\"(UTC-03:00) Montevideo\",\"(UTC-03:00) Punta Arenas\",\"(UTC-03:00) Saint Pierre and Miquelon\",\"(UTC-03:00) Salvador\",\"(UTC-02:00) Coordinated Universal Time-02\",\"(UTC-02:00) Mid-Atlantic - Old\",\"(UTC-01:00) Azores\",\"(UTC-01:00) Cabo Verde Is.\",\"(UTC) Coordinated Universal Time\",\"(UTC+00:00) Dublin, Edinburgh, Lisbon, London\",\"(UTC+00:00) Monrovia, Reykjavik\",\"(UTC+00:00) Sao Tome\",\"(UTC+01:00) Casablanca\",\"(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna\",\"(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague\",\"(UTC+01:00) Brussels, Copenhagen, Madrid, Paris\",\"(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb\",\"(UTC+01:00) West Central Africa\",\"(UTC+02:00) Amman\",\"(UTC+02:00) Athens, Bucharest\",\"(UTC+02:00) Beirut\",\"(UTC+02:00) Cairo\",\"(UTC+02:00) Chisinau\",\"(UTC+02:00) Damascus\",\"(UTC+02:00) Gaza, Hebron\",\"(UTC+02:00) Harare, Pretoria\",\"(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius\",\"(UTC+02:00) Jerusalem\",\"(UTC+02:00) Kaliningrad\",\"(UTC+02:00) Khartoum\",\"(UTC+02:00) Tripoli\",\"(UTC+02:00) Windhoek\",\"(UTC+03:00) Baghdad\",\"(UTC+03:00) Istanbul\",\"(UTC+03:00) Kuwait, Riyadh\",\"(UTC+03:00) Minsk\",\"(UTC+03:00) Moscow, St. Petersburg\",\"(UTC+03:00) Nairobi\",\"(UTC+03:30) Tehran\",\"(UTC+04:00) Abu Dhabi, Muscat\",\"(UTC+04:00) Astrakhan, Ulyanovsk\",\"(UTC+04:00) Baku\",\"(UTC+04:00) Izhevsk, Samara\",\"(UTC+04:00) Port Louis\",\"(UTC+04:00) Saratov\",\"(UTC+04:00) Tbilisi\",\"(UTC+04:00) Volgograd\",\"(UTC+04:00) Yerevan\",\"(UTC+04:30) Kabul\",\"(UTC+05:00) Ashgabat, Tashkent\",\"(UTC+05:00) Ekaterinburg\",\"(UTC+05:00) Islamabad, Karachi\",\"(UTC+05:00) Qyzylorda\",\"(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi\",\"(UTC+05:30) Sri Jayawardenepura\",\"(UTC+05:45) Kathmandu\",\"(UTC+06:00) Astana\",\"(UTC+06:00) Dhaka\",\"(UTC+06:00) Omsk\",\"(UTC+06:30) Yangon (Rangoon)\",\"(UTC+07:00) Bangkok, Hanoi, Jakarta\",\"(UTC+07:00) Barnaul, Gorno-Altaysk\",\"(UTC+07:00) Hovd\",\"(UTC+07:00) Krasnoyarsk\",\"(UTC+07:00) Novosibirsk\",\"(UTC+07:00) Tomsk\",\"(UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi\",\"(UTC+08:00) Irkutsk\",\"(UTC+08:00) Kuala Lumpur, Singapore\",\"(UTC+08:00) Perth\",\"(UTC+08:00) Taipei\",\"(UTC+08:00) Ulaanbaatar\",\"(UTC+08:45) Eucla\",\"(UTC+09:00) Chita\",\"(UTC+09:00) Osaka, Sapporo, Tokyo\",\"(UTC+09:00) Pyongyang\",\"(UTC+09:00) Seoul\",\"(UTC+09:00) Yakutsk\",\"(UTC+09:30) Adelaide\",\"(UTC+09:30) Darwin\",\"(UTC+10:00) Brisbane\",\"(UTC+10:00) Canberra, Melbourne, Sydney\",\"(UTC+10:00) Guam, Port Moresby\",\"(UTC+10:00) Hobart\",\"(UTC+10:00) Vladivostok\",\"(UTC+10:30) Lord Howe Island\",\"(UTC+11:00) Bougainville Island\",\"(UTC+11:00) Chokurdakh\",\"(UTC+11:00) Magadan\",\"(UTC+11:00) Norfolk Island\",\"(UTC+11:00) Sakhalin\",\"(UTC+11:00) Solomon Is., New Caledonia\",\"(UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky\",\"(UTC+12:00) Auckland, Wellington\",\"(UTC+12:00) Coordinated Universal Time+12\",\"(UTC+12:00) Fiji\",\"(UTC+12:00) Petropavlovsk-Kamchatsky - Old\",\"(UTC+12:45) Chatham Islands\",\"(UTC+13:00) Coordinated Universal Time+13\",\"(UTC+13:00) Nuku'alofa\",\"(UTC+13:00) Samoa\",\"(UTC+14:00) Kiritimati Island\"]}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"SetWindowsTimeZone\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsTimeZone]WindowsTimeZone1;TimeZone', '=', parameters('TimeZone')))]\"},{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"SetWindowsTimeZone\"},\"TimeZone\":{\"value\":\"[parameters('TimeZone')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"TimeZone\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"assignmentType\":\"DeployAndAutoCorrect\",\"configurationParameter\":[{\"name\":\"[WindowsTimeZone]WindowsTimeZone1;TimeZone\",\"value\":\"[parameters('TimeZone')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"assignmentType\":\"DeployAndAutoCorrect\",\"configurationParameter\":[{\"name\":\"[WindowsTimeZone]WindowsTimeZone1;TimeZone\",\"value\":\"[parameters('TimeZone')]\"}]}}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6141c932-9384-44c6-a395-59e4c057d7c9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6141c932-9384-44c6-a395-59e4c057d7c9\"},{\"properties\":{\"displayName\":\"Service Fabric clusters should have the ClusterProtectionLevel property set to EncryptAndSign\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Service Fabric provides three levels of protection (None, Sign and EncryptAndSign) for node-to-node communication using a primary cluster certificate. Set the protection level to ensure that all node-to-node messages are encrypted and digitally signed\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Service Fabric\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ServiceFabric/clusters\"},{\"anyOf\":[{\"field\":\"Microsoft.ServiceFabric/clusters/fabricSettings[*].name\",\"notEquals\":\"Security\"},{\"field\":\"Microsoft.ServiceFabric/clusters/fabricSettings[*].parameters[*].name\",\"notEquals\":\"ClusterProtectionLevel\"},{\"field\":\"Microsoft.ServiceFabric/clusters/fabricSettings[*].parameters[*].value\",\"notEquals\":\"EncryptAndSign\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/617c02be-7f02-4efd-8836-3180d47b6c68\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"617c02be-7f02-4efd-8836-3180d47b6c68\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1110 - Audit Storage Capacity\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1110\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6182bfa7-0f2a-43f5-834a-a2ddf31c13c7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6182bfa7-0f2a-43f5-834a-a2ddf31c13c7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1415 - Nonlocal Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1415\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/61a1dd98-b259-4840-abd5-fbba7ee0da83\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"61a1dd98-b259-4840-abd5-fbba7ee0da83\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1153 - System Interconnections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1153\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/61cf3125-142c-4754-8a16-41ab4d529635\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"61cf3125-142c-4754-8a16-41ab4d529635\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - System objects'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - System objects'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsSystemobjects\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/620e58b5-ac75-49b4-993f-a9d4f0459636\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"620e58b5-ac75-49b4-993f-a9d4f0459636\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1682 - Malicious Code Protection | Nonsignature-Based Detection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1682\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/62b638c5-29d7-404b-8d93-f21e4b1ce198\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"62b638c5-29d7-404b-8d93-f21e4b1ce198\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1660 - Session Authenticity\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1660\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/63096613-ce83-43e5-96f4-e588e8813554\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"63096613-ce83-43e5-96f4-e588e8813554\"},{\"properties\":{\"displayName\":\"[Preview]: Audit Linux virtual machines on which the use of passwords for SSH is allowed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits Linux virtual machines that use passwords for authenticating through SSH. This policy requires that the Guest Configuration prerequisites have been deployed to the policy assignment scope. For details, visit https://aka.ms/gcpol\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.0.0-preview\",\"preview\":true,\"requiredProviders\":[\"Microsoft.GuestConfiguration\"],\"guestConfiguration\":{\"name\":\"LinuxNoPasswordForSSH\",\"version\":\"1.*\"}},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of this policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"LinuxNoPasswordForSSH\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/630c64f9-8b6b-4c64-b511-6544ceff6fd6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"630c64f9-8b6b-4c64-b511-6544ceff6fd6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1002 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1002\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/632024c2-8079-439d-a7f6-90af1d78cc65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"632024c2-8079-439d-a7f6-90af1d78cc65\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1498 - Rules Of Behavior\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1498\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/633988b9-cf2f-4323-8394-f0d2af9cd6e1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"633988b9-cf2f-4323-8394-f0d2af9cd6e1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1177 - Baseline Configuration | Reviews And Updates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1177\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/63dbc7a8-e20b-4d38-b857-a7f6c0cd94bc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"63dbc7a8-e20b-4d38-b857-a7f6c0cd94bc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1185 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1185\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6420cd73-b939-43b7-9d99-e8688fea053c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6420cd73-b939-43b7-9d99-e8688fea053c\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Devices'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Devices'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"DevicesAllowedToFormatAndEjectRemovableMedia\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Devices: Allowed to format and eject removable media\",\"description\":\"Specifies who is allowed to format and eject removable NTFS media. You can use this policy setting to prevent unauthorized users from removing data on one computer to access it on another computer on which they have local administrator privileges.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsDevices\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Devices: Allowed to format and eject removable media;ExpectedValue', '=', parameters('DevicesAllowedToFormatAndEjectRemovableMedia')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsDevices\"},\"DevicesAllowedToFormatAndEjectRemovableMedia\":{\"value\":\"[parameters('DevicesAllowedToFormatAndEjectRemovableMedia')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"DevicesAllowedToFormatAndEjectRemovableMedia\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Devices: Allowed to format and eject removable media;ExpectedValue\",\"value\":\"[parameters('DevicesAllowedToFormatAndEjectRemovableMedia')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Devices: Allowed to format and eject removable media;ExpectedValue\",\"value\":\"[parameters('DevicesAllowedToFormatAndEjectRemovableMedia')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6481cc21-ed6e-4480-99dd-ea7c5222e897\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6481cc21-ed6e-4480-99dd-ea7c5222e897\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1441 - Media Sanitization | Equipment Testing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1441\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6519d7f3-e8a2-4ff3-a935-9a9497152ad7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6519d7f3-e8a2-4ff3-a935-9a9497152ad7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1558 - Vulnerability Scanning | Correlate Scanning Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1558\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/65592b16-4367-42c5-a26e-d371be450e17\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"65592b16-4367-42c5-a26e-d371be450e17\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit missing blob encryption for storage accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy is no longer necessary because storage blob encryption is enabled by default and cannot be turned off.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"not\":{\"field\":\"Microsoft.Storage/storageAccounts/enableBlobEncryption\",\"equals\":\"True\"}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"655cb504-bcee-4362-bd4c-402e6aa38759\"},{\"properties\":{\"displayName\":\"Advanced data security should be enabled on SQL servers on machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced data security provides functionality for surfacing and mitigating potential database vulnerabilities, detecting anomalous activities that could indicate a threat to SQL database and discovering and classifying sensitive data.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"SqlServerVirtualMachines\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6581d072-105e-4418-827f-bd446d56421b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6581d072-105e-4418-827f-bd446d56421b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1261 - Contingency Plan Testing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1261\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/65aeceb5-a59c-4cb1-8d82-9c474be5d431\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"65aeceb5-a59c-4cb1-8d82-9c474be5d431\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit IP restrictions configuration for a Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"IP Restrictions allow you to define a list of IP addresses that are allowed to access your app. Use of IP Restrictions protects a Function app from common attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"functionapp\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"ConfigureIPRestrictions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/664346d9-be92-43fb-a219-d595eeb76a90\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"664346d9-be92-43fb-a219-d595eeb76a90\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1444 - Media Use | Prohibit Use Without Owner\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1444\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/666143df-f5e0-45bd-b554-135f0f93e44e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"666143df-f5e0-45bd-b554-135f0f93e44e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1319 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1319\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/66f7ae57-5560-4fc5-85c9-659f204e7a42\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"66f7ae57-5560-4fc5-85c9-659f204e7a42\"},{\"properties\":{\"displayName\":\"Cognitive Services accounts should enable data encryption with customer managed key\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Cognitive Services account not using data encryption with customer managed key.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cognitive Services\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.CognitiveServices/accounts\"},{\"field\":\"Microsoft.CognitiveServices/accounts/encryption.keySource\",\"notEquals\":\"Microsoft.KeyVault\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/67121cc7-ff39-4ab8-b7e3-95b84dab487d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"67121cc7-ff39-4ab8-b7e3-95b84dab487d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1628 - Boundary Protection | External Telecommunications Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1628\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/67de62b4-a737-4781-8861-3baed3c35069\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"67de62b4-a737-4781-8861-3baed3c35069\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1377 - Incident Response Assistance | Coordination With External Providers\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1377\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/68434bd1-e14b-4031-9edb-a4adf5f84a67\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"68434bd1-e14b-4031-9edb-a4adf5f84a67\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs on which the Log Analytics agent is not connected as expected\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines on which the Log Analytics agent is not connected to the specified workspaces. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"WorkspaceId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Connected workspace IDs\",\"description\":\"A semicolon-separated list of the workspace IDs that the Log Analytics agent should be connected to\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsLogAnalyticsAgentConnection\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[LogAnalyticsAgent]LogAnalyticsAgent1;WorkspaceId', '=', parameters('WorkspaceId')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsLogAnalyticsAgentConnection\"},\"WorkspaceId\":{\"value\":\"[parameters('WorkspaceId')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"WorkspaceId\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LogAnalyticsAgent]LogAnalyticsAgent1;WorkspaceId\",\"value\":\"[parameters('WorkspaceId')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LogAnalyticsAgent]LogAnalyticsAgent1;WorkspaceId\",\"value\":\"[parameters('WorkspaceId')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/68511db2-bd02-41c4-ae6b-1900a012968a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"68511db2-bd02-41c4-ae6b-1900a012968a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1597 - Developer Configuration Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1597\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/68b250ec-2e4f-4eee-898a-117a9fda7016\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"68b250ec-2e4f-4eee-898a-117a9fda7016\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1588 - External Information System Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1588\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/68ebae26-e0e0-4ecb-8379-aabf633b51e9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"68ebae26-e0e0-4ecb-8379-aabf633b51e9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1070 - Wireless Access | Disable Wireless Networking\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1070\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/68f837d0-8942-4b1e-9b31-be78b247bda8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"68f837d0-8942-4b1e-9b31-be78b247bda8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1727 - Memory Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1727\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/697175a7-9715-4e89-b98b-c6f605888fa3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"697175a7-9715-4e89-b98b-c6f605888fa3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1652 - Mobile Code\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1652\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6998e84a-2d29-4e10-8962-76754d4f772d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6998e84a-2d29-4e10-8962-76754d4f772d\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy Log Analytics agent to Windows Azure Arc machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Log Analytics agent to Windows Azure Arc machines if the agent isn't installed.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Monitoring\",\"preview\":true},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Log Analytics workspace\",\"description\":\"Specify the Log Analytics workspace the agent should be connected to. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.HybridCompute/machines/extensions/type\",\"equals\":\"MicrosoftMonitoringAgent\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"MMAExtension\",\"vmExtensionPublisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"vmExtensionType\":\"MicrosoftMonitoringAgent\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2019-12-12\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\",\"stopOnMultipleConnections\":\"true\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/69af7d4a-7b18-4044-93a9-2651498ef203\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"69af7d4a-7b18-4044-93a9-2651498ef203\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1699 - Information System Monitoring | Privileged Users\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1699\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/69c7bee8-bc19-4129-a51e-65a7b39d3e7c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"69c7bee8-bc19-4129-a51e-65a7b39d3e7c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1696 - Information System Monitoring | Correlate Monitoring Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1696\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/69d2a238-20ab-4206-a6dc-f302bf88b1b8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"69d2a238-20ab-4206-a6dc-f302bf88b1b8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1244 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1244\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6a13a8f8-c163-4b1b-8554-d63569dab937\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6a13a8f8-c163-4b1b-8554-d63569dab937\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1019 - Account Management | Role-Based Schemes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1019\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6a3ee9b2-3977-459c-b8ce-2db583abd9f7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6a3ee9b2-3977-459c-b8ce-2db583abd9f7\"},{\"properties\":{\"displayName\":\"[Deprecated]: Deploy prerequisites to audit Windows VMs on which Windows Defender Exploit Guard is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines on which Windows Defender Exploit Guard is not enabled. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.1.0-deprecated\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"],\"deprecated\":true},\"parameters\":{\"NotAvailableMachineState\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: State in which to show VMs on which Windows Defender Exploit Guard is not available\",\"description\":\"Windows Defender Exploit Guard is only available starting with Windows 10/Windows Server with update 1709. Setting this value to 'Non-Compliant' will make machines with older versions on which Windows Defender Exploit Guard is not available (such as Windows Server 2012 R2) non-compliant. Setting this value to 'Compliant' will make these machines compliant.\"},\"allowedValues\":[\"Compliant\",\"Non-Compliant\"],\"defaultValue\":\"Non-Compliant\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDefenderExploitGuard\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsDefenderExploitGuard]WindowsDefenderExploitGuard1;NotAvailableMachineState', '=', parameters('NotAvailableMachineState')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsDefenderExploitGuard\"},\"NotAvailableMachineState\":{\"value\":\"[parameters('NotAvailableMachineState')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"NotAvailableMachineState\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsDefenderExploitGuard]WindowsDefenderExploitGuard1;NotAvailableMachineState\",\"value\":\"[parameters('NotAvailableMachineState')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsDefenderExploitGuard]WindowsDefenderExploitGuard1;NotAvailableMachineState\",\"value\":\"[parameters('NotAvailableMachineState')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2015-05-01-preview\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6a7a2bcf-f9be-4e35-9734-4f9657a70f1d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6a7a2bcf-f9be-4e35-9734-4f9657a70f1d\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit IP restrictions configuration for a Web Application\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"IP Restrictions allow you to define a list of IP addresses that are allowed to access your app. Use of IP Restrictions protects a web application from common attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"ConfigureIPRestrictions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6a8450e2-6c61-43b4-be65-62e3a197bffe\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6a8450e2-6c61-43b4-be65-62e3a197bffe\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1211 - Configuration Settings\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1211\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6a8b9dc8-6b00-4701-aa96-bba3277ebf50\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6a8b9dc8-6b00-4701-aa96-bba3277ebf50\"},{\"properties\":{\"displayName\":\"[Deprecated]: Ensure WEB app is using the latest version of TLS encryption \",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Please use /providers/Microsoft.Authorization/policyDefinitions/f0e6e85b-9b9f-4a4b-b67b-f730d42f1b0b instead. The TLS(Transport Layer Security) protocol secures transmission of data over the internet using standard encryption technology. Encryption should be set with the latest version of TLS. App service allows TLS 1.2 by default, which is the recommended TLS level by industry standards, such as PCI DSS.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"App Service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.minTlsVersion\",\"equals\":\"1.2\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6ad61431-88ce-4357-a0e1-6da43f292bd7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6ad61431-88ce-4357-a0e1-6da43f292bd7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1653 - Mobile Code\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1653\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6b1c00a7-7fd0-42b0-8c5b-c45f6fa1f71b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6b1c00a7-7fd0-42b0-8c5b-c45f6fa1f71b\"},{\"properties\":{\"displayName\":\"Deprecated accounts should be removed from your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Deprecated accounts should be removed from your subscriptions. Deprecated accounts are accounts that have been blocked from signing in.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"RemoveDeprecatedAccounts\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6b1cbf55-e8b6-442f-ba4c-7246b6381474\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6b1cbf55-e8b6-442f-ba4c-7246b6381474\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Service Bus to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Service Bus to stream to a regional Event Hub when any Service Bus which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Service Bus in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ServiceBus/namespaces\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.ServiceBus/namespaces/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"OperationalLogs\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6b51af03-9277-49a9-a3f8-1c69c9ff7403\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6b51af03-9277-49a9-a3f8-1c69c9ff7403\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1031 - Separation Of Duties\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1031\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6b93a801-fe25-4574-a60d-cb22acffae00\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6b93a801-fe25-4574-a60d-cb22acffae00\"},{\"properties\":{\"displayName\":\"Not allowed resource types\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy enables you to specify the resource types that your organization cannot deploy.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"General\"},\"parameters\":{\"listOfResourceTypesNotAllowed\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of resource types that cannot be deployed.\",\"displayName\":\"Not allowed resource types\",\"strongType\":\"resourceTypes\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":\"[parameters('listOfResourceTypesNotAllowed')]\"},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6c112d4e-5bc7-47ae-a041-ea2d9dccd749\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6c112d4e-5bc7-47ae-a041-ea2d9dccd749\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1338 - Authenticator Management | Automated Support For Password Strength Determination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1338\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6c59a207-6aed-41dc-83a2-e1ff66e4a4db\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6c59a207-6aed-41dc-83a2-e1ff66e4a4db\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1304 - Identification And Authentication (Org. Users) | Local Access To Non-Privileged Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1304\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6ca71be3-16cb-4d39-8b50-7f8fd5e2f11b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6ca71be3-16cb-4d39-8b50-7f8fd5e2f11b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1437 - Media Transport | Cryptographic Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1437\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6d1eb6ed-bf13-4046-b993-b9e2aef0f76c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6d1eb6ed-bf13-4046-b993-b9e2aef0f76c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1171 - Penetration Testing | Independent Penetration Agent Or Team\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1171\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6d4820bc-8b61-4982-9501-2123cb776c00\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6d4820bc-8b61-4982-9501-2123cb776c00\"},{\"properties\":{\"displayName\":\"Function App should only be accessible over HTTPS\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use of HTTPS ensures server/service authentication and protects data in transit from network layer eavesdropping attacks.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"},{\"field\":\"Microsoft.Web/sites/httpsOnly\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6d555dd1-86f2-4f1c-8ed7-5abae7c6cbab\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6d555dd1-86f2-4f1c-8ed7-5abae7c6cbab\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1643 - Cryptographic Key Establishment And Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1643\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6d8d492c-dd7a-46f7-a723-fa66a425b87c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6d8d492c-dd7a-46f7-a723-fa66a425b87c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1291 - Information System Backup | Testing For Reliability / Integrity\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1291\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6d8fd073-9c85-4ee2-a9d0-2e4ec9eb8912\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6d8fd073-9c85-4ee2-a9d0-2e4ec9eb8912\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1175 - Configuration Management Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1175\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6dab4254-c30d-4bb7-ae99-1d21586c063c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6dab4254-c30d-4bb7-ae99-1d21586c063c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1651 - Mobile Code\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1651\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6db63528-c9ba-491c-8a80-83e1e6977a50\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6db63528-c9ba-491c-8a80-83e1e6977a50\"},{\"properties\":{\"displayName\":\"Enable Security Center's auto provisioning of the Log Analytics agent on your subscriptions with default workspace.\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Allow Security Center to auto provision the Log Analytics agent on your subscriptions to monitor and collect security data using ASC default workspace.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/autoProvisioningSettings\",\"deploymentScope\":\"Subscription\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"existenceCondition\":{\"field\":\"Microsoft.Security/autoProvisioningSettings/autoProvision\",\"equals\":\"On\"},\"deployment\":{\"location\":\"westus\",\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Security/autoProvisioningSettings\",\"name\":\"default\",\"apiVersion\":\"2017-08-01-preview\",\"properties\":{\"autoProvision\":\"On\"}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6df2fee6-a9ed-4fef-bced-e13be1b25f1c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6df2fee6-a9ed-4fef-bced-e13be1b25f1c\"},{\"properties\":{\"displayName\":\"Email notification for high severity alerts should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable emailing security alerts to the security contact, in order to have them receive security alert emails from Microsoft. This ensures that the right people are aware of any potential security issues and are able to mitigate the risks\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/securityContacts\",\"existenceCondition\":{\"field\":\"Microsoft.Security/securityContacts/alertNotifications\",\"notEquals\":\"Off\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6e2593d9-add6-4083-9c9b-4b7d2188c899\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6e2593d9-add6-4083-9c9b-4b7d2188c899\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1586 - External Information System Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1586\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6e3b2fbd-8f37-4766-a64d-3f37703dcb51\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6e3b2fbd-8f37-4766-a64d-3f37703dcb51\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1536 - Risk Assessment Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1536\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6e40d9de-2ad4-4cb5-8945-23143326a502\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6e40d9de-2ad4-4cb5-8945-23143326a502\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1530 - Third-Party Personnel Security\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1530\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6e8f9566-29f1-49cd-b61f-f8628a3cf993\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6e8f9566-29f1-49cd-b61f-f8628a3cf993\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1460 - Access Control For Output Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1460\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6f3ce1bb-4f77-4695-8355-70b08d54fdda\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6f3ce1bb-4f77-4695-8355-70b08d54fdda\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1320 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1320\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6f54c732-71d4-4f93-a696-4e373eca3a77\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6f54c732-71d4-4f93-a696-4e373eca3a77\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation only in Japan data centers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation in the following locations only: Japan East, Japan West\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"General\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"japaneast\",\"japanwest\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6fdb9205-3462-4cfc-87d8-16c7860b53f4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6fdb9205-3462-4cfc-87d8-16c7860b53f4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1141 - Audit Generation | Changes By Authorized Individuals\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1141\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6fdefbf4-93e7-4513-bc95-c1858b7093e0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6fdefbf4-93e7-4513-bc95-c1858b7093e0\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Microsoft Network Server'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Microsoft Network Server'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsMicrosoftNetworkServer\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6fe4ef56-7576-4dc4-8e9c-26bad4b087ce\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6fe4ef56-7576-4dc4-8e9c-26bad4b087ce\"},{\"properties\":{\"displayName\":\"Ensure that 'Python version' is the latest, if used as a part of the Web app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for Python software either due to security flaws or to include additional functionality. Using the latest Python version for web apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"WindowsPythonLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Latest Python version\",\"description\":\"Latest supported Python version for App Services\"},\"defaultValue\":\"3.6\"},\"LinuxPythonLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Linux Latest Python version\",\"description\":\"Latest supported Python version for App Services\"},\"defaultValue\":\"3.8\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"PYTHON\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"[concat('PYTHON|', parameters('LinuxPythonLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"[parameters('WindowsPythonLatestVersion')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7008174a-fd10-4ef0-817e-fc820a951d73\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7008174a-fd10-4ef0-817e-fc820a951d73\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Windows Components'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Windows Components'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"SendFileSamplesWhenFurtherAnalysisIsRequired\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Send file samples when further analysis is required\",\"description\":\"Specifies whether and how Windows Defender will submit samples of suspected malware to Microsoft for further analysis when opt-in for MAPS telemetry is set.\"},\"defaultValue\":\"1\"},\"AllowIndexingOfEncryptedFiles\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Allow indexing of encrypted files\",\"description\":\"Specifies whether encrypted items are allowed to be indexed.\"},\"defaultValue\":\"0\"},\"AllowTelemetry\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Allow Telemetry\",\"description\":\"Specifies configuration of the amount of diagnostic and usage data reported to Microsoft. The data is transmitted securely and sensitive data is not sent.\"},\"defaultValue\":\"2\"},\"AllowUnencryptedTraffic\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Allow unencrypted traffic\",\"description\":\"Specifies whether the Windows Remote Management (WinRM) service sends and receives unencrypted messages over the network.\"},\"defaultValue\":\"0\"},\"AlwaysInstallWithElevatedPrivileges\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Always install with elevated privileges\",\"description\":\"Specifies whether Windows Installer should use system permissions when it installs any program on the system.\"},\"defaultValue\":\"0\"},\"AlwaysPromptForPasswordUponConnection\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Always prompt for password upon connection\",\"description\":\"Specifies whether Terminal Services/Remote Desktop Connection always prompts the client computer for a password upon connection.\"},\"defaultValue\":\"1\"},\"ApplicationSpecifyTheMaximumLogFileSizeKB\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Application: Specify the maximum log file size (KB)\",\"description\":\"Specifies the maximum size for the Application event log in kilobytes.\"},\"defaultValue\":\"32768\"},\"AutomaticallySendMemoryDumpsForOSgeneratedErrorReports\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Automatically send memory dumps for OS-generated error reports\",\"description\":\"Specifies if memory dumps in support of OS-generated error reports can be sent to Microsoft automatically.\"},\"defaultValue\":\"1\"},\"ConfigureDefaultConsent\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Configure Default consent\",\"description\":\"Specifies setting of the default consent handling for error reports sent to Microsoft.\"},\"defaultValue\":\"4\"},\"ConfigureWindowsSmartScreen\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Configure Windows SmartScreen\",\"description\":\"Specifies how to manage the behavior of Windows SmartScreen. Windows SmartScreen helps keep PCs safer by warning users before running unrecognized programs downloaded from the Internet. Some information is sent to Microsoft about files and programs run on PCs with this feature enabled.\"},\"defaultValue\":\"1\"},\"DisallowDigestAuthentication\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Disallow Digest authentication\",\"description\":\"Specifies whether the Windows Remote Management (WinRM) client will not use Digest authentication.\"},\"defaultValue\":\"0\"},\"DisallowWinRMFromStoringRunAsCredentials\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Disallow WinRM from storing RunAs credentials\",\"description\":\"Specifies whether the Windows Remote Management (WinRM) service will not allow RunAs credentials to be stored for any plug-ins.\"},\"defaultValue\":\"1\"},\"DoNotAllowPasswordsToBeSaved\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Do not allow passwords to be saved\",\"description\":\"Specifies whether to prevent Remote Desktop Services - Terminal Services clients from saving passwords on a computer.\"},\"defaultValue\":\"1\"},\"SecuritySpecifyTheMaximumLogFileSizeKB\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Security: Specify the maximum log file size (KB)\",\"description\":\"Specifies the maximum size for the Security event log in kilobytes.\"},\"defaultValue\":\"196608\"},\"SetClientConnectionEncryptionLevel\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Set client connection encryption level\",\"description\":\"Specifies whether to require the use of a specific encryption level to secure communications between client computers and RD Session Host servers during Remote Desktop Protocol (RDP) connections. This policy only applies when you are using native RDP encryption.\"},\"defaultValue\":\"3\"},\"SetTheDefaultBehaviorForAutoRun\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Set the default behavior for AutoRun\",\"description\":\"Specifies the default behavior for Autorun commands. Autorun commands are generally stored in autorun.inf files. They often launch the installation program or other routines.\"},\"defaultValue\":\"1\"},\"SetupSpecifyTheMaximumLogFileSizeKB\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Setup: Specify the maximum log file size (KB)\",\"description\":\"Specifies the maximum size for the Setup event log in kilobytes.\"},\"defaultValue\":\"32768\"},\"SystemSpecifyTheMaximumLogFileSizeKB\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"System: Specify the maximum log file size (KB)\",\"description\":\"Specifies the maximum size for the System event log in kilobytes.\"},\"defaultValue\":\"32768\"},\"TurnOffDataExecutionPreventionForExplorer\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Turn off Data Execution Prevention for Explorer\",\"description\":\"Specifies whether to turn off Data Execution Prevention for Windows File Explorer. Disabling data execution prevention can allow certain legacy plug-in applications to function without terminating Explorer.\"},\"defaultValue\":\"0\"},\"SpecifyTheIntervalToCheckForDefinitionUpdates\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Specify the interval to check for definition updates\",\"description\":\"Specifies an interval at which to check for Windows Defender definition updates. The time value is represented as the number of hours between update checks.\"},\"defaultValue\":\"8\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_WindowsComponents\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Send file samples when further analysis is required;ExpectedValue', '=', parameters('SendFileSamplesWhenFurtherAnalysisIsRequired'), ',', 'Allow indexing of encrypted files;ExpectedValue', '=', parameters('AllowIndexingOfEncryptedFiles'), ',', 'Allow Telemetry;ExpectedValue', '=', parameters('AllowTelemetry'), ',', 'Allow unencrypted traffic;ExpectedValue', '=', parameters('AllowUnencryptedTraffic'), ',', 'Always install with elevated privileges;ExpectedValue', '=', parameters('AlwaysInstallWithElevatedPrivileges'), ',', 'Always prompt for password upon connection;ExpectedValue', '=', parameters('AlwaysPromptForPasswordUponConnection'), ',', 'Application: Specify the maximum log file size (KB);ExpectedValue', '=', parameters('ApplicationSpecifyTheMaximumLogFileSizeKB'), ',', 'Automatically send memory dumps for OS-generated error reports;ExpectedValue', '=', parameters('AutomaticallySendMemoryDumpsForOSgeneratedErrorReports'), ',', 'Configure Default consent;ExpectedValue', '=', parameters('ConfigureDefaultConsent'), ',', 'Configure Windows SmartScreen;ExpectedValue', '=', parameters('ConfigureWindowsSmartScreen'), ',', 'Disallow Digest authentication;ExpectedValue', '=', parameters('DisallowDigestAuthentication'), ',', 'Disallow WinRM from storing RunAs credentials;ExpectedValue', '=', parameters('DisallowWinRMFromStoringRunAsCredentials'), ',', 'Do not allow passwords to be saved;ExpectedValue', '=', parameters('DoNotAllowPasswordsToBeSaved'), ',', 'Security: Specify the maximum log file size (KB);ExpectedValue', '=', parameters('SecuritySpecifyTheMaximumLogFileSizeKB'), ',', 'Set client connection encryption level;ExpectedValue', '=', parameters('SetClientConnectionEncryptionLevel'), ',', 'Set the default behavior for AutoRun;ExpectedValue', '=', parameters('SetTheDefaultBehaviorForAutoRun'), ',', 'Setup: Specify the maximum log file size (KB);ExpectedValue', '=', parameters('SetupSpecifyTheMaximumLogFileSizeKB'), ',', 'System: Specify the maximum log file size (KB);ExpectedValue', '=', parameters('SystemSpecifyTheMaximumLogFileSizeKB'), ',', 'Turn off Data Execution Prevention for Explorer;ExpectedValue', '=', parameters('TurnOffDataExecutionPreventionForExplorer'), ',', 'Specify the interval to check for definition updates;ExpectedValue', '=', parameters('SpecifyTheIntervalToCheckForDefinitionUpdates')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_WindowsComponents\"},\"SendFileSamplesWhenFurtherAnalysisIsRequired\":{\"value\":\"[parameters('SendFileSamplesWhenFurtherAnalysisIsRequired')]\"},\"AllowIndexingOfEncryptedFiles\":{\"value\":\"[parameters('AllowIndexingOfEncryptedFiles')]\"},\"AllowTelemetry\":{\"value\":\"[parameters('AllowTelemetry')]\"},\"AllowUnencryptedTraffic\":{\"value\":\"[parameters('AllowUnencryptedTraffic')]\"},\"AlwaysInstallWithElevatedPrivileges\":{\"value\":\"[parameters('AlwaysInstallWithElevatedPrivileges')]\"},\"AlwaysPromptForPasswordUponConnection\":{\"value\":\"[parameters('AlwaysPromptForPasswordUponConnection')]\"},\"ApplicationSpecifyTheMaximumLogFileSizeKB\":{\"value\":\"[parameters('ApplicationSpecifyTheMaximumLogFileSizeKB')]\"},\"AutomaticallySendMemoryDumpsForOSgeneratedErrorReports\":{\"value\":\"[parameters('AutomaticallySendMemoryDumpsForOSgeneratedErrorReports')]\"},\"ConfigureDefaultConsent\":{\"value\":\"[parameters('ConfigureDefaultConsent')]\"},\"ConfigureWindowsSmartScreen\":{\"value\":\"[parameters('ConfigureWindowsSmartScreen')]\"},\"DisallowDigestAuthentication\":{\"value\":\"[parameters('DisallowDigestAuthentication')]\"},\"DisallowWinRMFromStoringRunAsCredentials\":{\"value\":\"[parameters('DisallowWinRMFromStoringRunAsCredentials')]\"},\"DoNotAllowPasswordsToBeSaved\":{\"value\":\"[parameters('DoNotAllowPasswordsToBeSaved')]\"},\"SecuritySpecifyTheMaximumLogFileSizeKB\":{\"value\":\"[parameters('SecuritySpecifyTheMaximumLogFileSizeKB')]\"},\"SetClientConnectionEncryptionLevel\":{\"value\":\"[parameters('SetClientConnectionEncryptionLevel')]\"},\"SetTheDefaultBehaviorForAutoRun\":{\"value\":\"[parameters('SetTheDefaultBehaviorForAutoRun')]\"},\"SetupSpecifyTheMaximumLogFileSizeKB\":{\"value\":\"[parameters('SetupSpecifyTheMaximumLogFileSizeKB')]\"},\"SystemSpecifyTheMaximumLogFileSizeKB\":{\"value\":\"[parameters('SystemSpecifyTheMaximumLogFileSizeKB')]\"},\"TurnOffDataExecutionPreventionForExplorer\":{\"value\":\"[parameters('TurnOffDataExecutionPreventionForExplorer')]\"},\"SpecifyTheIntervalToCheckForDefinitionUpdates\":{\"value\":\"[parameters('SpecifyTheIntervalToCheckForDefinitionUpdates')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"SendFileSamplesWhenFurtherAnalysisIsRequired\":{\"type\":\"string\"},\"AllowIndexingOfEncryptedFiles\":{\"type\":\"string\"},\"AllowTelemetry\":{\"type\":\"string\"},\"AllowUnencryptedTraffic\":{\"type\":\"string\"},\"AlwaysInstallWithElevatedPrivileges\":{\"type\":\"string\"},\"AlwaysPromptForPasswordUponConnection\":{\"type\":\"string\"},\"ApplicationSpecifyTheMaximumLogFileSizeKB\":{\"type\":\"string\"},\"AutomaticallySendMemoryDumpsForOSgeneratedErrorReports\":{\"type\":\"string\"},\"ConfigureDefaultConsent\":{\"type\":\"string\"},\"ConfigureWindowsSmartScreen\":{\"type\":\"string\"},\"DisallowDigestAuthentication\":{\"type\":\"string\"},\"DisallowWinRMFromStoringRunAsCredentials\":{\"type\":\"string\"},\"DoNotAllowPasswordsToBeSaved\":{\"type\":\"string\"},\"SecuritySpecifyTheMaximumLogFileSizeKB\":{\"type\":\"string\"},\"SetClientConnectionEncryptionLevel\":{\"type\":\"string\"},\"SetTheDefaultBehaviorForAutoRun\":{\"type\":\"string\"},\"SetupSpecifyTheMaximumLogFileSizeKB\":{\"type\":\"string\"},\"SystemSpecifyTheMaximumLogFileSizeKB\":{\"type\":\"string\"},\"TurnOffDataExecutionPreventionForExplorer\":{\"type\":\"string\"},\"SpecifyTheIntervalToCheckForDefinitionUpdates\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Send file samples when further analysis is required;ExpectedValue\",\"value\":\"[parameters('SendFileSamplesWhenFurtherAnalysisIsRequired')]\"},{\"name\":\"Allow indexing of encrypted files;ExpectedValue\",\"value\":\"[parameters('AllowIndexingOfEncryptedFiles')]\"},{\"name\":\"Allow Telemetry;ExpectedValue\",\"value\":\"[parameters('AllowTelemetry')]\"},{\"name\":\"Allow unencrypted traffic;ExpectedValue\",\"value\":\"[parameters('AllowUnencryptedTraffic')]\"},{\"name\":\"Always install with elevated privileges;ExpectedValue\",\"value\":\"[parameters('AlwaysInstallWithElevatedPrivileges')]\"},{\"name\":\"Always prompt for password upon connection;ExpectedValue\",\"value\":\"[parameters('AlwaysPromptForPasswordUponConnection')]\"},{\"name\":\"Application: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('ApplicationSpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"Automatically send memory dumps for OS-generated error reports;ExpectedValue\",\"value\":\"[parameters('AutomaticallySendMemoryDumpsForOSgeneratedErrorReports')]\"},{\"name\":\"Configure Default consent;ExpectedValue\",\"value\":\"[parameters('ConfigureDefaultConsent')]\"},{\"name\":\"Configure Windows SmartScreen;ExpectedValue\",\"value\":\"[parameters('ConfigureWindowsSmartScreen')]\"},{\"name\":\"Disallow Digest authentication;ExpectedValue\",\"value\":\"[parameters('DisallowDigestAuthentication')]\"},{\"name\":\"Disallow WinRM from storing RunAs credentials;ExpectedValue\",\"value\":\"[parameters('DisallowWinRMFromStoringRunAsCredentials')]\"},{\"name\":\"Do not allow passwords to be saved;ExpectedValue\",\"value\":\"[parameters('DoNotAllowPasswordsToBeSaved')]\"},{\"name\":\"Security: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('SecuritySpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"Set client connection encryption level;ExpectedValue\",\"value\":\"[parameters('SetClientConnectionEncryptionLevel')]\"},{\"name\":\"Set the default behavior for AutoRun;ExpectedValue\",\"value\":\"[parameters('SetTheDefaultBehaviorForAutoRun')]\"},{\"name\":\"Setup: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('SetupSpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"System: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('SystemSpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"Turn off Data Execution Prevention for Explorer;ExpectedValue\",\"value\":\"[parameters('TurnOffDataExecutionPreventionForExplorer')]\"},{\"name\":\"Specify the interval to check for definition updates;ExpectedValue\",\"value\":\"[parameters('SpecifyTheIntervalToCheckForDefinitionUpdates')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Send file samples when further analysis is required;ExpectedValue\",\"value\":\"[parameters('SendFileSamplesWhenFurtherAnalysisIsRequired')]\"},{\"name\":\"Allow indexing of encrypted files;ExpectedValue\",\"value\":\"[parameters('AllowIndexingOfEncryptedFiles')]\"},{\"name\":\"Allow Telemetry;ExpectedValue\",\"value\":\"[parameters('AllowTelemetry')]\"},{\"name\":\"Allow unencrypted traffic;ExpectedValue\",\"value\":\"[parameters('AllowUnencryptedTraffic')]\"},{\"name\":\"Always install with elevated privileges;ExpectedValue\",\"value\":\"[parameters('AlwaysInstallWithElevatedPrivileges')]\"},{\"name\":\"Always prompt for password upon connection;ExpectedValue\",\"value\":\"[parameters('AlwaysPromptForPasswordUponConnection')]\"},{\"name\":\"Application: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('ApplicationSpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"Automatically send memory dumps for OS-generated error reports;ExpectedValue\",\"value\":\"[parameters('AutomaticallySendMemoryDumpsForOSgeneratedErrorReports')]\"},{\"name\":\"Configure Default consent;ExpectedValue\",\"value\":\"[parameters('ConfigureDefaultConsent')]\"},{\"name\":\"Configure Windows SmartScreen;ExpectedValue\",\"value\":\"[parameters('ConfigureWindowsSmartScreen')]\"},{\"name\":\"Disallow Digest authentication;ExpectedValue\",\"value\":\"[parameters('DisallowDigestAuthentication')]\"},{\"name\":\"Disallow WinRM from storing RunAs credentials;ExpectedValue\",\"value\":\"[parameters('DisallowWinRMFromStoringRunAsCredentials')]\"},{\"name\":\"Do not allow passwords to be saved;ExpectedValue\",\"value\":\"[parameters('DoNotAllowPasswordsToBeSaved')]\"},{\"name\":\"Security: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('SecuritySpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"Set client connection encryption level;ExpectedValue\",\"value\":\"[parameters('SetClientConnectionEncryptionLevel')]\"},{\"name\":\"Set the default behavior for AutoRun;ExpectedValue\",\"value\":\"[parameters('SetTheDefaultBehaviorForAutoRun')]\"},{\"name\":\"Setup: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('SetupSpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"System: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('SystemSpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"Turn off Data Execution Prevention for Explorer;ExpectedValue\",\"value\":\"[parameters('TurnOffDataExecutionPreventionForExplorer')]\"},{\"name\":\"Specify the interval to check for definition updates;ExpectedValue\",\"value\":\"[parameters('SpecifyTheIntervalToCheckForDefinitionUpdates')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7040a231-fb65-4412-8c0a-b365f4866c24\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7040a231-fb65-4412-8c0a-b365f4866c24\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1254 - Contingency Plan | Resume All Missions / Business Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1254\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/704e136a-4fe0-427c-b829-cd69957f5d2b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"704e136a-4fe0-427c-b829-cd69957f5d2b\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - System'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - System'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesSystem\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7066131b-61a6-4917-a7e4-72e8983f0aa6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7066131b-61a6-4917-a7e4-72e8983f0aa6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1509 - Position Risk Designation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1509\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/70792197-9bfc-4813-905a-bd33993e327f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"70792197-9bfc-4813-905a-bd33993e327f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1541 - Risk Assessment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1541\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/70f6af82-7be6-44aa-9b15-8b9231b2e434\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"70f6af82-7be6-44aa-9b15-8b9231b2e434\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1691 - Information System Monitoring | Automated Tools For Real-Time Analysis\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1691\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/71475fb4-49bd-450b-a1a5-f63894c24725\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"71475fb4-49bd-450b-a1a5-f63894c24725\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1481 - Temperature And Humidity Controls\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1481\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/717a1c78-a267-4f56-ac58-ee6c54dc4339\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"717a1c78-a267-4f56-ac58-ee6c54dc4339\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1129 - Time Stamps | Synchronization With Authoritative Time Source\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1129\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/71bb965d-4047-4623-afd4-b8189a58df5d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"71bb965d-4047-4623-afd4-b8189a58df5d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1395 - System Maintenance Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1395\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7207a023-a517-41c5-9df2-09d4c6845a05\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7207a023-a517-41c5-9df2-09d4c6845a05\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs on which the DSC configuration is not compliant\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows VMs on which the Desired State Configuration (DSC) configuration is not compliant. This policy is only applicable to machines with WMF 4 and above. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDscConfiguration\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7227ebe5-9ff7-47ab-b823-171cd02fb90f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7227ebe5-9ff7-47ab-b823-171cd02fb90f\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Administrative Templates - Network'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - Network'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdministrativeTemplatesNetwork\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7229bd6a-693d-478a-87f0-1dc1af06f3b8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7229bd6a-693d-478a-87f0-1dc1af06f3b8\"},{\"properties\":{\"displayName\":\"Ensure that 'Python version' is the latest, if used as a part of the Function app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for Python software either due to security flaws or to include additional functionality. Using the latest Python version for Function apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"WindowsPythonLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Latest Python version\",\"description\":\"Latest supported Python version for App Services\"},\"defaultValue\":\"3.6\"},\"LinuxPythonLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Linux Latest Python version\",\"description\":\"Latest supported Python version for App Services\"},\"defaultValue\":\"3.8\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"PYTHON\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"[concat('PYTHON|', parameters('LinuxPythonLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"[parameters('WindowsPythonLatestVersion')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7238174a-fd10-4ef0-817e-fc820a951d73\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7238174a-fd10-4ef0-817e-fc820a951d73\"},{\"properties\":{\"displayName\":\"Ensure that 'PHP version' is the latest, if used as a part of the WEB app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for PHP software either due to security flaws or to include additional functionality. Using the latest PHP version for web apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"PHPLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Latest PHP version\",\"description\":\"Latest supported PHP version for App Services\"},\"defaultValue\":\"7.3\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"PHP\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"[concat('PHP|', parameters('PHPLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"[parameters('PHPLatestVersion')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7261b898-8a84-4db8-9e04-18527132abb3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7261b898-8a84-4db8-9e04-18527132abb3\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that allow re-use of the previous 24 passwords\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that allow re-use of the previous 24 passwords. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"EnforcePasswordHistory\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"EnforcePasswordHistory\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/726671ac-c4de-4908-8c7d-6043ae62e3b6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"726671ac-c4de-4908-8c7d-6043ae62e3b6\"},{\"properties\":{\"displayName\":\"Add a tag to resource groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Adds the specified tag and value when any resource group missing this tag is created or updated. Existing resource groups can be remediated by triggering a remediation task. If the tag exists with a different value it will not be changed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions/resourceGroups\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"add\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[parameters('tagValue')]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/726aca4c-86e9-4b04-b0c5-073027359532\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"726aca4c-86e9-4b04-b0c5-073027359532\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1524 - Personnel Transfer\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1524\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/72f1cb4e-2439-4fe8-88ea-b8671ce3c268\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"72f1cb4e-2439-4fe8-88ea-b8671ce3c268\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1393 - Information Spillage Response | Exposure To Unauthorized Personnel\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1393\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/731856d8-1598-4b75-92de-7d46235747c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"731856d8-1598-4b75-92de-7d46235747c0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1101 - Audit And Accountability Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1101\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7327b708-f0e0-457d-9d2a-527fcc9c9a65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7327b708-f0e0-457d-9d2a-527fcc9c9a65\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1456 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1456\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/733ba9e3-9e7c-440a-a7aa-6196a90a2870\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"733ba9e3-9e7c-440a-a7aa-6196a90a2870\"},{\"properties\":{\"displayName\":\"Deploy Workflow Automation for Azure Security Center recommendations\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable automation of Azure Security Center recommendations. This policy deploys a workflow automation with your conditions and triggers on the assigned scope. To deploy this policy on newly created subscriptions, open the Compliance tab, select the relevant non-compliant assignment and create a remediation task.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"automationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Automation name\",\"description\":\"This is the automation name.\"}},\"resourceGroupName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group name\",\"description\":\"The resource group name where the workflow automation is created. If you enter a name for a resource group that doesn't exist, it'll be created in the subscription.\"}},\"resourceGroupLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group location\",\"description\":\"The location where the resource group and the workflow automation are created.\",\"strongType\":\"location\"}},\"recommendationNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation IDs\",\"description\":\"For all recommendations, leave empty. For specific recommendations, enter a list of recommendation IDs separated by semicolons (';'). Recommendation IDs are available through the Assessments API (https://docs.microsoft.com/en-us/rest/api/securitycenter/assessments), or Azure Resource Graph Explorer (https://portal.azure.com/#blade/HubsExtension/ArgQueryBlade), choose securityresources and microsoft.security/assessments.\"},\"defaultValue\":[]},\"recommendationSeverities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation severities\",\"description\":\"Determines recommendation severities. Example: High;Medium;Low;\"},\"allowedValues\":[\"High\",\"Medium\",\"Low\"],\"defaultValue\":[\"High\",\"Medium\",\"Low\"]},\"recommendationStates\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation states\",\"description\":\"Determines recommendation states. Recommendations with unhealthy state require your attention to resolve. When a recommendation state is healthy, it no longer applies to the resource as Security Center detects it as healthy. A recommendation is not-applicable if, for example, it was disabled in the Security Policy. Example: Healthy;Unhealthy;Not Applicable;\"},\"allowedValues\":[\"Healthy\",\"Unhealthy\",\"Not Applicable\"],\"defaultValue\":[\"Healthy\",\"Unhealthy\",\"Not Applicable\"]},\"logicAppResourceId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Logic App\",\"description\":\"The Logic App that is triggered. If you do not already have a logic app, visit Logic Apps to create one (https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Logic%2Fworkflows).\",\"strongType\":\"Microsoft.Logic/workflows\",\"assignPermissions\":true}},\"logicAppTrigger\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Logic app trigger\",\"description\":\"The trigger connector of the logic app that is triggered. Possible values: 'Manual (Incoming HTTP request)', 'When an Azure Security Center Recommendation is created or triggered'.\"},\"allowedValues\":[\"Manual (Incoming HTTP request)\",\"When an Azure Security Center Recommendation is created or triggered\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Security/automations\",\"name\":\"[parameters('automationName')]\",\"existenceScope\":\"resourcegroup\",\"ResourceGroupName\":\"[parameters('resourceGroupName')]\",\"deploymentScope\":\"subscription\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"location\":\"westeurope\",\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"automationName\":{\"type\":\"string\"},\"resourceGroupName\":{\"type\":\"string\"},\"resourceGroupLocation\":{\"type\":\"string\"},\"recommendationNames\":{\"type\":\"array\"},\"recommendationSeverities\":{\"type\":\"array\"},\"recommendationStates\":{\"type\":\"array\"},\"logicAppResourceId\":{\"type\":\"string\"},\"logicAppTrigger\":{\"type\":\"string\"},\"guidValue\":{\"type\":\"string\",\"defaultValue\":\"[newGuid()]\"}},\"variables\":{\"scopeDescription\":\"scope for subscription {0}\",\"recommendationNamesLength\":\"[length(parameters('recommendationNames'))]\",\"recommendationSeveritiesLength\":\"[length(parameters('recommendationSeverities'))]\",\"recommendationStatesLength\":\"[length(parameters('recommendationStates'))]\",\"recommendationNamesLengthIfEmpty\":\"[if(equals(variables('recommendationNamesLength'), 0), 1, variables('recommendationNamesLength'))]\",\"recommendationSeveritiesLengthIfEmpty\":\"[if(equals(variables('recommendationSeveritiesLength'), 0), 1, variables('recommendationSeveritiesLength'))]\",\"recommendationStatesLengthIfEmpty\":\"[if(equals(variables('recommendationStatesLength'), 0), 1, variables('recommendationStatesLength'))]\",\"totalRuleCombinationsForOneRecommendationName\":\"[mul(variables('recommendationSeveritiesLengthIfEmpty'),variables('recommendationStatesLengthIfEmpty'))]\",\"totalRuleCombinationsForOneRecommendationSeverity\":\"[variables('recommendationStatesLengthIfEmpty')]\",\"totalRuleCombinationsForOneRecommendationState\":1,\"stateMap\":{\"Healthy\":\"healthy\",\"Unhealthy\":\"unhealthy\",\"Not Applicable\":\"notapplicable\"},\"triggerMap\":{\"Manual (Incoming HTTP request)\":\"manual\",\"When an Azure Security Center Recommendation is created or triggered\":\"When_an_Azure_Security_Center_Recommendation_is_created_or_triggered\"}},\"resources\":[{\"name\":\"[parameters('resourceGroupName')]\",\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2019-10-01\",\"location\":\"[parameters('resourceGroupLocation')]\",\"tags\":{},\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2019-10-01\",\"name\":\"[concat('nestedAutomationDeployment', '_', parameters('guidValue'))]\",\"resourceGroup\":\"[parameters('resourceGroupName')]\",\"dependsOn\":[\"[resourceId('Microsoft.Resources/resourceGroups/', parameters('resourceGroupName'))]\"],\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"tags\":{},\"apiVersion\":\"2019-01-01-preview\",\"location\":\"[parameters('resourceGroupLocation')]\",\"name\":\"[parameters('automationName')]\",\"type\":\"Microsoft.Security/automations\",\"dependsOn\":[],\"properties\":{\"description\":\"Workflow Automation for Azure Security Center recommendations via policy\",\"isEnabled\":true,\"scopes\":[{\"description\":\"[replace(variables('scopeDescription'),'{0}', subscription().subscriptionId)]\",\"scopePath\":\"[subscription().id]\"}],\"sources\":[{\"eventSource\":\"Assessments\",\"copy\":[{\"name\":\"ruleSets\",\"count\":\"[mul(variables('recommendationNamesLengthIfEmpty'), mul(variables('recommendationSeveritiesLengthIfEmpty'),variables('recommendationStatesLengthIfEmpty')))]\",\"input\":{\"rules\":[{\"propertyJPath\":\"[if(equals(variables('recommendationNamesLength'), 0), 'type', 'name')]\",\"propertyType\":\"string\",\"expectedValue\":\"[if(equals(variables('recommendationNamesLength'), 0), 'Microsoft.Security/assessments', parameters('recommendationNames')[mod(div(copyIndex('ruleSets'), variables('totalRuleCombinationsForOneRecommendationName')), variables('recommendationNamesLength'))])]\",\"operator\":\"Contains\"},{\"propertyJPath\":\"properties.metadata.severity\",\"propertyType\":\"string\",\"expectedValue\":\"[parameters('recommendationSeverities')[mod(div(copyIndex('ruleSets'), variables('totalRuleCombinationsForOneRecommendationSeverity')), variables('recommendationSeveritiesLength'))]]\",\"operator\":\"Equals\"},{\"propertyJPath\":\"properties.status.code\",\"propertyType\":\"string\",\"expectedValue\":\"[variables('stateMap')[parameters('recommendationStates')[mod(div(copyIndex('ruleSets'), variables('totalRuleCombinationsForOneRecommendationState')), variables('recommendationStatesLength'))]]]\",\"operator\":\"Contains\"}]}}]}],\"actions\":[{\"actionType\":\"LogicApp\",\"logicAppResourceId\":\"[parameters('logicAppResourceId')]\",\"uri\":\"[listCallbackUrl(concat(parameters('logicAppResourceId'), '/triggers/', variables('triggerMap')[parameters('logicAppTrigger')]),'2016-06-01').value]\"}]}}]}}}]},\"parameters\":{\"automationName\":{\"value\":\"[parameters('automationName')]\"},\"resourceGroupName\":{\"value\":\"[parameters('resourceGroupName')]\"},\"resourceGroupLocation\":{\"value\":\"[parameters('resourceGroupLocation')]\"},\"recommendationNames\":{\"value\":\"[parameters('recommendationNames')]\"},\"recommendationSeverities\":{\"value\":\"[parameters('recommendationSeverities')]\"},\"recommendationStates\":{\"value\":\"[parameters('recommendationStates')]\"},\"logicAppResourceId\":{\"value\":\"[parameters('logicAppResourceId')]\"},\"logicAppTrigger\":{\"value\":\"[parameters('logicAppTrigger')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/73d6ab6c-2475-4850-afd6-43795f3492ef\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"73d6ab6c-2475-4850-afd6-43795f3492ef\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1581 - Information System Documentation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1581\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/742b549b-7a25-465f-b83c-ea1ffb4f4e0e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"742b549b-7a25-465f-b83c-ea1ffb4f4e0e\"},{\"properties\":{\"displayName\":\"Allowed storage account SKUs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables you to specify a set of storage account SKUs that your organization can deploy.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Storage\"},\"parameters\":{\"listOfAllowedSKUs\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of SKUs that can be specified for storage accounts.\",\"displayName\":\"Allowed SKUs\",\"strongType\":\"StorageSKUs\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"not\":{\"field\":\"Microsoft.Storage/storageAccounts/sku.name\",\"in\":\"[parameters('listOfAllowedSKUs')]\"}}]},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7433c107-6db4-4ad1-b57a-a76dce0154a1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7433c107-6db4-4ad1-b57a-a76dce0154a1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1631 - Boundary Protection | Deny By Default / Allow By Exception\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1631\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/74ae9b8e-e7bb-4c9c-992f-c535282f7a2c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"74ae9b8e-e7bb-4c9c-992f-c535282f7a2c\"},{\"properties\":{\"displayName\":\"Ensure that 'Python version' is the latest, if used as a part of the Api app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for Python software either due to security flaws or to include additional functionality. Using the latest Python version for Api apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"WindowsPythonLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Latest Python version\",\"description\":\"Latest supported Python version for App Services\"},\"defaultValue\":\"3.6\"},\"LinuxPythonLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Linux Latest Python version\",\"description\":\"Latest supported Python version for App Services\"},\"defaultValue\":\"3.8\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"PYTHON\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"[concat('PYTHON|', parameters('LinuxPythonLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"[parameters('WindowsPythonLatestVersion')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/74c3584d-afae-46f7-a20a-6f8adba71a16\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"74c3584d-afae-46f7-a20a-6f8adba71a16\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1417 - Nonlocal Maintenance | Comparable Security / Sanitization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1417\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7522ed84-70d5-4181-afc0-21e50b1b6d0e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7522ed84-70d5-4181-afc0-21e50b1b6d0e\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit enabling of diagnostic logs in App Services\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit enabling of diagnostic logs on the app. This enables you to recreate activity trails for investigation purposes if a security incident occurs or your network is compromised\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"App Service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites/config\"},{\"field\":\"name\",\"equals\":\"web\"},{\"anyOf\":[{\"field\":\"Microsoft.Web/sites/config/detailedErrorLoggingEnabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Web/sites/config/httpLoggingEnabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Web/sites/config/requestTracingEnabled\",\"notEquals\":\"true\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/752c6934-9bcc-4749-b004-655e676ae2ac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"752c6934-9bcc-4749-b004-655e676ae2ac\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1468 - Visitor Access Records | Automated Records Maintenance / Review\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1468\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/75603f96-80a1-4757-991d-5a1221765ddd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"75603f96-80a1-4757-991d-5a1221765ddd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1053 - Session Lock | Pattern-Hiding Displays\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1053\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7582b19c-9dba-438e-aed8-ede59ac35ba3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7582b19c-9dba-438e-aed8-ede59ac35ba3\"},{\"properties\":{\"displayName\":\"Private endpoint should be enabled for MySQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MySQL servers not configured to use a private endpoint. For more details, visit https://aka.ms/mysqlprivatelink.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforMySQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforMySQL/servers/privateEndpointConnections\",\"existenceCondition\":{\"field\":\"Microsoft.DBforMySQL/servers/privateEndpointConnections/privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7595c971-233d-4bcf-bd18-596129188c49\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7595c971-233d-4bcf-bd18-596129188c49\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1459 - Access Control For Transmission Medium\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1459\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/75cc73c7-5cdb-479d-a06f-7b4d0dbb1da0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"75cc73c7-5cdb-479d-a06f-7b4d0dbb1da0\"},{\"properties\":{\"displayName\":\"Vulnerabilities should be remediated by a Vulnerability Assessment solution\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Monitors vulnerabilities detected by Vulnerability Assessment solution and VMs without a Vulnerability Assessment solution in Azure Security Center as recommendations.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"vulnerabilityAssessment\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/760a85ff-6162-42b3-8d70-698e268f648c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"760a85ff-6162-42b3-8d70-698e268f648c\"},{\"properties\":{\"displayName\":\"Deploy Dependency agent for Linux virtual machine scale sets\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Dependency agent for Linux virtual machine scale sets if the VM Image (OS) is in the list defined and the agent is not installed. Note: if your scale set upgradePolicy is set to Manual, you need to apply the extension to the all virtual machines in the set by calling upgrade on them. In CLI this would be az vmss update-instances.\",\"metadata\":{\"version\":\"1.1.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"14.04.0-LTS\",\"14.04.1-LTS\",\"14.04.5-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"16.04-LTS\",\"16.04.0-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"18.04-LTS\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"12-SP2\",\"12-SP3\",\"12-SP4\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"DependencyAgentLinux\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"DependencyAgent\",\"vmExtensionPublisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"vmExtensionType\":\"DependencyAgentLinux\",\"vmExtensionTypeHandlerVersion\":\"9.7\"},\"resources\":[{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"apiVersion\":\"2019-12-01\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for: ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/765266ab-e40e-4c61-bcb2-5a5275d0b7c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"765266ab-e40e-4c61-bcb2-5a5275d0b7c0\"},{\"properties\":{\"displayName\":\"Private endpoint connections on Azure SQL Database should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Private endpoint connections enforce secure communication by enabling private connectivity to Azure SQL Database.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"count\":{\"field\":\"Microsoft.Sql/servers/privateEndpointConnections[*]\",\"where\":{\"field\":\"Microsoft.Sql/servers/privateEndpointConnections[*].privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}},\"less\":1}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7698e800-9299-47a6-b3b6-5a0fee576eed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7698e800-9299-47a6-b3b6-5a0fee576eed\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1055 - Session Termination| User-Initiated Logouts / Message Displays\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1055\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/769efd9b-3587-4e22-90ce-65ddcd5bd969\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"769efd9b-3587-4e22-90ce-65ddcd5bd969\"},{\"properties\":{\"displayName\":\"Audit delegation of scopes to a managing tenant\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit delegation of scopes to a managing tenant via Azure Lighthouse.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Lighthouse\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ManagedServices/registrationAssignments\"},{\"value\":\"true\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/76bed37b-484f-430f-a009-fd7592dff818\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"76bed37b-484f-430f-a009-fd7592dff818\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1058 - Permitted Actions Without Identification Or Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1058\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/76e85d08-8fbb-4112-a1c1-93521e6a9254\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"76e85d08-8fbb-4112-a1c1-93521e6a9254\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1508 - Position Risk Designation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1508\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/76f500cc-4bca-4583-bda1-6d084dc21086\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"76f500cc-4bca-4583-bda1-6d084dc21086\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1423 - Maintenance Personnel | Individuals Without Appropriate Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1423\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7741669e-d4f6-485a-83cb-e70ce7cbbc20\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7741669e-d4f6-485a-83cb-e70ce7cbbc20\"},{\"properties\":{\"displayName\":\"Azure subscriptions should have a log profile for Activity Log\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy ensures if a log profile is enabled for exporting activity logs. It audits if there is no log profile created to export the logs either to a storage account or to an event hub.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/logProfiles\",\"existenceCondition\":{\"field\":\"Microsoft.Insights/logProfiles/categories\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7796937f-307b-4598-941c-67d3a05ebfe7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7796937f-307b-4598-941c-67d3a05ebfe7\"},{\"properties\":{\"displayName\":\"Virtual network firewall rule on Azure SQL Database should be enabled to allow traffic from the specified subnet\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Virtual network based firewall rules are used to enable traffic from a specific subnet to Azure SQL Database while ensuring the traffic stays within the Azure boundary.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"subnetId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Subnet ID\",\"strongType\":\"Microsoft.Network/virtualNetworks/subnets\",\"description\":\"The resource ID of the virtual network subnet that should have a rule enabled. Example: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"AuditIfNotExists\",\"details\":{\"type\":\"Microsoft.Sql/servers/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/virtualNetworkRules/virtualNetworkSubnetId\",\"equals\":\"[parameters('subnetId')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/77e8b146-0078-4fb2-b002-e112381199f0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"77e8b146-0078-4fb2-b002-e112381199f0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1336 - Authenticator Management | Pki-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1336\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/77f56280-e367-432a-a3b9-8ca2aa636a26\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"77f56280-e367-432a-a3b9-8ca2aa636a26\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1258 - Contingency Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1258\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7814506c-382c-4d33-a142-249dd4a0dbff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7814506c-382c-4d33-a142-249dd4a0dbff\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1178 - Baseline Configuration | Reviews And Updates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1178\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7818b8f4-47c6-441a-90ae-12ce04e99893\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7818b8f4-47c6-441a-90ae-12ce04e99893\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1057 - Permitted Actions Without Identification Or Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1057\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/78255758-6d45-4bf0-a005-7016bc03b13c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"78255758-6d45-4bf0-a005-7016bc03b13c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1700 - Information System Monitoring | Unauthorized Network Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1700\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7831b4ba-c3f4-4cb1-8c11-ef8d59438cd5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7831b4ba-c3f4-4cb1-8c11-ef8d59438cd5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1010 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1010\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/784663a8-1eb0-418a-a98c-24d19bc1bb62\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"784663a8-1eb0-418a-a98c-24d19bc1bb62\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1216 - Least Functionality | Periodic Review\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1216\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7894fe6a-f5cb-44c8-ba90-c3f254ff9484\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7894fe6a-f5cb-44c8-ba90-c3f254ff9484\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1639 - Boundary Protection | Isolation Of Information System Components\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1639\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/78e8e649-50f6-4fe3-99ac-fedc2e63b03f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"78e8e649-50f6-4fe3-99ac-fedc2e63b03f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1647 - Cryptographic Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1647\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/791cfc15-6974-42a0-9f4c-2d4b82f4a78c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"791cfc15-6974-42a0-9f4c-2d4b82f4a78c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1510 - Position Risk Designation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1510\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/79da5b09-0e7e-499e-adda-141b069c7998\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"79da5b09-0e7e-499e-adda-141b069c7998\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1384 - Information Spillage Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1384\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/79fbc228-461c-4a45-9004-a865ca0728a7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"79fbc228-461c-4a45-9004-a865ca0728a7\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows Server VMs on which Windows Serial Console is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows Server virtual machines on which Windows Serial Console is not enabled. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"EMSPortNumber\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"EMS Port Number\",\"description\":\"An integer indicating the COM port to be used for the Emergency Management Services (EMS) console redirection. For more information on EMS settings, please visit https://aka.ms/gcpolwsc\"},\"allowedValues\":[\"1\",\"2\",\"3\",\"4\"],\"defaultValue\":\"1\"},\"EMSBaudRate\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"EMS Baud Rate\",\"description\":\"An integer indicating the baud rate to be used for the Emergency Management Services (EMS) console redirection. For more information on EMS settings, please visit https://aka.ms/gcpolwsc\"},\"allowedValues\":[\"9600\",\"19200\",\"38400\",\"57600\",\"115200\"],\"defaultValue\":\"115200\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsSerialConsole\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsSerialConsole]WindowsSerialConsole;EMSPortNumber', '=', parameters('EMSPortNumber'), ',', '[WindowsSerialConsole]WindowsSerialConsole;EMSBaudRate', '=', parameters('EMSBaudRate')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsSerialConsole\"},\"EMSPortNumber\":{\"value\":\"[parameters('EMSPortNumber')]\"},\"EMSBaudRate\":{\"value\":\"[parameters('EMSBaudRate')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"EMSPortNumber\":{\"type\":\"string\"},\"EMSBaudRate\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsSerialConsole]WindowsSerialConsole;EMSPortNumber\",\"value\":\"[parameters('EMSPortNumber')]\"},{\"name\":\"[WindowsSerialConsole]WindowsSerialConsole;EMSBaudRate\",\"value\":\"[parameters('EMSBaudRate')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsSerialConsole]WindowsSerialConsole;EMSPortNumber\",\"value\":\"[parameters('EMSPortNumber')]\"},{\"name\":\"[WindowsSerialConsole]WindowsSerialConsole;EMSBaudRate\",\"value\":\"[parameters('EMSBaudRate')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7a031c68-d6ab-406e-a506-697a19c634b0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7a031c68-d6ab-406e-a506-697a19c634b0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1093 - Role-Based Security Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1093\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7a0bdeeb-15f4-47e8-a1da-9f769f845fdf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7a0bdeeb-15f4-47e8-a1da-9f769f845fdf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1708 - Security Function Verification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1708\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7a1e2c88-13de-4959-8ee7-47e3d74f1f48\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7a1e2c88-13de-4959-8ee7-47e3d74f1f48\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1289 - Information System Backup\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1289\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7a724864-956a-496c-b778-637cb1d762cf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7a724864-956a-496c-b778-637cb1d762cf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1687 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1687\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7a87fc7f-301e-49f3-ba2a-4d74f424fa97\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7a87fc7f-301e-49f3-ba2a-4d74f424fa97\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1061 - Remote Access | Automated Monitoring / Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1061\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7ac22808-a2e8-41c4-9d46-429b50738914\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7ac22808-a2e8-41c4-9d46-429b50738914\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1492 - System Security Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1492\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7ad5f307-e045-46f7-8214-5bdb7e973737\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7ad5f307-e045-46f7-8214-5bdb7e973737\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1636 - Boundary Protection | Isolation Of Security Tools / Mechanisms / Support Components\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1636\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7b694eed-7081-43c6-867c-41c76c961043\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7b694eed-7081-43c6-867c-41c76c961043\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Virtual Machine Scale Sets should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"It is recommended to enable Logs so that activity trail can be recreated when investigations are required in the event of an incident or a compromise.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"IaaSDiagnostics\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Diagnostics\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"LinuxDiagnostic\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"in\":[\"Microsoft.OSTCExtensions\",\"Microsoft.Azure.Diagnostics\"]}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7c1b1214-f927-48bf-8882-84f0af6588b1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7c1b1214-f927-48bf-8882-84f0af6588b1\"},{\"properties\":{\"displayName\":\"[Deprecated]: Require blob encryption for storage accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy ensures blob encryption for storage accounts is turned on. It only applies to Microsoft.Storage resource types, not other storage providers. This policy is deprecated because storage blob encryption is now enabled by default, and can no longer be disabled.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Storage\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"field\":\"Microsoft.Storage/storageAccounts/enableBlobEncryption\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7c5a74bf-ae94-4a74-8fcf-644d1e0e6e6f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7c5a74bf-ae94-4a74-8fcf-644d1e0e6e6f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1143 - Security Assessment And Authorization Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1143\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7c6de11b-5f51-4f7c-8d83-d2467c8a816e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7c6de11b-5f51-4f7c-8d83-d2467c8a816e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1051 - Session Lock\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1051\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7cac6ee9-b58b-40c8-a5ce-f0efc3d9b339\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7cac6ee9-b58b-40c8-a5ce-f0efc3d9b339\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1279 - Telecommunications Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1279\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7d00bcd6-963d-4c02-ad8e-b45fa50bf3b0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7d00bcd6-963d-4c02-ad8e-b45fa50bf3b0\"},{\"properties\":{\"displayName\":\"Azure Cache for Redis should reside within a virtual network\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits whether the Azure Cache for Redis resource has a non-public endpoint by being deployed into a virtual network.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cache\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match.\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Cache/redis\"},{\"field\":\"Microsoft.Cache/Redis/subnetId\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7d092e0a-7acd-40d2-a975-dca21cae48c4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7d092e0a-7acd-40d2-a975-dca21cae48c4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1109 - Content Of Audit Records | Centralized Management Of Planned Audit Record Content\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1109\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7d9ffa23-ad92-4d0d-b1f4-7db274cc2aec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7d9ffa23-ad92-4d0d-b1f4-7db274cc2aec\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1201 - Security Impact Analysis | Separate Test Environments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1201\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7daef997-fdd3-461b-8807-a608a6dd70f1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7daef997-fdd3-461b-8807-a608a6dd70f1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1471 - Emergency Shutoff\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1471\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7dd0e9ce-1772-41fb-a50a-99977071f916\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7dd0e9ce-1772-41fb-a50a-99977071f916\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that have the specified applications installed. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"NotInstalledApplication\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7e56b49b-5990-4159-a734-511ea19b731c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7e56b49b-5990-4159-a734-511ea19b731c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1011 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1011\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7e6a54f3-883f-43d5-87c4-172dfd64a1f5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7e6a54f3-883f-43d5-87c4-172dfd64a1f5\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that have not restarted within the specified number of days\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that have not restarted within the specified number of days. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MachineLastBootUpTime\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7e84ba44-6d03-46fd-950e-5efa5a1112fa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7e84ba44-6d03-46fd-950e-5efa5a1112fa\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1692 - Information System Monitoring | Inbound And Outbound Communications Traffic\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1692\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7ecda928-9df4-4dd7-8f44-641a91e470e8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7ecda928-9df4-4dd7-8f44-641a91e470e8\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not have the password complexity setting enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not have the password complexity setting enabled. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordMustMeetComplexityRequirements\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"PasswordMustMeetComplexityRequirements\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7ed40801-8a0f-4ceb-85c0-9fd25c1d61a8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7ed40801-8a0f-4ceb-85c0-9fd25c1d61a8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1191 - Configuration Change Control | Automated Document / Notification / Prohibition Of Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1191\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7f26a61b-a74d-467c-99cf-63644db144f7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7f26a61b-a74d-467c-99cf-63644db144f7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1520 - Personnel Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1520\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7f2c513b-eb16-463b-b469-c10e5fa94f0a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7f2c513b-eb16-463b-b469-c10e5fa94f0a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1126 - Audit Reduction And Report Generation | Automatic Processing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1126\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7f37f71b-420f-49bf-9477-9c0196974ecf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7f37f71b-420f-49bf-9477-9c0196974ecf\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Privilege Use'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Privilege Use'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesPrivilegeUse\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7f4e96d1-e4f3-4dbb-b767-33ca4df8df7c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7f4e96d1-e4f3-4dbb-b767-33ca4df8df7c\"},{\"properties\":{\"displayName\":\"Audit diagnostic setting\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit diagnostic setting for selected resource types\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfResourceTypes\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Resource Types\",\"strongType\":\"resourceTypes\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":\"[parameters('listOfResourceTypes')]\"},\"then\":{\"effect\":\"AuditIfNotExists\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7f89b1eb-583c-429a-8828-af049802c1d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7f89b1eb-583c-429a-8828-af049802c1d9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1117 - Audit Review, Analysis, And Reporting | Process Integration\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1117\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7fbfe680-6dbb-4037-963c-a621c5635902\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7fbfe680-6dbb-4037-963c-a621c5635902\"},{\"properties\":{\"displayName\":\"Advanced data security should be enabled on Azure SQL Database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced data security provides functionality for surfacing and mitigating potential database vulnerabilities, detecting anomalous activities that could indicate a threat on SQL database and discovering and classifying sensitive data.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"SqlServers\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7fe3b40f-802b-4cdd-8bd4-fd799c948cc2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7fe3b40f-802b-4cdd-8bd4-fd799c948cc2\"},{\"properties\":{\"displayName\":\"SQL Auditing settings should have Action-Groups configured to capture critical activities\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"The AuditActionsAndGroups property should contain at least SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP, FAILED_DATABASE_AUTHENTICATION_GROUP, BATCH_COMPLETED_GROUP to ensure a thorough audit logging\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/auditingSettings\",\"name\":\"default\",\"existenceCondition\":{\"allOf\":[{\"not\":{\"field\":\"Microsoft.Sql/servers/auditingSettings/auditActionsAndGroups[*]\",\"notEquals\":\"SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP\"}},{\"not\":{\"field\":\"Microsoft.Sql/servers/auditingSettings/auditActionsAndGroups[*]\",\"notEquals\":\"FAILED_DATABASE_AUTHENTICATION_GROUP\"}},{\"not\":{\"field\":\"Microsoft.Sql/servers/auditingSettings/auditActionsAndGroups[*]\",\"notEquals\":\"BATCH_COMPLETED_GROUP\"}}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7ff426e2-515f-405a-91c8-4f2333442eb5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7ff426e2-515f-405a-91c8-4f2333442eb5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1703 - Security Alerts, Advisories, And Directives\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1703\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/804faf7d-b687-40f7-9f74-79e28adf4205\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"804faf7d-b687-40f7-9f74-79e28adf4205\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1303 - Identification And Authentication (Org. Users) | Local Access To Privileged Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1303\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/80ca0a27-918a-4604-af9e-723a27ee51e8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"80ca0a27-918a-4604-af9e-723a27ee51e8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1505 - Information Security Architecture\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1505\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/813a10a7-3943-4fe3-8678-00dc52db5490\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"813a10a7-3943-4fe3-8678-00dc52db5490\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1614 - Developer Security Architecture And Design\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1614\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8154e3b3-cc52-40be-9407-7756581d71f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8154e3b3-cc52-40be-9407-7756581d71f6\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'User Rights Assignment'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'User Rights Assignment'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"UsersOrGroupsThatMayAccessThisComputerFromTheNetwork\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may access this computer from the network\",\"description\":\"Specifies which remote users on the network are permitted to connect to the computer. This does not include Remote Desktop Connection.\"},\"defaultValue\":\"Administrators, Authenticated Users\"},\"UsersOrGroupsThatMayLogOnLocally\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may log on locally\",\"description\":\"Specifies which users or groups can interactively log on to the computer. Users who attempt to log on via Remote Desktop Connection or IIS also require this user right.\"},\"defaultValue\":\"Administrators\"},\"UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may log on through Remote Desktop Services\",\"description\":\"Specifies which users or groups are permitted to log on as a Terminal Services client, Remote Desktop, or for Remote Assistance.\"},\"defaultValue\":\"Administrators, Remote Desktop Users\"},\"UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that are denied access to this computer from the network\",\"description\":\"Specifies which users or groups are explicitly prohibited from connecting to the computer across the network.\"},\"defaultValue\":\"Guests\"},\"UsersOrGroupsThatMayManageAuditingAndSecurityLog\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may manage auditing and security log\",\"description\":\"Specifies users and groups permitted to change the auditing options for files and directories and clear the Security log.\"},\"defaultValue\":\"Administrators\"},\"UsersOrGroupsThatMayBackUpFilesAndDirectories\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may back up files and directories\",\"description\":\"Specifies users and groups allowed to circumvent file and directory permissions to back up the system.\"},\"defaultValue\":\"Administrators, Backup Operators\"},\"UsersOrGroupsThatMayChangeTheSystemTime\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may change the system time\",\"description\":\"Specifies which users and groups are permitted to change the time and date on the internal clock of the computer.\"},\"defaultValue\":\"Administrators, LOCAL SERVICE\"},\"UsersOrGroupsThatMayChangeTheTimeZone\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may change the time zone\",\"description\":\"Specifies which users and groups are permitted to change the time zone of the computer.\"},\"defaultValue\":\"Administrators, LOCAL SERVICE\"},\"UsersOrGroupsThatMayCreateATokenObject\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may create a token object\",\"description\":\"Specifies which users and groups are permitted to create an access token, which may provide elevated rights to access sensitive data.\"},\"defaultValue\":\"No One\"},\"UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that are denied logging on as a batch job\",\"description\":\"Specifies which users and groups are explicitly not permitted to log on to the computer as a batch job (i.e. scheduled task).\"},\"defaultValue\":\"Guests\"},\"UsersAndGroupsThatAreDeniedLoggingOnAsAService\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that are denied logging on as a service\",\"description\":\"Specifies which service accounts are explicitly not permitted to register a process as a service.\"},\"defaultValue\":\"Guests\"},\"UsersAndGroupsThatAreDeniedLocalLogon\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that are denied local logon\",\"description\":\"Specifies which users and groups are explicitly not permitted to log on to the computer.\"},\"defaultValue\":\"Guests\"},\"UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that are denied log on through Remote Desktop Services\",\"description\":\"Specifies which users and groups are explicitly not permitted to log on to the computer via Terminal Services/Remote Desktop Client.\"},\"defaultValue\":\"Guests\"},\"UserAndGroupsThatMayForceShutdownFromARemoteSystem\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"User and groups that may force shutdown from a remote system\",\"description\":\"Specifies which users and groups are permitted to shut down the computer from a remote location on the network.\"},\"defaultValue\":\"Administrators\"},\"UsersAndGroupsThatMayRestoreFilesAndDirectories\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that may restore files and directories\",\"description\":\"Specifies which users and groups are permitted to bypass file, directory, registry, and other persistent object permissions when restoring backed up files and directories.\"},\"defaultValue\":\"Administrators, Backup Operators\"},\"UsersAndGroupsThatMayShutDownTheSystem\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that may shut down the system\",\"description\":\"Specifies which users and groups who are logged on locally to the computers in your environment are permitted to shut down the operating system with the Shut Down command.\"},\"defaultValue\":\"Administrators\"},\"UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may take ownership of files or other objects\",\"description\":\"Specifies which users and groups are permitted to take ownership of files, folders, registry keys, processes, or threads. This user right bypasses any permissions that are in place to protect objects to give ownership to the specified user.\"},\"defaultValue\":\"Administrators\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_UserRightsAssignment\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Access this computer from the network;ExpectedValue', '=', parameters('UsersOrGroupsThatMayAccessThisComputerFromTheNetwork'), ',', 'Allow log on locally;ExpectedValue', '=', parameters('UsersOrGroupsThatMayLogOnLocally'), ',', 'Allow log on through Remote Desktop Services;ExpectedValue', '=', parameters('UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices'), ',', 'Deny access to this computer from the network;ExpectedValue', '=', parameters('UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork'), ',', 'Manage auditing and security log;ExpectedValue', '=', parameters('UsersOrGroupsThatMayManageAuditingAndSecurityLog'), ',', 'Back up files and directories;ExpectedValue', '=', parameters('UsersOrGroupsThatMayBackUpFilesAndDirectories'), ',', 'Change the system time;ExpectedValue', '=', parameters('UsersOrGroupsThatMayChangeTheSystemTime'), ',', 'Change the time zone;ExpectedValue', '=', parameters('UsersOrGroupsThatMayChangeTheTimeZone'), ',', 'Create a token object;ExpectedValue', '=', parameters('UsersOrGroupsThatMayCreateATokenObject'), ',', 'Deny log on as a batch job;ExpectedValue', '=', parameters('UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob'), ',', 'Deny log on as a service;ExpectedValue', '=', parameters('UsersAndGroupsThatAreDeniedLoggingOnAsAService'), ',', 'Deny log on locally;ExpectedValue', '=', parameters('UsersAndGroupsThatAreDeniedLocalLogon'), ',', 'Deny log on through Remote Desktop Services;ExpectedValue', '=', parameters('UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices'), ',', 'Force shutdown from a remote system;ExpectedValue', '=', parameters('UserAndGroupsThatMayForceShutdownFromARemoteSystem'), ',', 'Restore files and directories;ExpectedValue', '=', parameters('UsersAndGroupsThatMayRestoreFilesAndDirectories'), ',', 'Shut down the system;ExpectedValue', '=', parameters('UsersAndGroupsThatMayShutDownTheSystem'), ',', 'Take ownership of files or other objects;ExpectedValue', '=', parameters('UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_UserRightsAssignment\"},\"UsersOrGroupsThatMayAccessThisComputerFromTheNetwork\":{\"value\":\"[parameters('UsersOrGroupsThatMayAccessThisComputerFromTheNetwork')]\"},\"UsersOrGroupsThatMayLogOnLocally\":{\"value\":\"[parameters('UsersOrGroupsThatMayLogOnLocally')]\"},\"UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices\":{\"value\":\"[parameters('UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices')]\"},\"UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork\":{\"value\":\"[parameters('UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork')]\"},\"UsersOrGroupsThatMayManageAuditingAndSecurityLog\":{\"value\":\"[parameters('UsersOrGroupsThatMayManageAuditingAndSecurityLog')]\"},\"UsersOrGroupsThatMayBackUpFilesAndDirectories\":{\"value\":\"[parameters('UsersOrGroupsThatMayBackUpFilesAndDirectories')]\"},\"UsersOrGroupsThatMayChangeTheSystemTime\":{\"value\":\"[parameters('UsersOrGroupsThatMayChangeTheSystemTime')]\"},\"UsersOrGroupsThatMayChangeTheTimeZone\":{\"value\":\"[parameters('UsersOrGroupsThatMayChangeTheTimeZone')]\"},\"UsersOrGroupsThatMayCreateATokenObject\":{\"value\":\"[parameters('UsersOrGroupsThatMayCreateATokenObject')]\"},\"UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob\":{\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob')]\"},\"UsersAndGroupsThatAreDeniedLoggingOnAsAService\":{\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLoggingOnAsAService')]\"},\"UsersAndGroupsThatAreDeniedLocalLogon\":{\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLocalLogon')]\"},\"UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices\":{\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices')]\"},\"UserAndGroupsThatMayForceShutdownFromARemoteSystem\":{\"value\":\"[parameters('UserAndGroupsThatMayForceShutdownFromARemoteSystem')]\"},\"UsersAndGroupsThatMayRestoreFilesAndDirectories\":{\"value\":\"[parameters('UsersAndGroupsThatMayRestoreFilesAndDirectories')]\"},\"UsersAndGroupsThatMayShutDownTheSystem\":{\"value\":\"[parameters('UsersAndGroupsThatMayShutDownTheSystem')]\"},\"UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects\":{\"value\":\"[parameters('UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"UsersOrGroupsThatMayAccessThisComputerFromTheNetwork\":{\"type\":\"string\"},\"UsersOrGroupsThatMayLogOnLocally\":{\"type\":\"string\"},\"UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices\":{\"type\":\"string\"},\"UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork\":{\"type\":\"string\"},\"UsersOrGroupsThatMayManageAuditingAndSecurityLog\":{\"type\":\"string\"},\"UsersOrGroupsThatMayBackUpFilesAndDirectories\":{\"type\":\"string\"},\"UsersOrGroupsThatMayChangeTheSystemTime\":{\"type\":\"string\"},\"UsersOrGroupsThatMayChangeTheTimeZone\":{\"type\":\"string\"},\"UsersOrGroupsThatMayCreateATokenObject\":{\"type\":\"string\"},\"UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob\":{\"type\":\"string\"},\"UsersAndGroupsThatAreDeniedLoggingOnAsAService\":{\"type\":\"string\"},\"UsersAndGroupsThatAreDeniedLocalLogon\":{\"type\":\"string\"},\"UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices\":{\"type\":\"string\"},\"UserAndGroupsThatMayForceShutdownFromARemoteSystem\":{\"type\":\"string\"},\"UsersAndGroupsThatMayRestoreFilesAndDirectories\":{\"type\":\"string\"},\"UsersAndGroupsThatMayShutDownTheSystem\":{\"type\":\"string\"},\"UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Access this computer from the network;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayAccessThisComputerFromTheNetwork')]\"},{\"name\":\"Allow log on locally;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayLogOnLocally')]\"},{\"name\":\"Allow log on through Remote Desktop Services;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices')]\"},{\"name\":\"Deny access to this computer from the network;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork')]\"},{\"name\":\"Manage auditing and security log;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayManageAuditingAndSecurityLog')]\"},{\"name\":\"Back up files and directories;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayBackUpFilesAndDirectories')]\"},{\"name\":\"Change the system time;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayChangeTheSystemTime')]\"},{\"name\":\"Change the time zone;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayChangeTheTimeZone')]\"},{\"name\":\"Create a token object;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayCreateATokenObject')]\"},{\"name\":\"Deny log on as a batch job;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob')]\"},{\"name\":\"Deny log on as a service;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLoggingOnAsAService')]\"},{\"name\":\"Deny log on locally;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLocalLogon')]\"},{\"name\":\"Deny log on through Remote Desktop Services;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices')]\"},{\"name\":\"Force shutdown from a remote system;ExpectedValue\",\"value\":\"[parameters('UserAndGroupsThatMayForceShutdownFromARemoteSystem')]\"},{\"name\":\"Restore files and directories;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatMayRestoreFilesAndDirectories')]\"},{\"name\":\"Shut down the system;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatMayShutDownTheSystem')]\"},{\"name\":\"Take ownership of files or other objects;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Access this computer from the network;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayAccessThisComputerFromTheNetwork')]\"},{\"name\":\"Allow log on locally;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayLogOnLocally')]\"},{\"name\":\"Allow log on through Remote Desktop Services;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices')]\"},{\"name\":\"Deny access to this computer from the network;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork')]\"},{\"name\":\"Manage auditing and security log;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayManageAuditingAndSecurityLog')]\"},{\"name\":\"Back up files and directories;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayBackUpFilesAndDirectories')]\"},{\"name\":\"Change the system time;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayChangeTheSystemTime')]\"},{\"name\":\"Change the time zone;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayChangeTheTimeZone')]\"},{\"name\":\"Create a token object;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayCreateATokenObject')]\"},{\"name\":\"Deny log on as a batch job;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob')]\"},{\"name\":\"Deny log on as a service;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLoggingOnAsAService')]\"},{\"name\":\"Deny log on locally;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLocalLogon')]\"},{\"name\":\"Deny log on through Remote Desktop Services;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices')]\"},{\"name\":\"Force shutdown from a remote system;ExpectedValue\",\"value\":\"[parameters('UserAndGroupsThatMayForceShutdownFromARemoteSystem')]\"},{\"name\":\"Restore files and directories;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatMayRestoreFilesAndDirectories')]\"},{\"name\":\"Shut down the system;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatMayShutDownTheSystem')]\"},{\"name\":\"Take ownership of files or other objects;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/815dcc9f-6662-43f2-9a03-1b83e9876f24\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"815dcc9f-6662-43f2-9a03-1b83e9876f24\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1308 - Identification And Authentication (Org. Users) | Remote Access - Separate Device\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1308\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/81817e1c-5347-48dd-965a-40159d008229\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"81817e1c-5347-48dd-965a-40159d008229\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1287 - Information System Backup\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1287\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/819dc6da-289d-476e-8500-7e341ef8677d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"819dc6da-289d-476e-8500-7e341ef8677d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1213 - Configuration Settings | Respond To Unauthorized Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1213\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/81f11e32-a293-4a58-82cd-134af52e2318\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"81f11e32-a293-4a58-82cd-134af52e2318\"},{\"properties\":{\"displayName\":\"Geo-redundant backup should be enabled for Azure Database for MySQL\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Azure Database for MySQL with geo-redundant backup not enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforMySQL/servers\"},{\"field\":\"Microsoft.DBforMySQL/servers/storageProfile.geoRedundantBackup\",\"notEquals\":\"Enabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/82339799-d096-41ae-8538-b108becf0970\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"82339799-d096-41ae-8538-b108becf0970\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1168 - Continuous Monitoring | Independent Assessment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1168\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/82409f9e-1f32-4775-bf07-b99d53a91b06\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"82409f9e-1f32-4775-bf07-b99d53a91b06\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1448 - Physical Access Authorizations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1448\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/825d6494-e583-42f2-a3f2-6458e6f0004f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"825d6494-e583-42f2-a3f2-6458e6f0004f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1452 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1452\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/82c76455-4d3f-4e09-a654-22e592107e74\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"82c76455-4d3f-4e09-a654-22e592107e74\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1262 - Contingency Plan Testing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1262\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/831e510e-db41-4c72-888e-a0621ab62265\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"831e510e-db41-4c72-888e-a0621ab62265\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1008 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1008\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8356cfc6-507a-4d20-b818-08038011cd07\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8356cfc6-507a-4d20-b818-08038011cd07\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Event Hub should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Event Hub\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.EventHub/namespaces\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/83a214f7-d01a-484b-91a9-ed54470c9a6a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"83a214f7-d01a-484b-91a9-ed54470c9a6a\"},{\"properties\":{\"displayName\":\"Network interfaces should not have public IPs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy denies the network interfaces which are configured with any public IP. Public IP addresses allow internet resources to communicate inbound to Azure resources, and Azure resources to communicate outbound to the internet. This should be reviewed by the network security team.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkInterfaces\"},{\"not\":{\"field\":\"Microsoft.Network/networkInterfaces/ipconfigurations[*].publicIpAddress.id\",\"notLike\":\"*\"}}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/83a86a26-fd1f-447c-b59d-e51f44264114\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"83a86a26-fd1f-447c-b59d-e51f44264114\"},{\"properties\":{\"displayName\":\"Bring your own key data protection should be enabled for MySQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MySQL servers in your environment without bring your own key data protection enabled. For more details, visit https://aka.ms/mysqlbyok.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforMySQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforMySQL/servers/keys\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.DBforMySQL/servers/keys/serverKeyType\",\"equals\":\"AzureKeyVault\"},{\"field\":\"Microsoft.DBforMySQL/servers/keys/uri\",\"notEquals\":\"\"},{\"field\":\"Microsoft.DBforMySQL/servers/keys/uri\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/83cef61d-dbd1-4b20-a4fc-5fbc7da10833\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"83cef61d-dbd1-4b20-a4fc-5fbc7da10833\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1382 - Incident Response Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1382\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/841392b3-40da-4473-b328-4cde49db67b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"841392b3-40da-4473-b328-4cde49db67b3\"},{\"properties\":{\"displayName\":\"[Preview]: Log Analytics agent should be installed on your Linux Azure Arc machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits Linux Azure Arc machines if the Log Analytics agent is not installed.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Monitoring\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.HybridCompute/machines/extensions/type\",\"equals\":\"OmsAgentForLinux\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/842c54e8-c2f9-4d79-ae8d-38d8b8019373\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"842c54e8-c2f9-4d79-ae8d-38d8b8019373\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1098 - Security Training Records\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1098\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/84363adb-dde3-411a-9fc1-36b56737f822\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"84363adb-dde3-411a-9fc1-36b56737f822\"},{\"properties\":{\"displayName\":\"Ensure that '.NET Framework' version is the latest, if used as a part of the Web app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for .NET Framework software either due to security flaws or to include additional functionality. Using the latest .NET framework version for web apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.netFrameworkVersion\",\"in\":[\"v3.0\",\"v4.0\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/843664e0-7563-41ee-a9cb-7522c382d2c4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"843664e0-7563-41ee-a9cb-7522c382d2c4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1119 - Audit Review, Analysis, And Reporting | Central Review And Analysis\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1119\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/845f6359-b764-4b40-b579-657aefe23c44\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"845f6359-b764-4b40-b579-657aefe23c44\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1024 - Account Management | Account Monitoring / Atypical Usage\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1024\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/84914fb4-12da-4c53-a341-a9fd463bed10\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"84914fb4-12da-4c53-a341-a9fd463bed10\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1307 - Identification And Authentication (Org. Users) | Net. Access To Non-Priv. Accts. - Replay\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1307\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/84e622c8-4bed-417c-84c6-b2fb0dd73682\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"84e622c8-4bed-417c-84c6-b2fb0dd73682\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1080 - Use Of External Information Systems | Portable Storage Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1080\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/852981b4-a380-4704-aa1e-2e52d63445e5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"852981b4-a380-4704-aa1e-2e52d63445e5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1580 - Information System Documentation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1580\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/854db8ac-6adf-42a0-bef3-b73f764f40b9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"854db8ac-6adf-42a0-bef3-b73f764f40b9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1348 - Identification And Authentication (Non-Org. Users) | Acceptance Of Third-Party Credentials\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1348\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/855ced56-417b-4d74-9d5f-dd1bc81e22d6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"855ced56-417b-4d74-9d5f-dd1bc81e22d6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1079 - Use Of External Information Systems | Limits On Authorized Use\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1079\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/85c32733-7d23-4948-88da-058e2c56b60f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"85c32733-7d23-4948-88da-058e2c56b60f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1326 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1326\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8605fc00-1bf5-4fb3-984e-c95cec4f231d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8605fc00-1bf5-4fb3-984e-c95cec4f231d\"},{\"properties\":{\"displayName\":\"Azure Cosmos DB accounts should have firewall rules\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit or deny resources that do not have any IP rules configured and allow all networks by default. Accounts that have at least one IP rule defined with the virtual network filter enabled are deemed compliant. Accounts disabling public access are also deemed compliant.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cosmos DB\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Policy Effect\",\"description\":\"The desired effect of the policy.\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Deny\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DocumentDB/databaseAccounts\"},{\"anyOf\":[{\"field\":\"Microsoft.DocumentDB/databaseAccounts/publicNetworkAccess\",\"exists\":\"false\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/publicNetworkAccess\",\"equals\":\"Enabled\"}]},{\"anyOf\":[{\"field\":\"Microsoft.DocumentDB/databaseAccounts/isVirtualNetworkFilterEnabled\",\"exists\":\"false\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/isVirtualNetworkFilterEnabled\",\"equals\":\"false\"},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.DocumentDB/databaseAccounts/ipRules\",\"exists\":\"false\"},{\"count\":{\"field\":\"Microsoft.DocumentDB/databaseAccounts/ipRules[*]\"},\"equals\":0}]},{\"anyOf\":[{\"field\":\"Microsoft.DocumentDB/databaseAccounts/ipRangeFilter\",\"exists\":\"false\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/ipRangeFilter\",\"equals\":\"\"}]}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/862e97cf-49fc-4a5c-9de4-40d4e2e7c8eb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"862e97cf-49fc-4a5c-9de4-40d4e2e7c8eb\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Microsoft Network Server'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Microsoft Network Server'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsMicrosoftNetworkServer\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsMicrosoftNetworkServer\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86880e5c-df35-43c5-95ad-7e120635775e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86880e5c-df35-43c5-95ad-7e120635775e\"},{\"properties\":{\"displayName\":\"Deploy SQL DB transparent data encryption\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Enables transparent data encryption on SQL databases\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers/databases\"},{\"field\":\"name\",\"notEquals\":\"master\"}]},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.Sql/servers/databases/transparentDataEncryption\",\"name\":\"current\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/transparentDataEncryption.status\",\"equals\":\"Enabled\"},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullDbName\":{\"type\":\"string\"}},\"resources\":[{\"name\":\"[concat(parameters('fullDbName'), '/current')]\",\"type\":\"Microsoft.Sql/servers/databases/transparentDataEncryption\",\"apiVersion\":\"2014-04-01\",\"properties\":{\"status\":\"Enabled\"}}]},\"parameters\":{\"fullDbName\":{\"value\":\"[field('fullName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86a912f6-9a06-4e26-b447-11b16ba8659f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86a912f6-9a06-4e26-b447-11b16ba8659f\"},{\"properties\":{\"displayName\":\"System updates should be installed on your machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Missing security system updates on your servers will be monitored by Azure Security Center as recommendations\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"systemUpdates\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86b3d65f-7626-441e-b690-81a8b71cff60\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86b3d65f-7626-441e-b690-81a8b71cff60\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1507 - Personnel Security Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1507\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86ccd1bf-e7ad-4851-93ce-6ec817469c1e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86ccd1bf-e7ad-4851-93ce-6ec817469c1e\"},{\"properties\":{\"displayName\":\"Ensure that Register with Azure Active Directory is enabled on API app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Managed service identity in App Service makes the app more secure by eliminating secrets from the app, such as credentials in the connection strings. When registering with Azure Active Directory in the app service, the app will connect to other Azure services securely without the need of username and passwords\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.managedServiceIdentityId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86d97760-d216-4d81-a3ad-163087b2b6c3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86d97760-d216-4d81-a3ad-163087b2b6c3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1392 - Information Spillage Response | Post-Spill Operations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1392\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86dc819f-15e1-43f9-a271-41ae58d4cecc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86dc819f-15e1-43f9-a271-41ae58d4cecc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1589 - External Information System Services | Risk Assessments / Organizational Approvals\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1589\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86ec7f9b-9478-40ff-8cfd-6a0d510081a8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86ec7f9b-9478-40ff-8cfd-6a0d510081a8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1207 - Access Restrictions For Change | Limit Production / Operational Privileges\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1207\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8713a0ed-0d1e-4d10-be82-83dffb39830e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8713a0ed-0d1e-4d10-be82-83dffb39830e\"},{\"properties\":{\"displayName\":\"Require a tag on resources\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Enforces existence of a tag. Does not apply to resource groups.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/871b6d14-10aa-478d-b590-94f262ecfa99\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"871b6d14-10aa-478d-b590-94f262ecfa99\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1180 - Baseline Configuration | Automation Support For Accuracy / Currency\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1180\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/874e7880-a067-42a7-bcbe-1a340f54c8cc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"874e7880-a067-42a7-bcbe-1a340f54c8cc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1635 - Boundary Protection | Host-Based Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1635\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/87551b5d-1deb-4d0f-86cc-9dc14cb4bf7e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"87551b5d-1deb-4d0f-86cc-9dc14cb4bf7e\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Administrative Templates - Control Panel'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - Control Panel'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdministrativeTemplatesControlPanel\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/87b590fe-4a1d-4697-ae74-d4fe72ab786c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"87b590fe-4a1d-4697-ae74-d4fe72ab786c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1293 - Information System Backup | Separate Storage For Critical Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1293\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/87f7cd82-2e45-4d0f-9e2f-586b0962d142\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"87f7cd82-2e45-4d0f-9e2f-586b0962d142\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1440 - Media Sanitization | Review / Approve / Track / Document / Verify\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1440\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/881299bf-2a5b-4686-a1b2-321d33679953\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"881299bf-2a5b-4686-a1b2-321d33679953\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1356 - Incident Response Training | Simulated Events\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1356\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8829f8f5-e8be-441e-85c9-85b72a5d0ef3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8829f8f5-e8be-441e-85c9-85b72a5d0ef3\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Linux VMs that have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Linux virtual machines that have the specified applications installed. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"ApplicationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Application names\",\"description\":\"A semicolon-separated list of the names of the applications that should not be installed. e.g. 'python; powershell'\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"not_installed_application_linux\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[ChefInSpec]NotInstalledApplicationLinuxResource1;AttributesYmlContent', '=', concat('packages: [', replace(parameters('ApplicationName'), ';', ','), ']')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"not_installed_application_linux\"},\"ApplicationName\":{\"value\":\"[parameters('ApplicationName')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"ApplicationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[ChefInSpec]NotInstalledApplicationLinuxResource1;AttributesYmlContent\",\"value\":\"[concat('packages: [', replace(parameters('ApplicationName'), ';', ','), ']')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[ChefInSpec]NotInstalledApplicationLinuxResource1;AttributesYmlContent\",\"value\":\"[concat('packages: [', replace(parameters('ApplicationName'), ';', ','), ']')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/884b209a-963b-4520-8006-d20cb3c213e0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"884b209a-963b-4520-8006-d20cb3c213e0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1317 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1317\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8877f519-c166-47b7-81b7-8a8eb4ff3775\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8877f519-c166-47b7-81b7-8a8eb4ff3775\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1501 - Rules Of Behavior\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1501\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/88817b58-8472-4f6c-81fa-58ce42b67f51\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"88817b58-8472-4f6c-81fa-58ce42b67f51\"},{\"properties\":{\"displayName\":\"Ensure that 'Java version' is the latest, if used as a part of the Api app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for Java either due to security flaws or to include additional functionality. Using the latest Python version for Api apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"JavaLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Latest Java version\",\"description\":\"Latest supported Java version for App Services\"},\"defaultValue\":\"11\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"JAVA\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"like\":\"[concat('*', parameters('JavaLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"like\":\"[concat(parameters('JavaLatestVersion'), '*')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/88999f4c-376a-45c8-bcb3-4058f713cf39\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"88999f4c-376a-45c8-bcb3-4058f713cf39\"},{\"properties\":{\"displayName\":\"Network interfaces should disable IP forwarding\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy denies the network interfaces which enabled IP forwarding. The setting of IP forwarding disables Azure's check of the source and destination for a network interface. This should be reviewed by the network security team.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkInterfaces\"},{\"field\":\"Microsoft.Network/networkInterfaces/enableIpForwarding\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/88c0b9da-ce96-4b03-9635-f29a937e2900\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"88c0b9da-ce96-4b03-9635-f29a937e2900\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1215 - Least Functionality\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1215\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/88fc93e8-4745-4785-b5a5-b44bb92c44ff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"88fc93e8-4745-4785-b5a5-b44bb92c44ff\"},{\"properties\":{\"displayName\":\"SQL servers should be configured with auditing retention days greater than 90 days.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit SQL servers configured with an auditing retention period of less than 90 days.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/auditingSettings\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/auditingSettings/retentionDays\",\"greater\":90}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/89099bee-89e0-4b26-a5f4-165451757743\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"89099bee-89e0-4b26-a5f4-165451757743\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1411 - Nonlocal Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1411\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/898d4fe8-f743-4333-86b7-0c9245d93e7d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"898d4fe8-f743-4333-86b7-0c9245d93e7d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1092 - Security Awareness Training | Insider Threat\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1092\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8a29d47b-8604-4667-84ef-90d203fcb305\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8a29d47b-8604-4667-84ef-90d203fcb305\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - System settings'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - System settings'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsSystemsettings\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8a39d1f1-5513-4628-b261-f469a5a3341b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8a39d1f1-5513-4628-b261-f469a5a3341b\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs with a pending reboot\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with a pending reboot. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsPendingReboot\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8b0de57a-f511-4d45-a277-17cb79cb163b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8b0de57a-f511-4d45-a277-17cb79cb163b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1534 - Personnel Sanctions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1534\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8b2b263e-cd05-4488-bcbf-4debec7a17d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8b2b263e-cd05-4488-bcbf-4debec7a17d9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1170 - Penetration Testing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1170\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8b78b9b3-ee3c-48e0-a243-ed6dba5b7a12\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8b78b9b3-ee3c-48e0-a243-ed6dba5b7a12\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Windows Firewall Properties'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Windows Firewall Properties'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_WindowsFirewallProperties\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8bbd627e-4d25-4906-9a6e-3789780af3ec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8bbd627e-4d25-4906-9a6e-3789780af3ec\"},{\"properties\":{\"displayName\":\"Ensure that 'HTTP Version' is the latest, if used to run the Web app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Managed service identity in App Service makes the app more secure by eliminating secrets from the app, such as credentials in the connection strings. When registering with Azure Active Directory in the app service, the app will connect to other Azure services securely without the need of username and passwords\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.http20Enabled\",\"Equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8c122334-9d20-4eb8-89ea-ac9a705b74ae\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8c122334-9d20-4eb8-89ea-ac9a705b74ae\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1458 - Physical Access Control | Information System Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1458\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8c19ceb7-56e9-4488-8ddb-b1eb3aa6d203\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8c19ceb7-56e9-4488-8ddb-b1eb3aa6d203\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1683 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1683\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8c79fee4-88dd-44ce-bbd4-4de88948c4f8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8c79fee4-88dd-44ce-bbd4-4de88948c4f8\"},{\"properties\":{\"displayName\":\"Latest TLS version should be used in your API App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Upgrade to the latest TLS version\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/minTlsVersion\",\"equals\":\"1.2\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8cb6aa8b-9e41-4f4e-aa25-089a7ac2581e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8cb6aa8b-9e41-4f4e-aa25-089a7ac2581e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1316 - Identifier Management | Identify User Status\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1316\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8ce14753-66e5-465d-9841-26ef55c09c0d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8ce14753-66e5-465d-9841-26ef55c09c0d\"},{\"properties\":{\"displayName\":\"Require a tag and its value on resource groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enforces a required tag and its value on resource groups.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions/resourceGroups\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"notEquals\":\"[parameters('tagValue')]\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8ce3da23-7156-49e4-b145-24f95f9dcb46\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8ce3da23-7156-49e4-b145-24f95f9dcb46\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1324 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1324\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8cfea2b3-7f77-497e-ac20-0752f2ff6eee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8cfea2b3-7f77-497e-ac20-0752f2ff6eee\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1225 - Information System Component Inventory | Automated Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1225\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8d096fe0-f510-4486-8b4d-d17dc230980b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8d096fe0-f510-4486-8b4d-d17dc230980b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1288 - Information System Backup\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1288\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8d854c3b-a3e6-4ec9-9f0c-c7274dbaeb2f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8d854c3b-a3e6-4ec9-9f0c-c7274dbaeb2f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1281 - Telecommunications Services | Priority Of Service Provisions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1281\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8dc459b3-0e77-45af-8d71-cfd8c9654fe2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8dc459b3-0e77-45af-8d71-cfd8c9654fe2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1250 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1250\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8de614d8-a8b7-4f70-a62a-6d37089a002c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8de614d8-a8b7-4f70-a62a-6d37089a002c\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Object Access'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Object Access'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditDetailedFileShare\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Detailed File Share\",\"description\":\"If this policy setting is enabled, access to all shared files and folders on the system is audited. Auditing for Success can lead to very high volumes of events.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"No Auditing\"},\"AuditFileShare\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit File Share\",\"description\":\"Specifies whether to audit events related to file shares: creation, deletion, modification, and access attempts. Also, it shows failed SMB SPN checks. Event volumes can be high on DCs and File Servers.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"No Auditing\"},\"AuditFileSystem\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit File System\",\"description\":\"Specifies whether audit events are generated when users attempt to access file system objects. Audit events are generated only for objects that have configured system access control lists (SACLs).\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"No Auditing\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesObjectAccess\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit Detailed File Share;ExpectedValue', '=', parameters('AuditDetailedFileShare'), ',', 'Audit File Share;ExpectedValue', '=', parameters('AuditFileShare'), ',', 'Audit File System;ExpectedValue', '=', parameters('AuditFileSystem')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesObjectAccess\"},\"AuditDetailedFileShare\":{\"value\":\"[parameters('AuditDetailedFileShare')]\"},\"AuditFileShare\":{\"value\":\"[parameters('AuditFileShare')]\"},\"AuditFileSystem\":{\"value\":\"[parameters('AuditFileSystem')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditDetailedFileShare\":{\"type\":\"string\"},\"AuditFileShare\":{\"type\":\"string\"},\"AuditFileSystem\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Detailed File Share;ExpectedValue\",\"value\":\"[parameters('AuditDetailedFileShare')]\"},{\"name\":\"Audit File Share;ExpectedValue\",\"value\":\"[parameters('AuditFileShare')]\"},{\"name\":\"Audit File System;ExpectedValue\",\"value\":\"[parameters('AuditFileSystem')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Detailed File Share;ExpectedValue\",\"value\":\"[parameters('AuditDetailedFileShare')]\"},{\"name\":\"Audit File Share;ExpectedValue\",\"value\":\"[parameters('AuditFileShare')]\"},{\"name\":\"Audit File System;ExpectedValue\",\"value\":\"[parameters('AuditFileSystem')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8e170edb-e0f5-497a-bb36-48b3280cec6a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8e170edb-e0f5-497a-bb36-48b3280cec6a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1278 - Alternate Processing Site | Preparation For Use\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1278\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8e5ef485-9e16-4c53-a475-fbb8107eac59\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8e5ef485-9e16-4c53-a475-fbb8107eac59\"},{\"properties\":{\"displayName\":\"Enable Security Center's auto provisioning of the Log Analytics agent on your subscriptions with custom workspace.\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Allow Security Center to auto provision the Log Analytics agent on your subscriptions to monitor and collect security data using a custom workspace.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Auto provision the Log Analytics agent on your subscriptions to monitor and collect security data using a custom workspace.\",\"strongType\":\"omsWorkspace\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/autoProvisioningSettings\",\"deploymentScope\":\"Subscription\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"existenceCondition\":{\"field\":\"Microsoft.Security/autoProvisioningSettings/autoProvision\",\"equals\":\"On\"},\"deployment\":{\"location\":\"westus\",\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Security/autoProvisioningSettings\",\"name\":\"default\",\"apiVersion\":\"2017-08-01-preview\",\"properties\":{\"autoProvision\":\"On\"}},{\"type\":\"Microsoft.Security/workspaceSettings\",\"apiVersion\":\"2017-08-01-preview\",\"name\":\"default\",\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"scope\":\"[subscription().id]\"}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8e7da0a5-0a0e-4bbc-bfc0-7773c018b616\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8e7da0a5-0a0e-4bbc-bfc0-7773c018b616\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1517 - Personnel Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1517\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8f5ad423-50d6-4617-b058-69908f5586c9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8f5ad423-50d6-4617-b058-69908f5586c9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1668 - Flaw Remediation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1668\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8fb0966e-be1d-42c3-baca-60df5c0bcc61\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8fb0966e-be1d-42c3-baca-60df5c0bcc61\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1013 - Account Management | Automated System Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1013\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8fd7b917-d83b-4379-af60-51e14e316c61\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8fd7b917-d83b-4379-af60-51e14e316c61\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1147 - Security Assessments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1147\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8fef824a-29a8-4a4c-88fc-420a39c0d541\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8fef824a-29a8-4a4c-88fc-420a39c0d541\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not store passwords using reversible encryption\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not store passwords using reversible encryption. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"StorePasswordsUsingReversibleEncryption\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"StorePasswordsUsingReversibleEncryption\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8ff0b18b-262e-4512-857a-48ad0aeb9a78\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8ff0b18b-262e-4512-857a-48ad0aeb9a78\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1550 - Vulnerability Scanning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1550\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/902908fb-25a8-4225-a3a5-5603c80066c9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"902908fb-25a8-4225-a3a5-5603c80066c9\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Windows Firewall Properties'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Windows Firewall Properties'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"WindowsFirewallDomainUseProfileSettings\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Domain): Use profile settings\",\"description\":\"Specifies whether Windows Firewall with Advanced Security uses the settings for the Domain profile to filter network traffic. If you select Off, Windows Firewall with Advanced Security will not use any of the firewall rules or connection security rules for this profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallDomainBehaviorForOutboundConnections\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Domain): Behavior for outbound connections\",\"description\":\"Specifies the behavior for outbound connections for the Domain profile that do not match an outbound firewall rule. The default value of 0 means to allow connections, and a value of 1 means to block connections.\"},\"defaultValue\":\"0\"},\"WindowsFirewallDomainApplyLocalConnectionSecurityRules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Domain): Apply local connection security rules\",\"description\":\"Specifies whether local administrators are allowed to create connection security rules that apply together with connection security rules configured by Group Policy for the Domain profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallDomainApplyLocalFirewallRules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Domain): Apply local firewall rules\",\"description\":\"Specifies whether local administrators are allowed to create local firewall rules that apply together with firewall rules configured by Group Policy for the Domain profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallDomainDisplayNotifications\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Domain): Display notifications\",\"description\":\"Specifies whether Windows Firewall with Advanced Security displays notifications to the user when a program is blocked from receiving inbound connections, for the Domain profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPrivateUseProfileSettings\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Private): Use profile settings\",\"description\":\"Specifies whether Windows Firewall with Advanced Security uses the settings for the Private profile to filter network traffic. If you select Off, Windows Firewall with Advanced Security will not use any of the firewall rules or connection security rules for this profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPrivateBehaviorForOutboundConnections\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Private): Behavior for outbound connections\",\"description\":\"Specifies the behavior for outbound connections for the Private profile that do not match an outbound firewall rule. The default value of 0 means to allow connections, and a value of 1 means to block connections.\"},\"defaultValue\":\"0\"},\"WindowsFirewallPrivateApplyLocalConnectionSecurityRules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Private): Apply local connection security rules\",\"description\":\"Specifies whether local administrators are allowed to create connection security rules that apply together with connection security rules configured by Group Policy for the Private profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPrivateApplyLocalFirewallRules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Private): Apply local firewall rules\",\"description\":\"Specifies whether local administrators are allowed to create local firewall rules that apply together with firewall rules configured by Group Policy for the Private profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPrivateDisplayNotifications\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Private): Display notifications\",\"description\":\"Specifies whether Windows Firewall with Advanced Security displays notifications to the user when a program is blocked from receiving inbound connections, for the Private profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPublicUseProfileSettings\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Public): Use profile settings\",\"description\":\"Specifies whether Windows Firewall with Advanced Security uses the settings for the Public profile to filter network traffic. If you select Off, Windows Firewall with Advanced Security will not use any of the firewall rules or connection security rules for this profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPublicBehaviorForOutboundConnections\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Public): Behavior for outbound connections\",\"description\":\"Specifies the behavior for outbound connections for the Public profile that do not match an outbound firewall rule. The default value of 0 means to allow connections, and a value of 1 means to block connections.\"},\"defaultValue\":\"0\"},\"WindowsFirewallPublicApplyLocalConnectionSecurityRules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Public): Apply local connection security rules\",\"description\":\"Specifies whether local administrators are allowed to create connection security rules that apply together with connection security rules configured by Group Policy for the Public profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPublicApplyLocalFirewallRules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Public): Apply local firewall rules\",\"description\":\"Specifies whether local administrators are allowed to create local firewall rules that apply together with firewall rules configured by Group Policy for the Public profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPublicDisplayNotifications\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Public): Display notifications\",\"description\":\"Specifies whether Windows Firewall with Advanced Security displays notifications to the user when a program is blocked from receiving inbound connections, for the Public profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallDomainAllowUnicastResponse\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall: Domain: Allow unicast response\",\"description\":\"Specifies whether Windows Firewall with Advanced Security permits the local computer to receive unicast responses to its outgoing multicast or broadcast messages; for the Domain profile.\"},\"defaultValue\":\"0\"},\"WindowsFirewallPrivateAllowUnicastResponse\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall: Private: Allow unicast response\",\"description\":\"Specifies whether Windows Firewall with Advanced Security permits the local computer to receive unicast responses to its outgoing multicast or broadcast messages; for the Private profile.\"},\"defaultValue\":\"0\"},\"WindowsFirewallPublicAllowUnicastResponse\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall: Public: Allow unicast response\",\"description\":\"Specifies whether Windows Firewall with Advanced Security permits the local computer to receive unicast responses to its outgoing multicast or broadcast messages; for the Public profile.\"},\"defaultValue\":\"1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_WindowsFirewallProperties\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Windows Firewall: Domain: Firewall state;ExpectedValue', '=', parameters('WindowsFirewallDomainUseProfileSettings'), ',', 'Windows Firewall: Domain: Outbound connections;ExpectedValue', '=', parameters('WindowsFirewallDomainBehaviorForOutboundConnections'), ',', 'Windows Firewall: Domain: Settings: Apply local connection security rules;ExpectedValue', '=', parameters('WindowsFirewallDomainApplyLocalConnectionSecurityRules'), ',', 'Windows Firewall: Domain: Settings: Apply local firewall rules;ExpectedValue', '=', parameters('WindowsFirewallDomainApplyLocalFirewallRules'), ',', 'Windows Firewall: Domain: Settings: Display a notification;ExpectedValue', '=', parameters('WindowsFirewallDomainDisplayNotifications'), ',', 'Windows Firewall: Private: Firewall state;ExpectedValue', '=', parameters('WindowsFirewallPrivateUseProfileSettings'), ',', 'Windows Firewall: Private: Outbound connections;ExpectedValue', '=', parameters('WindowsFirewallPrivateBehaviorForOutboundConnections'), ',', 'Windows Firewall: Private: Settings: Apply local connection security rules;ExpectedValue', '=', parameters('WindowsFirewallPrivateApplyLocalConnectionSecurityRules'), ',', 'Windows Firewall: Private: Settings: Apply local firewall rules;ExpectedValue', '=', parameters('WindowsFirewallPrivateApplyLocalFirewallRules'), ',', 'Windows Firewall: Private: Settings: Display a notification;ExpectedValue', '=', parameters('WindowsFirewallPrivateDisplayNotifications'), ',', 'Windows Firewall: Public: Firewall state;ExpectedValue', '=', parameters('WindowsFirewallPublicUseProfileSettings'), ',', 'Windows Firewall: Public: Outbound connections;ExpectedValue', '=', parameters('WindowsFirewallPublicBehaviorForOutboundConnections'), ',', 'Windows Firewall: Public: Settings: Apply local connection security rules;ExpectedValue', '=', parameters('WindowsFirewallPublicApplyLocalConnectionSecurityRules'), ',', 'Windows Firewall: Public: Settings: Apply local firewall rules;ExpectedValue', '=', parameters('WindowsFirewallPublicApplyLocalFirewallRules'), ',', 'Windows Firewall: Public: Settings: Display a notification;ExpectedValue', '=', parameters('WindowsFirewallPublicDisplayNotifications'), ',', 'Windows Firewall: Domain: Allow unicast response;ExpectedValue', '=', parameters('WindowsFirewallDomainAllowUnicastResponse'), ',', 'Windows Firewall: Private: Allow unicast response;ExpectedValue', '=', parameters('WindowsFirewallPrivateAllowUnicastResponse'), ',', 'Windows Firewall: Public: Allow unicast response;ExpectedValue', '=', parameters('WindowsFirewallPublicAllowUnicastResponse')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_WindowsFirewallProperties\"},\"WindowsFirewallDomainUseProfileSettings\":{\"value\":\"[parameters('WindowsFirewallDomainUseProfileSettings')]\"},\"WindowsFirewallDomainBehaviorForOutboundConnections\":{\"value\":\"[parameters('WindowsFirewallDomainBehaviorForOutboundConnections')]\"},\"WindowsFirewallDomainApplyLocalConnectionSecurityRules\":{\"value\":\"[parameters('WindowsFirewallDomainApplyLocalConnectionSecurityRules')]\"},\"WindowsFirewallDomainApplyLocalFirewallRules\":{\"value\":\"[parameters('WindowsFirewallDomainApplyLocalFirewallRules')]\"},\"WindowsFirewallDomainDisplayNotifications\":{\"value\":\"[parameters('WindowsFirewallDomainDisplayNotifications')]\"},\"WindowsFirewallPrivateUseProfileSettings\":{\"value\":\"[parameters('WindowsFirewallPrivateUseProfileSettings')]\"},\"WindowsFirewallPrivateBehaviorForOutboundConnections\":{\"value\":\"[parameters('WindowsFirewallPrivateBehaviorForOutboundConnections')]\"},\"WindowsFirewallPrivateApplyLocalConnectionSecurityRules\":{\"value\":\"[parameters('WindowsFirewallPrivateApplyLocalConnectionSecurityRules')]\"},\"WindowsFirewallPrivateApplyLocalFirewallRules\":{\"value\":\"[parameters('WindowsFirewallPrivateApplyLocalFirewallRules')]\"},\"WindowsFirewallPrivateDisplayNotifications\":{\"value\":\"[parameters('WindowsFirewallPrivateDisplayNotifications')]\"},\"WindowsFirewallPublicUseProfileSettings\":{\"value\":\"[parameters('WindowsFirewallPublicUseProfileSettings')]\"},\"WindowsFirewallPublicBehaviorForOutboundConnections\":{\"value\":\"[parameters('WindowsFirewallPublicBehaviorForOutboundConnections')]\"},\"WindowsFirewallPublicApplyLocalConnectionSecurityRules\":{\"value\":\"[parameters('WindowsFirewallPublicApplyLocalConnectionSecurityRules')]\"},\"WindowsFirewallPublicApplyLocalFirewallRules\":{\"value\":\"[parameters('WindowsFirewallPublicApplyLocalFirewallRules')]\"},\"WindowsFirewallPublicDisplayNotifications\":{\"value\":\"[parameters('WindowsFirewallPublicDisplayNotifications')]\"},\"WindowsFirewallDomainAllowUnicastResponse\":{\"value\":\"[parameters('WindowsFirewallDomainAllowUnicastResponse')]\"},\"WindowsFirewallPrivateAllowUnicastResponse\":{\"value\":\"[parameters('WindowsFirewallPrivateAllowUnicastResponse')]\"},\"WindowsFirewallPublicAllowUnicastResponse\":{\"value\":\"[parameters('WindowsFirewallPublicAllowUnicastResponse')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"WindowsFirewallDomainUseProfileSettings\":{\"type\":\"string\"},\"WindowsFirewallDomainBehaviorForOutboundConnections\":{\"type\":\"string\"},\"WindowsFirewallDomainApplyLocalConnectionSecurityRules\":{\"type\":\"string\"},\"WindowsFirewallDomainApplyLocalFirewallRules\":{\"type\":\"string\"},\"WindowsFirewallDomainDisplayNotifications\":{\"type\":\"string\"},\"WindowsFirewallPrivateUseProfileSettings\":{\"type\":\"string\"},\"WindowsFirewallPrivateBehaviorForOutboundConnections\":{\"type\":\"string\"},\"WindowsFirewallPrivateApplyLocalConnectionSecurityRules\":{\"type\":\"string\"},\"WindowsFirewallPrivateApplyLocalFirewallRules\":{\"type\":\"string\"},\"WindowsFirewallPrivateDisplayNotifications\":{\"type\":\"string\"},\"WindowsFirewallPublicUseProfileSettings\":{\"type\":\"string\"},\"WindowsFirewallPublicBehaviorForOutboundConnections\":{\"type\":\"string\"},\"WindowsFirewallPublicApplyLocalConnectionSecurityRules\":{\"type\":\"string\"},\"WindowsFirewallPublicApplyLocalFirewallRules\":{\"type\":\"string\"},\"WindowsFirewallPublicDisplayNotifications\":{\"type\":\"string\"},\"WindowsFirewallDomainAllowUnicastResponse\":{\"type\":\"string\"},\"WindowsFirewallPrivateAllowUnicastResponse\":{\"type\":\"string\"},\"WindowsFirewallPublicAllowUnicastResponse\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Windows Firewall: Domain: Firewall state;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainUseProfileSettings')]\"},{\"name\":\"Windows Firewall: Domain: Outbound connections;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainBehaviorForOutboundConnections')]\"},{\"name\":\"Windows Firewall: Domain: Settings: Apply local connection security rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainApplyLocalConnectionSecurityRules')]\"},{\"name\":\"Windows Firewall: Domain: Settings: Apply local firewall rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainApplyLocalFirewallRules')]\"},{\"name\":\"Windows Firewall: Domain: Settings: Display a notification;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainDisplayNotifications')]\"},{\"name\":\"Windows Firewall: Private: Firewall state;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateUseProfileSettings')]\"},{\"name\":\"Windows Firewall: Private: Outbound connections;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateBehaviorForOutboundConnections')]\"},{\"name\":\"Windows Firewall: Private: Settings: Apply local connection security rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateApplyLocalConnectionSecurityRules')]\"},{\"name\":\"Windows Firewall: Private: Settings: Apply local firewall rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateApplyLocalFirewallRules')]\"},{\"name\":\"Windows Firewall: Private: Settings: Display a notification;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateDisplayNotifications')]\"},{\"name\":\"Windows Firewall: Public: Firewall state;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicUseProfileSettings')]\"},{\"name\":\"Windows Firewall: Public: Outbound connections;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicBehaviorForOutboundConnections')]\"},{\"name\":\"Windows Firewall: Public: Settings: Apply local connection security rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicApplyLocalConnectionSecurityRules')]\"},{\"name\":\"Windows Firewall: Public: Settings: Apply local firewall rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicApplyLocalFirewallRules')]\"},{\"name\":\"Windows Firewall: Public: Settings: Display a notification;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicDisplayNotifications')]\"},{\"name\":\"Windows Firewall: Domain: Allow unicast response;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainAllowUnicastResponse')]\"},{\"name\":\"Windows Firewall: Private: Allow unicast response;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateAllowUnicastResponse')]\"},{\"name\":\"Windows Firewall: Public: Allow unicast response;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicAllowUnicastResponse')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Windows Firewall: Domain: Firewall state;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainUseProfileSettings')]\"},{\"name\":\"Windows Firewall: Domain: Outbound connections;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainBehaviorForOutboundConnections')]\"},{\"name\":\"Windows Firewall: Domain: Settings: Apply local connection security rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainApplyLocalConnectionSecurityRules')]\"},{\"name\":\"Windows Firewall: Domain: Settings: Apply local firewall rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainApplyLocalFirewallRules')]\"},{\"name\":\"Windows Firewall: Domain: Settings: Display a notification;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainDisplayNotifications')]\"},{\"name\":\"Windows Firewall: Private: Firewall state;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateUseProfileSettings')]\"},{\"name\":\"Windows Firewall: Private: Outbound connections;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateBehaviorForOutboundConnections')]\"},{\"name\":\"Windows Firewall: Private: Settings: Apply local connection security rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateApplyLocalConnectionSecurityRules')]\"},{\"name\":\"Windows Firewall: Private: Settings: Apply local firewall rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateApplyLocalFirewallRules')]\"},{\"name\":\"Windows Firewall: Private: Settings: Display a notification;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateDisplayNotifications')]\"},{\"name\":\"Windows Firewall: Public: Firewall state;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicUseProfileSettings')]\"},{\"name\":\"Windows Firewall: Public: Outbound connections;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicBehaviorForOutboundConnections')]\"},{\"name\":\"Windows Firewall: Public: Settings: Apply local connection security rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicApplyLocalConnectionSecurityRules')]\"},{\"name\":\"Windows Firewall: Public: Settings: Apply local firewall rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicApplyLocalFirewallRules')]\"},{\"name\":\"Windows Firewall: Public: Settings: Display a notification;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicDisplayNotifications')]\"},{\"name\":\"Windows Firewall: Domain: Allow unicast response;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainAllowUnicastResponse')]\"},{\"name\":\"Windows Firewall: Private: Allow unicast response;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateAllowUnicastResponse')]\"},{\"name\":\"Windows Firewall: Public: Allow unicast response;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicAllowUnicastResponse')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/909c958d-1b99-4c74-b88f-46a5c5bc34f9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"909c958d-1b99-4c74-b88f-46a5c5bc34f9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1133 - Protection Of Audit Information | Cryptographic Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1133\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/90b60a09-133d-45bc-86ef-b206a6134bbe\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"90b60a09-133d-45bc-86ef-b206a6134bbe\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not have the specified Windows PowerShell modules installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not have the specified Windows PowerShell modules installed. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"Modules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"PowerShell Modules\",\"description\":\"A semicolon-separated list of the names of the PowerShell modules that should be installed. You may also specify a specific version of a module that should be installed by including a comma after the module name, followed by the desired version. e.g. PSDscResources; SqlServerDsc, 12.0.0.0; ComputerManagementDsc, 6.1.0.0\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsPowerShellModules\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[PowerShellModules]PowerShellModules1;Modules', '=', parameters('Modules')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsPowerShellModules\"},\"Modules\":{\"value\":\"[parameters('Modules')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"Modules\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[PowerShellModules]PowerShellModules1;Modules\",\"value\":\"[parameters('Modules')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[PowerShellModules]PowerShellModules1;Modules\",\"value\":\"[parameters('Modules')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/90ba2ee7-4ca8-4673-84d1-c851c50d3baf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"90ba2ee7-4ca8-4673-84d1-c851c50d3baf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1140 - Audit Generation | System-Wide / Time-Correlated Audit Trail\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1140\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/90d8b8ad-8ee3-4db7-913f-2a53fcff5316\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"90d8b8ad-8ee3-4db7-913f-2a53fcff5316\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1355 - Incident Response Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1355\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/90e01f69-3074-4de8-ade7-0fef3e7d83e0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"90e01f69-3074-4de8-ade7-0fef3e7d83e0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1657 - Secure Name / Address Resolution Service (Authoritative Source)\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1657\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/90f01329-a100-43c2-af31-098996135d2b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"90f01329-a100-43c2-af31-098996135d2b\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Windows Components'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Windows Components'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_WindowsComponents\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9178b430-2295-406e-bb28-f6a7a2a2f897\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9178b430-2295-406e-bb28-f6a7a2a2f897\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1069 - Wireless Access | Authentication And Encryption\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1069\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/91c97b44-791e-46e9-bad7-ab7c4949edbb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"91c97b44-791e-46e9-bad7-ab7c4949edbb\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy Dependency agent to Windows Azure Arc machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Dependency agent to Windows Azure Arc machines if the agent isn't installed.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Monitoring\",\"preview\":true},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.HybridCompute/machines/extensions/type\",\"equals\":\"DependencyAgentWindows\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"DaExtensionName\":\"DependencyAgent\",\"DaExtensionType\":\"DependencyAgentWindows\"},\"resources\":[{\"type\":\"Microsoft.HybridCompute/machines\",\"apiVersion\":\"2020-03-11-preview\",\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\",\"resources\":[{\"type\":\"extensions\",\"apiVersion\":\"2020-03-11-preview\",\"name\":\"[variables('DaExtensionName')]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[concat('Microsoft.HybridCompute/machines/', parameters('vmName'))]\"],\"properties\":{\"publisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"type\":\"[variables('DaExtensionType')]\",\"autoUpgradeMinorVersion\":true,\"settings\":{}}}]}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled DA extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/91cb9edd-cd92-4d2f-b2f2-bdd8d065a3d4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"91cb9edd-cd92-4d2f-b2f2-bdd8d065a3d4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1370 - Incident Monitoring | Automated Tracking / Data Collection / Analysis\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1370\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/924e1b2d-c502-478f-bfdb-a7e09a0d5c01\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"924e1b2d-c502-478f-bfdb-a7e09a0d5c01\"},{\"properties\":{\"displayName\":\"MFA should be enabled accounts with write permissions on your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Multi-Factor Authentication (MFA) should be enabled for all subscription accounts with write privileges to prevent a breach of accounts or resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"EnableMFAForWritePermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9297c21d-2ed6-4474-b48f-163f75654ce3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9297c21d-2ed6-4474-b48f-163f75654ce3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1290 - Information System Backup\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1290\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/92f85ce9-17b7-49ea-85ee-ea7271ea6b82\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"92f85ce9-17b7-49ea-85ee-ea7271ea6b82\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that contain certificates expiring within the specified number of days\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that contain certificates expiring within the specified number of days. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"CertificateExpiration\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9328f27e-611e-44a7-a244-39109d7d35ab\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9328f27e-611e-44a7-a244-39109d7d35ab\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs in which the Administrators group does not contain all of the specified members\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines in which the Administrators group does not contain all of the specified members. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"MembersToInclude\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Members to include\",\"description\":\"A semicolon-separated list of members that should be included in the Administrators local group. Ex: Administrator; myUser1; myUser2\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AdministratorsGroupMembersToInclude\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[LocalGroup]AdministratorsGroup;MembersToInclude', '=', parameters('MembersToInclude')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AdministratorsGroupMembersToInclude\"},\"MembersToInclude\":{\"value\":\"[parameters('MembersToInclude')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"MembersToInclude\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LocalGroup]AdministratorsGroup;MembersToInclude\",\"value\":\"[parameters('MembersToInclude')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LocalGroup]AdministratorsGroup;MembersToInclude\",\"value\":\"[parameters('MembersToInclude')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/93507a81-10a4-4af0-9ee2-34cf25a96e98\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"93507a81-10a4-4af0-9ee2-34cf25a96e98\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1575 - Acquisition Process | Functional Properties Of Security Controls\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1575\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/93e1bb73-1b08-4dbe-9c62-8e2e92e7ec41\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"93e1bb73-1b08-4dbe-9c62-8e2e92e7ec41\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1674 - Flaw Remediation | Time To Remediate Flaws / Benchmarks For Corrective Actions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1674\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/93e9e233-dd0a-4bde-aea5-1371bce0e002\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"93e9e233-dd0a-4bde-aea5-1371bce0e002\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1297 - Information System Recovery And Reconstitution | Restore Within Time Period\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1297\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/93fd8af1-c161-4bae-9ba9-f62731f76439\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"93fd8af1-c161-4bae-9ba9-f62731f76439\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1284 - Telecommunications Services | Provider Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1284\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/942b3e97-6ae3-410e-a794-c9c999b97c0b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"942b3e97-6ae3-410e-a794-c9c999b97c0b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1379 - Incident Response Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1379\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9442dd2c-a07f-46cd-b55a-553b66ba47ca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9442dd2c-a07f-46cd-b55a-553b66ba47ca\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1371 - Incident Reporting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1371\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9447f354-2c85-4700-93b3-ecdc6cb6a417\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9447f354-2c85-4700-93b3-ecdc6cb6a417\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation only in European data centers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation in the following locations only: North Europe, West Europe\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"General\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/94c19f19-8192-48cd-a11b-e37099d3e36b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"94c19f19-8192-48cd-a11b-e37099d3e36b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1526 - Access Agreements\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1526\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/953e6261-a05a-44fd-8246-000e1a3edbb9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"953e6261-a05a-44fd-8246-000e1a3edbb9\"},{\"properties\":{\"displayName\":\"Authentication should be enabled on your web app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Azure App Service Authentication is a feature that can prevent anonymous HTTP requests from reaching the web app, or authenticate those that have tokens before they reach the web app\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/siteAuthEnabled\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/95bccee9-a7f8-4bec-9ee9-62c3473701fc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"95bccee9-a7f8-4bec-9ee9-62c3473701fc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1163 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1163\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/961663a1-8a91-4e59-b6f5-1eee57c0f49c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"961663a1-8a91-4e59-b6f5-1eee57c0f49c\"},{\"properties\":{\"displayName\":\"Require a tag on resource groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enforces existence of a tag on resource groups.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions/resourceGroups\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/96670d01-0a4d-4649-9c89-2d3abc0a5025\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"96670d01-0a4d-4649-9c89-2d3abc0a5025\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1717 - Software, Firmware, And Information Integrity | Binary Or Machine Executable Code\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1717\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/967773fc-d9ab-4a4e-8ff6-f5e9e3f5dbef\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"967773fc-d9ab-4a4e-8ff6-f5e9e3f5dbef\"},{\"properties\":{\"displayName\":\"[Deprecated]: Advanced data security settings for SQL server should contain an email address to receive security alerts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Ensure that an email address is provided for the 'Send alerts to' field in the Advanced Data Security server settings. This email address receives alert notifications when anomalous activities are detected on SQL servers.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/securityAlertPolicies/emailAddresses[*]\",\"notEquals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9677b740-f641-4f3c-b9c5-466005c85278\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9677b740-f641-4f3c-b9c5-466005c85278\"},{\"properties\":{\"displayName\":\"App Configuration should use a customer managed key\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any App Configuration instance that does not use a customer managed key.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Configuration\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.AppConfiguration/configurationStores\"},{\"field\":\"Microsoft.AppConfiguration/configurationStores/encryption.keyVaultProperties.keyIdentifier\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/967a4b4b-2da9-43c1-b7d0-f98d0d74d0b1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"967a4b4b-2da9-43c1-b7d0-f98d0d74d0b1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1453 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1453\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9693b564-3008-42bc-9d5d-9c7fe198c011\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9693b564-3008-42bc-9d5d-9c7fe198c011\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Administrative Templates - MSS (Legacy)'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - MSS (Legacy)'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdminstrativeTemplatesMSSLegacy\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/97646672-5efa-4622-9b54-740270ad60bf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"97646672-5efa-4622-9b54-740270ad60bf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1607 - Developer Security Testing And Evaluation | Dynamic Code Analysis\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1607\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/976a74cf-b192-4d35-8cab-2068f272addb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"976a74cf-b192-4d35-8cab-2068f272addb\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Policy Change'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Policy Change'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditAuthenticationPolicyChange\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Authentication Policy Change\",\"description\":\"Specifies whether audit events are generated when changes are made to authentication policy. This setting is useful for tracking changes in domain-level and forest-level trust and privileges that are granted to user accounts or groups.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"Success\"},\"AuditAuthorizationPolicyChange\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Authorization Policy Change\",\"description\":\"Specifies whether audit events are generated for assignment and removal of user rights in user right policies, changes in security token object permission, resource attributes changes and Central Access Policy changes for file system objects.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"No Auditing\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesPolicyChange\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit Authentication Policy Change;ExpectedValue', '=', parameters('AuditAuthenticationPolicyChange'), ',', 'Audit Authorization Policy Change;ExpectedValue', '=', parameters('AuditAuthorizationPolicyChange')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesPolicyChange\"},\"AuditAuthenticationPolicyChange\":{\"value\":\"[parameters('AuditAuthenticationPolicyChange')]\"},\"AuditAuthorizationPolicyChange\":{\"value\":\"[parameters('AuditAuthorizationPolicyChange')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditAuthenticationPolicyChange\":{\"type\":\"string\"},\"AuditAuthorizationPolicyChange\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Authentication Policy Change;ExpectedValue\",\"value\":\"[parameters('AuditAuthenticationPolicyChange')]\"},{\"name\":\"Audit Authorization Policy Change;ExpectedValue\",\"value\":\"[parameters('AuditAuthorizationPolicyChange')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Authentication Policy Change;ExpectedValue\",\"value\":\"[parameters('AuditAuthenticationPolicyChange')]\"},{\"name\":\"Audit Authorization Policy Change;ExpectedValue\",\"value\":\"[parameters('AuditAuthorizationPolicyChange')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/97b595c8-fd10-400e-8543-28e2b9138b13\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"97b595c8-fd10-400e-8543-28e2b9138b13\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1136 - Audit Record Retention\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1136\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/97ed5bac-a92f-4f6d-a8ed-dc094723597c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"97ed5bac-a92f-4f6d-a8ed-dc094723597c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1378 - Incident Response Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1378\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/97fceb70-6983-42d0-9331-18ad8253184d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"97fceb70-6983-42d0-9331-18ad8253184d\"},{\"properties\":{\"displayName\":\"Azure Event Grid domains should use private links\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Azure Event Grid domains that do not have at least one approved private endpoint connection. Clients in a virtual network can securely access resources that have private endpoint connections via private links. For more information, visit https://aka.ms/privateendpoints.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Event Grid\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.EventGrid/domains\"},{\"count\":{\"field\":\"Microsoft.EventGrid/domains/privateEndpointConnections[*]\",\"where\":{\"field\":\"Microsoft.EventGrid/domains/privateEndpointConnections[*].privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}},\"less\":1}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9830b652-8523-49cc-b1b3-e17dce1127ca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9830b652-8523-49cc-b1b3-e17dce1127ca\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation only in United States data centers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation in the following locations only: Central US, East US, East US2, North Central US, South Central US, West US\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"General\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"centralus\",\"eastus\",\"eastus2\",\"northcentralus\",\"southcentralus\",\"westus\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/983211ba-f348-4758-983b-21fa29294869\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"983211ba-f348-4758-983b-21fa29294869\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Administrative Templates - Network'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - Network'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"EnableInsecureGuestLogons\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable insecure guest logons\",\"description\":\"Specifies whether the SMB client will allow insecure guest logons to an SMB server.\"},\"defaultValue\":\"0\"},\"AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Allow simultaneous connections to the Internet or a Windows Domain\",\"description\":\"Specify whether to prevent computers from connecting to both a domain based network and a non-domain based network at the same time. A value of 0 allows simultaneous connections, and a value of 1 blocks them.\"},\"defaultValue\":\"1\"},\"TurnOffMulticastNameResolution\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Turn off multicast name resolution\",\"description\":\"Specifies whether LLMNR, a secondary name resolution protocol that transmits using multicast over a local subnet link on a single subnet, is enabled.\"},\"defaultValue\":\"1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdministrativeTemplatesNetwork\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Enable insecure guest logons;ExpectedValue', '=', parameters('EnableInsecureGuestLogons'), ',', 'Minimize the number of simultaneous connections to the Internet or a Windows Domain;ExpectedValue', '=', parameters('AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain'), ',', 'Turn off multicast name resolution;ExpectedValue', '=', parameters('TurnOffMulticastNameResolution')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_AdministrativeTemplatesNetwork\"},\"EnableInsecureGuestLogons\":{\"value\":\"[parameters('EnableInsecureGuestLogons')]\"},\"AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain\":{\"value\":\"[parameters('AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain')]\"},\"TurnOffMulticastNameResolution\":{\"value\":\"[parameters('TurnOffMulticastNameResolution')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"EnableInsecureGuestLogons\":{\"type\":\"string\"},\"AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain\":{\"type\":\"string\"},\"TurnOffMulticastNameResolution\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Enable insecure guest logons;ExpectedValue\",\"value\":\"[parameters('EnableInsecureGuestLogons')]\"},{\"name\":\"Minimize the number of simultaneous connections to the Internet or a Windows Domain;ExpectedValue\",\"value\":\"[parameters('AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain')]\"},{\"name\":\"Turn off multicast name resolution;ExpectedValue\",\"value\":\"[parameters('TurnOffMulticastNameResolution')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Enable insecure guest logons;ExpectedValue\",\"value\":\"[parameters('EnableInsecureGuestLogons')]\"},{\"name\":\"Minimize the number of simultaneous connections to the Internet or a Windows Domain;ExpectedValue\",\"value\":\"[parameters('AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain')]\"},{\"name\":\"Turn off multicast name resolution;ExpectedValue\",\"value\":\"[parameters('TurnOffMulticastNameResolution')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/985285b7-b97a-419c-8d48-c88cc934c8d8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"985285b7-b97a-419c-8d48-c88cc934c8d8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1076 - Use Of External Information Systems\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1076\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/98a4bd5f-6436-46d4-ad00-930b5b1dfed4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"98a4bd5f-6436-46d4-ad00-930b5b1dfed4\"},{\"properties\":{\"displayName\":\"Ensure that 'HTTP Version' is the latest, if used to run the Api app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for HTTP either due to security flaws or to include additional functionality. Using the latest HTTP version for web apps to take advantage of security fixes, if any, and/or new functionalities of the newer version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.http20Enabled\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/991310cd-e9f3-47bc-b7b6-f57b557d07db\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"991310cd-e9f3-47bc-b7b6-f57b557d07db\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1102 - Audit Events\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1102\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9943c16a-c54c-4b4a-ad28-bfd938cdbf57\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9943c16a-c54c-4b4a-ad28-bfd938cdbf57\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1300 - Identification And Authentication (Organizational Users)\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1300\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/99deec7d-5526-472e-b07c-3645a792026a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"99deec7d-5526-472e-b07c-3645a792026a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1036 - Least Privilege | Non-Privileged Access For Nonsecurity Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1036\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9a16d673-8cf0-4dcf-b1d5-9b3e114fef71\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9a16d673-8cf0-4dcf-b1d5-9b3e114fef71\"},{\"properties\":{\"displayName\":\"FTPS only should be required in your API App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Enable FTPS enforcement for enhanced security\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/ftpsState\",\"in\":[\"FtpsOnly\",\"Disabled\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9a1b8c48-453a-4044-86c3-d8bfd823e4f5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9a1b8c48-453a-4044-86c3-d8bfd823e4f5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1021 - Account Management | Restrictions On Use Of Shared / Group Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1021\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9a3eb0a3-428d-4669-baff-20a14eb4b551\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9a3eb0a3-428d-4669-baff-20a14eb4b551\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Azure SQL Database to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Azure SQL Database to stream to a regional Event Hub on any Azure SQL Database which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"SQL\"},\"parameters\":{\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers/databases\"},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"resources\":[{\"type\":\"Microsoft.Sql/servers/databases/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('fullName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"QueryStoreRuntimeStatistics\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"QueryStoreWaitStatistics\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Errors\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"DatabaseWaitStatistics\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Blocks\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"SQLInsights\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"SQLSecurityAuditEvents\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Timeouts\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"AutomaticTuning\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Deadlocks\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled diagnostic settings for ', parameters('fullName'))]\"}}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"fullName\":{\"value\":\"[field('fullName')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9a7c7a7d-49e5-4213-bea8-6a502b6272e0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9a7c7a7d-49e5-4213-bea8-6a502b6272e0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1049 - System Use Notification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1049\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9adf7ba7-900a-4f35-8d57-9f34aafc405c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9adf7ba7-900a-4f35-8d57-9f34aafc405c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1563 - Allocation Of Resources\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1563\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9afe2edf-232c-4fdf-8e6a-e867a5c525fd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9afe2edf-232c-4fdf-8e6a-e867a5c525fd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1462 - Monitoring Physical Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1462\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9b1f3a9a-13a1-4b40-8420-36bca6fd8c02\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9b1f3a9a-13a1-4b40-8420-36bca6fd8c02\"},{\"properties\":{\"displayName\":\"Microsoft IaaSAntimalware extension should be deployed on Windows servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Windows server VM without Microsoft IaaSAntimalware extension deployed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\"]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"IaaSAntimalware\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Security\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9b597639-28e4-48eb-b506-56b05d366257\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9b597639-28e4-48eb-b506-56b05d366257\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1236 - Software Usage Restrictions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1236\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9ba3ed84-c768-4e18-b87c-34ef1aff1b57\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9ba3ed84-c768-4e18-b87c-34ef1aff1b57\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1525 - Personnel Transfer\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1525\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9be2f688-7a61-45e3-8230-e1ec93893f66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9be2f688-7a61-45e3-8230-e1ec93893f66\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit API Applications that are not using latest supported Java Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported Java version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestJava\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9bfe3727-0a17-471f-a2fe-eddd6b668745\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9bfe3727-0a17-471f-a2fe-eddd6b668745\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1138 - Audit Generation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1138\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9c284fc0-268a-4f29-af44-3c126674edb4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9c284fc0-268a-4f29-af44-3c126674edb4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1135 - Non-Repudiation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1135\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9c308b6b-2429-4b97-86cf-081b8e737b04\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9c308b6b-2429-4b97-86cf-081b8e737b04\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1489 - Location Of Information System Components\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1489\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d0a794f-1444-4c96-9534-e35fc8c39c91\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d0a794f-1444-4c96-9534-e35fc8c39c91\"},{\"properties\":{\"displayName\":\"Ensure that 'Java version' is the latest, if used as a part of the Function app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for Java software either due to security flaws or to include additional functionality. Using the latest Java version for Function apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"JavaLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Latest Java version\",\"description\":\"Latest supported Java version for App Services\"},\"defaultValue\":\"11\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"JAVA\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"like\":\"[concat('*', parameters('JavaLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"like\":\"[concat(parameters('JavaLatestVersion'), '*')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d0b6ea4-93e2-4578-bf2f-6bb17d22b4bc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d0b6ea4-93e2-4578-bf2f-6bb17d22b4bc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1322 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1322\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d1d971e-467e-4278-9633-c74c3d4fecc4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d1d971e-467e-4278-9633-c74c3d4fecc4\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy Log Analytics agent to Linux Azure Arc machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Log Analytics agent to Linux Azure Arc machines if the agent isn't installed.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Monitoring\",\"preview\":true},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Log Analytics workspace\",\"description\":\"Specify the Log Analytics workspace the agent should be connected to. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.HybridCompute/machines/extensions/type\",\"equals\":\"OmsAgentForLinux\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"MMAExtension\",\"vmExtensionPublisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"vmExtensionType\":\"OmsAgentForLinux\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2019-12-12\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\",\"stopOnMultipleConnections\":\"true\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d2b61b4-1d14-4a63-be30-d4498e7ad2cf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d2b61b4-1d14-4a63-be30-d4498e7ad2cf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1233 - Configuration Management Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1233\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d79001f-95fe-45d0-8736-f217e78c1f57\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d79001f-95fe-45d0-8736-f217e78c1f57\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1305 - Identification And Authentication (Org. Users) | Group Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1305\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d9166a8-1722-4b8f-847c-2cf3f2618b3d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d9166a8-1722-4b8f-847c-2cf3f2618b3d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1259 - Contingency Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1259\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d9e18f7-bad9-4d30-8806-a0c9d5e26208\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d9e18f7-bad9-4d30-8806-a0c9d5e26208\"},{\"properties\":{\"displayName\":\"Access through Internet facing endpoint should be restricted\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Azure Security center has identified some of your Network Security Groups' inbound rules to be too permissive. Inbound rules should not allow access from 'Any' or 'Internet' ranges. This can potentially enable attackers to easily target your resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"unprotectedNetworkEndpoint\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9daedab3-fb2d-461e-b861-71790eead4f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9daedab3-fb2d-461e-b861-71790eead4f6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1500 - Rules Of Behavior\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1500\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9dd5b241-03cb-47d3-a5cd-4b89f9c53c92\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9dd5b241-03cb-47d3-a5cd-4b89f9c53c92\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1482 - Temperature And Humidity Controls | Monitoring With Alarms / Notifications\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1482\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9df4277e-8c88-4d5c-9b1a-541d53d15d7b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9df4277e-8c88-4d5c-9b1a-541d53d15d7b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1553 - Vulnerability Scanning | Breadth / Depth Of Coverage\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1553\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9e5225fe-cdfb-4fce-9aec-0fe20dd53b62\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9e5225fe-cdfb-4fce-9aec-0fe20dd53b62\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1490 - Security Planning Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1490\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9e61da80-0957-4892-b70c-609d5eaafb6b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9e61da80-0957-4892-b70c-609d5eaafb6b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1504 - Information Security Architecture\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1504\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9e7c35d0-12d4-4e0c-80a2-8a352537aefd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9e7c35d0-12d4-4e0c-80a2-8a352537aefd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1609 - Development Process, Standards, And Tools\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1609\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9e93fa71-42ac-41a7-b177-efbfdc53c69f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9e93fa71-42ac-41a7-b177-efbfdc53c69f\"},{\"properties\":{\"displayName\":\"Append a tag and its value from the resource group\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Appends the specified tag with its value from the resource group when any resource which is missing this tag is created or updated. Does not modify the tags of resources created before this policy was applied until those resources are changed. New 'modify' effect policies are available that support remediation of tags on existing resources (see https://aka.ms/modifydoc).\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagName')]]\",\"notEquals\":\"\"}]},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[resourceGroup().tags[parameters('tagName')]]\"}]}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9ea02ca2-71db-412d-8b00-7c7ca9fcd32d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9ea02ca2-71db-412d-8b00-7c7ca9fcd32d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1494 - System Security Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1494\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9ed09d84-3311-4853-8b67-2b55dfa33d09\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9ed09d84-3311-4853-8b67-2b55dfa33d09\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1514 - Personnel Screening | Information With Special Protection Measures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1514\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9ed5ca00-0e43-434e-a018-7aab91461ba7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9ed5ca00-0e43-434e-a018-7aab91461ba7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1187 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1187\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9f2b2f9e-4ba6-46c3-907f-66db138b6f85\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9f2b2f9e-4ba6-46c3-907f-66db138b6f85\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that are not set to the specified time zone\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that are not set to the specified time zone. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsTimeZone\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9f658460-46b7-43af-8565-94fc0662be38\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9f658460-46b7-43af-8565-94fc0662be38\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1354 - Incident Response Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1354\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9fd92c17-163a-4511-bb96-bbb476449796\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9fd92c17-163a-4511-bb96-bbb476449796\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs on which the Log Analytics agent is not connected as expected\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines on which the Log Analytics agent is not connected to the specified workspaces. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsLogAnalyticsAgentConnection\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a030a57e-4639-4e8f-ade9-a92f33afe7ee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a030a57e-4639-4e8f-ade9-a92f33afe7ee\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1145 - Security Assessments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1145\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a0724970-9c75-4a64-a225-a28002953f28\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a0724970-9c75-4a64-a225-a28002953f28\"},{\"properties\":{\"displayName\":\"Allowed resource types\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables you to specify the resource types that your organization can deploy. Only resource types that support 'tags' and 'location' will be affected by this policy. To restrict all resources please duplicate this policy and change the 'mode' to 'All'.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"General\"},\"parameters\":{\"listOfResourceTypesAllowed\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of resource types that can be deployed.\",\"displayName\":\"Allowed resource types\",\"strongType\":\"resourceTypes\"}}},\"policyRule\":{\"if\":{\"not\":{\"field\":\"type\",\"in\":\"[parameters('listOfResourceTypesAllowed')]\"}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a08ec900-254a-4555-9bf5-e42af04b5c5c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a08ec900-254a-4555-9bf5-e42af04b5c5c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1245 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1245\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a0e45314-57b8-4623-80cd-bbb561f59516\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a0e45314-57b8-4623-80cd-bbb561f59516\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1406 - Maintenance Tools | Inspect Media\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1406\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a0f5339c-9292-43aa-a0bc-d27c6b8e30aa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a0f5339c-9292-43aa-a0bc-d27c6b8e30aa\"},{\"properties\":{\"displayName\":\"Security Center standard pricing tier should be selected\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"The standard pricing tier enables threat detection for networks and virtual machines, providing threat intelligence, anomaly detection, and behavior analytics in Azure Security Center\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Security/pricings\"},{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"exists\":\"true\"},{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"notEquals\":\"Standard\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a1181c5f-672a-477a-979a-7d58aa086233\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a1181c5f-672a-477a-979a-7d58aa086233\"},{\"properties\":{\"displayName\":\"All authorization rules except RootManageSharedAccessKey should be removed from Service Bus namespace\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Service Bus clients should not use a namespace level access policy that provides access to all queues and topics in a namespace. To align with the least privilege security model, you should create access policies at the entity level for queues and topics to provide access to only the specific entity\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Service Bus\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ServiceBus/namespaces/authorizationRules\"},{\"field\":\"name\",\"notEquals\":\"RootManageSharedAccessKey\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a1817ec0-a368-432a-8057-8371e17ac6ee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a1817ec0-a368-432a-8057-8371e17ac6ee\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1265 - Contingency Plan Testing | Alternate Processing Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1265\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a18adb5b-1db6-4a5b-901a-7d3797d12972\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a18adb5b-1db6-4a5b-901a-7d3797d12972\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Logic Apps to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Logic Apps to stream to a regional Event Hub when any Logic Apps which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Logic Apps in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Logic/workflows\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Logic/workflows/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"WorkflowRuntime\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a1dae6c7-13f3-48ea-a149-ff8442661f60\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a1dae6c7-13f3-48ea-a149-ff8442661f60\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Administrative Templates - System'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - System'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdministrativeTemplatesSystem\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a1e8dda3-9fd2-4835-aec3-0e55531fde33\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a1e8dda3-9fd2-4835-aec3-0e55531fde33\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1612 - Developer Security Architecture And Design\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1612\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a2037b3d-8b04-4171-8610-e6d4f1d08db5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a2037b3d-8b04-4171-8610-e6d4f1d08db5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1197 - Configuration Change Control | Test / Validate / Document Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1197\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a20d2eaa-88e2-4907-96a2-8f3a05797e5c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a20d2eaa-88e2-4907-96a2-8f3a05797e5c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1275 - Alternate Processing Site | Separation From Primary Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1275\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a23d9d53-ad2e-45ef-afd5-e6d10900a737\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a23d9d53-ad2e-45ef-afd5-e6d10900a737\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1690 - Information System Monitoring | System-Wide Intrusion Detection System\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1690\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a2567a23-d1c3-4783-99f3-d471302a4d6b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a2567a23-d1c3-4783-99f3-d471302a4d6b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1410 - Maintenance Tools | Prevent Unauthorized Removal\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1410\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a2596a9f-e59f-420d-9625-6e0b536348be\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a2596a9f-e59f-420d-9625-6e0b536348be\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1059 - Remote Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1059\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a29b5d9f-4953-4afe-b560-203a6410b6b4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a29b5d9f-4953-4afe-b560-203a6410b6b4\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that are not joined to the specified domain\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that are not joined to the specified domain. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDomainMembership\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a29ee95c-0395-4515-9851-cc04ffe82a91\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a29ee95c-0395-4515-9851-cc04ffe82a91\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1532 - Third-Party Personnel Security\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1532\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a2c66299-9017-4d95-8040-8bdbf7901d52\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a2c66299-9017-4d95-8040-8bdbf7901d52\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1664 - Protection Of Information At Rest | Cryptographic Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1664\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a2cdf6b8-9505-4619-b579-309ba72037ac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a2cdf6b8-9505-4619-b579-309ba72037ac\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1252 - Contingency Plan | Capacity Planning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1252\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a328fd72-8ff5-4f96-8c9c-b30ed95db4ab\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a328fd72-8ff5-4f96-8c9c-b30ed95db4ab\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1238 - User-Installed Software\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1238\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a36cedd4-3ffd-4b1f-8b18-aa71d8d87ce1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a36cedd4-3ffd-4b1f-8b18-aa71d8d87ce1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1693 - Information System Monitoring | System-Generated Alerts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1693\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a450eba6-2efc-4a00-846a-5804a93c6b77\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a450eba6-2efc-4a00-846a-5804a93c6b77\"},{\"properties\":{\"displayName\":\"Audit usage of custom RBAC rules\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit built-in roles such as 'Owner, Contributer, Reader' instead of custom RBAC roles, which are error prone. Using custom roles is treated as an exception and requires a rigorous review and threat modeling\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"General\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Authorization/roleDefinitions\"},{\"field\":\"Microsoft.Authorization/roleDefinitions/type\",\"equals\":\"CustomRole\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a451c1ef-c6ca-483d-87ed-f49761e3ffb5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a451c1ef-c6ca-483d-87ed-f49761e3ffb5\"},{\"properties\":{\"displayName\":\"Web Application should only be accessible over HTTPS\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use of HTTPS ensures server/service authentication and protects data in transit from network layer eavesdropping attacks.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"},{\"field\":\"Microsoft.Web/sites/httpsOnly\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a4af4a39-4135-47fb-b175-47fbdf85311d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a4af4a39-4135-47fb-b175-47fbdf85311d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1617 - Application Partitioning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1617\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a631d8f5-eb81-4f9d-9ee1-74431371e4a3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a631d8f5-eb81-4f9d-9ee1-74431371e4a3\"},{\"properties\":{\"displayName\":\"Auditing on SQL server should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Auditing on your SQL Server should be enabled to track database activities across all databases on the server and save them in an audit log.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"setting\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Desired Auditing setting\"},\"allowedValues\":[\"enabled\",\"disabled\"],\"defaultValue\":\"enabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/auditingSettings\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/auditingSettings.state\",\"equals\":\"[parameters('setting')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a6fb4358-5bf4-4ad7-ba82-2cd2f41ce5e9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a6fb4358-5bf4-4ad7-ba82-2cd2f41ce5e9\"},{\"properties\":{\"displayName\":\"The Log Analytics agent should be installed on virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Windows/Linux virtual machines if the Log Analytics agent is not installed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"in\":[\"MicrosoftMonitoringAgent\",\"OmsAgentForLinux\"]},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/settings.workspaceId\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a70ca396-0a34-413a-88e1-b956c1e683be\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a70ca396-0a34-413a-88e1-b956c1e683be\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1431 - Media Storage\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1431\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a7173c52-2b99-4696-a576-63dd5f970ef4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a7173c52-2b99-4696-a576-63dd5f970ef4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1644 - Cryptographic Key Establishment And Management | Availability\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1644\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a7211477-c970-446b-b4af-062f37461147\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a7211477-c970-446b-b4af-062f37461147\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1027 - Access Enforcement\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1027\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a76ca9b0-3f4a-4192-9a38-b25e4f8ae48c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a76ca9b0-3f4a-4192-9a38-b25e4f8ae48c\"},{\"properties\":{\"displayName\":\"Azure DDoS Protection Standard should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"DDoS protection standard should be enabled for all virtual networks with a subnet that is part of an application gateway with a public IP.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"microsoft.network/virtualNetworks\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"EnableDDoSProtection\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a7aca53f-2ed4-4466-a25e-0b45ade68efd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a7aca53f-2ed4-4466-a25e-0b45ade68efd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1570 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1570\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a7fcf38d-bb09-4600-be7d-825046eb162a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a7fcf38d-bb09-4600-be7d-825046eb162a\"},{\"properties\":{\"displayName\":\"Require encryption on Data Lake Store accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy ensures encryption is enabled on all Data Lake Store accounts\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Data Lake\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeStore/accounts\"},{\"field\":\"Microsoft.DataLakeStore/accounts/encryptionState\",\"equals\":\"Disabled\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a7ff3161-0087-490a-9ad9-ad6217f4f43a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a7ff3161-0087-490a-9ad9-ad6217f4f43a\"},{\"properties\":{\"displayName\":\"SQL Managed Instance should have the minimal TLS version of 1.2\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Setting minimal TLS version to 1.2 improves security by ensuring your SQL Managed Instance can only be accessed from clients using TLS 1.2. Using versions of TLS less than 1.2 is not reccomended since they have well documented security vunerabilities.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},{\"anyOf\":[{\"field\":\"Microsoft.Sql/managedInstances/minimalTlsVersion\",\"exists\":false},{\"field\":\"Microsoft.Sql/managedInstances/minimalTlsVersion\",\"notEquals\":\"1.2\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a8793640-60f7-487c-b5c3-1d37215905c4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a8793640-60f7-487c-b5c3-1d37215905c4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1295 - Information System Recovery And Reconstitution\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1295\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a895fbdb-204d-4302-9689-0a59dc42b3d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a895fbdb-204d-4302-9689-0a59dc42b3d9\"},{\"properties\":{\"displayName\":\"[Deprecated]: Monitor unencrypted SQL databases in Azure Security Center\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Unencrypted SQL databases will be monitored by Azure Security Center as recommendations. This policy is deprecated and replaced by the following policy: Transparent Data Encryption on SQL databases should be enabled'\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.SQL/servers/databases\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"encryption\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a8bef009-a5c9-4d0f-90d7-6018734e8a16\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a8bef009-a5c9-4d0f-90d7-6018734e8a16\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1283 - Telecommunications Services | Separation Of Primary / Alternate Providers\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1283\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a9172e76-7f56-46e9-93bf-75d69bdb5491\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a9172e76-7f56-46e9-93bf-75d69bdb5491\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1400 - Controlled Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1400\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a96d5098-a604-4cdf-90b1-ef6449a27424\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a96d5098-a604-4cdf-90b1-ef6449a27424\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1118 - Audit Review, Analysis, And Reporting | Correlate Audit Repositories\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1118\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a96f743d-a195-420d-983a-08aa06bc441e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a96f743d-a195-420d-983a-08aa06bc441e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1199 - Configuration Change Control | Cryptography Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1199\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a9a08d1c-09b1-48f1-90ea-029bbdf7111e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a9a08d1c-09b1-48f1-90ea-029bbdf7111e\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Detailed Tracking'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Detailed Tracking'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesDetailedTracking\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a9a33475-481d-4b81-9116-0bf02ffe67e8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a9a33475-481d-4b81-9116-0bf02ffe67e8\"},{\"properties\":{\"displayName\":\"Deploy network watcher when virtual networks are created\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a network watcher resource in regions with virtual networks. You need to ensure existence of a resource group named networkWatcherRG, which will be used to deploy network watcher instances.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks\"},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkWatchers\",\"resourceGroupName\":\"networkWatcherRG\",\"existenceCondition\":{\"field\":\"location\",\"equals\":\"[field('location')]\"},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2016-09-01\",\"type\":\"Microsoft.Network/networkWatchers\",\"name\":\"[concat('networkWatcher_', parameters('location'))]\",\"location\":\"[parameters('location')]\"}]},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a9b99dd8-06c5-4317-8629-9d86a3c6e7d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a9b99dd8-06c5-4317-8629-9d86a3c6e7d9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1511 - Personnel Screening\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1511\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a9eae324-d327-4539-9293-b48e122465f8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a9eae324-d327-4539-9293-b48e122465f8\"},{\"properties\":{\"displayName\":\"MFA should be enabled on accounts with owner permissions on your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Multi-Factor Authentication (MFA) should be enabled for all subscription accounts with owner permissions to prevent a breach of accounts or resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"EnableMFAForOwnerPermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aa633080-8b72-40c4-a2d7-d00c03e80bed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aa633080-8b72-40c4-a2d7-d00c03e80bed\"},{\"properties\":{\"displayName\":\"Ensure that Register with Azure Active Directory is enabled on WEB App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Managed service identity in App Service makes the app more secure by eliminating secrets from the app, such as credentials in the connection strings. When registering with Azure Active Directory in the app service, the app will connect to other Azure services securely without the need of username and passwords\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.managedServiceIdentityId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aa81768c-cb87-4ce2-bfaa-00baa10d760c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aa81768c-cb87-4ce2-bfaa-00baa10d760c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1539 - Security Categorization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1539\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aabb155f-e7a5-4896-a767-e918bfae2ee0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aabb155f-e7a5-4896-a767-e918bfae2ee0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1006 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1006\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aae8d54c-4bce-4c04-b3aa-5b65b67caac8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aae8d54c-4bce-4c04-b3aa-5b65b67caac8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1461 - Monitoring Physical Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1461\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aafef03e-fea8-470b-88fa-54bd1fcd7064\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aafef03e-fea8-470b-88fa-54bd1fcd7064\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1073 - Access Control For Mobile Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1073\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ab55cdb0-c7dd-4bd8-ae22-a7cea7594e9c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ab55cdb0-c7dd-4bd8-ae22-a7cea7594e9c\"},{\"properties\":{\"displayName\":\"Ensure that 'PHP version' is the latest, if used as a part of the Function app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for PHP software either due to security flaws or to include additional functionality. Using the latest PHP version for Function apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"PHPLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Latest PHP version\",\"description\":\"Latest supported PHP version for App Services\"},\"defaultValue\":\"7.3\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"PHP\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"[concat('PHP|', parameters('PHPLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"[parameters('PHPLatestVersion')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ab965db2-d2bf-4b64-8b39-c38ec8179461\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ab965db2-d2bf-4b64-8b39-c38ec8179461\"},{\"properties\":{\"displayName\":\"[Deprecated]: Automatic provisioning of security monitoring agent\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Installs security agent on VMs for advanced security alerts and preventions in Azure Security Center. Applies only for subscriptions that use Azure Security Center.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"AuditIfNotExists\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"securityAgent\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/abcc6037-1fc4-47f6-aac5-89706589be24\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"abcc6037-1fc4-47f6-aac5-89706589be24\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1323 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1323\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/abe8f70b-680f-470c-9b86-a7edfb664ecc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"abe8f70b-680f-470c-9b86-a7edfb664ecc\"},{\"properties\":{\"displayName\":\"Advanced data security should be enabled on your SQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit SQL servers without Advanced Data Security\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"Default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/securityAlertPolicies/state\",\"equals\":\"Enabled\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/abfb4388-5bf4-4ad7-ba82-2cd2f41ceae9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"abfb4388-5bf4-4ad7-ba82-2cd2f41ceae9\"},{\"properties\":{\"displayName\":\"Advanced data security should be enabled on SQL Managed Instance\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit each SQL Managed Instance without advanced data security.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/managedInstances/securityAlertPolicies\",\"name\":\"Default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/managedInstances/securityAlertPolicies/state\",\"equals\":\"Enabled\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/abfb7388-5bf4-4ad7-ba99-2cd2f41cebb9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"abfb7388-5bf4-4ad7-ba99-2cd2f41cebb9\"},{\"properties\":{\"displayName\":\"Enable Azure Security Center on your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Identifies existing subscriptions that are not monitored by Azure Security Center (ASC).\\nSubscriptions not monitored by ASC will be registered to the free pricing tier.\\nSubscriptions already monitored by ASC (free or standard), will be considered compliant.\\nTo register newly created subscriptions, open the compliance tab, select the relevant non-compliant assignment and create a remediation task.\\nRepeat this step when you have one or more new subscriptions you want to monitor with Security Center.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"VirtualMachines\",\"deploymentScope\":\"subscription\",\"existenceScope\":\"subscription\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\"],\"existenceCondition\":{\"anyof\":[{\"field\":\"microsoft.security/pricings/pricingTier\",\"equals\":\"standard\"},{\"field\":\"microsoft.security/pricings/pricingTier\",\"equals\":\"free\"}]},\"deployment\":{\"location\":\"westeurope\",\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Security/pricings\",\"apiVersion\":\"2018-06-01\",\"name\":\"VirtualMachines\",\"properties\":{\"pricingTier\":\"free\"}}],\"outputs\":{}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ac076320-ddcf-4066-b451-6154267e8ad2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ac076320-ddcf-4066-b451-6154267e8ad2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1056 - Session Termination | User-Initiated Logouts / Message Displays\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1056\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ac43352f-df83-4694-8738-cfce549fd08d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ac43352f-df83-4694-8738-cfce549fd08d\"},{\"properties\":{\"displayName\":\"[Preview]: Role-Based Access Control (RBAC) should be used on Kubernetes Services\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"To provide granular filtering on the actions that users can perform, use Role-Based Access Control (RBAC) to manage permissions in Kubernetes Service Clusters and configure relevant authorization policies.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Security Center\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"anyOf\":[{\"field\":\"Microsoft.ContainerService/managedClusters/enableRBAC\",\"exists\":\"false\"},{\"field\":\"Microsoft.ContainerService/managedClusters/enableRBAC\",\"equals\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ac4a19c2-fa67-49b4-8ae5-0b2e78c49457\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ac4a19c2-fa67-49b4-8ae5-0b2e78c49457\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation if 'environment' tag value in allowed values\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation if the 'environment' tag is set to one of the following values: production, dev, test, staging\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Tags\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"tags['environment']\",\"in\":[\"production\",\"dev\",\"test\",\"staging\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ac7e5fc0-c029-4b12-91d4-a8500ce697f9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ac7e5fc0-c029-4b12-91d4-a8500ce697f9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1569 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1569\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ad2f8e61-a564-4dfd-8eaa-816f5be8cb34\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ad2f8e61-a564-4dfd-8eaa-816f5be8cb34\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1454 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1454\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ad58985d-ab32-4f99-8bd3-b7e134c90229\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ad58985d-ab32-4f99-8bd3-b7e134c90229\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1025 - Account Management | Account Monitoring / Atypical Usage\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1025\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/adfe020d-0a97-45f4-a39c-696ef99f3a95\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"adfe020d-0a97-45f4-a39c-696ef99f3a95\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1272 - Alternate Processing Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1272\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ae46cf7a-e3fd-427b-9b91-44bc78e2d9d8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ae46cf7a-e3fd-427b-9b91-44bc78e2d9d8\"},{\"properties\":{\"displayName\":\"SQL Server should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any SQL Server not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/virtualNetworkRules/virtualNetworkSubnetId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ae5d2f14-d830-42b6-9899-df6cfe9c71a3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ae5d2f14-d830-42b6-9899-df6cfe9c71a3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1598 - Developer Configuration Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1598\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ae7e1f5e-2d63-4b38-91ef-bce14151cce3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ae7e1f5e-2d63-4b38-91ef-bce14151cce3\"},{\"properties\":{\"displayName\":\"[Deprecated]: Email notifications to admins and subscription owners should be enabled in SQL Managed Instance advanced data security settings\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit that 'email notification to admins and subscription owners' is enabled in SQL Managed Instance advanced threat protection settings. This setting ensures that any detections of anomalous activities on SQL Managed Instance are reported as soon as possible to the admins.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/managedInstances/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/managedInstances/securityAlertPolicies/emailAccountAdmins\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aeb23562-188d-47cb-80b8-551f16ef9fff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aeb23562-188d-47cb-80b8-551f16ef9fff\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1413 - Nonlocal Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1413\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aeedddb6-6bc0-42d5-809b-80048033419d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aeedddb6-6bc0-42d5-809b-80048033419d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1710 - Security Function Verification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1710\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/af2a93c8-e6dd-4c94-acdd-4a2eedfc478e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"af2a93c8-e6dd-4c94-acdd-4a2eedfc478e\"},{\"properties\":{\"displayName\":\"Monitor missing Endpoint Protection in Azure Security Center\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Servers without an installed Endpoint Protection agent will be monitored by Azure Security Center as recommendations\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"endpointProtection\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/af6cd1bd-1635-48cb-bde7-5b15693900b9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"af6cd1bd-1635-48cb-bde7-5b15693900b9\"},{\"properties\":{\"displayName\":\"[Deprecated]: Monitor unaudited SQL servers in Azure Security Center\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"SQL servers which don't have SQL auditing turned on will be monitored by Azure Security Center as recommendations. This policy is deprecated and replaced by the following policy: 'Auditing should be enabled on advanced data security settings on SQL Server'\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.SQL/servers\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"auditing\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/af8051bf-258b-44e2-a2bf-165330459f9d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"af8051bf-258b-44e2-a2bf-165330459f9d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1645 - Cryptographic Key Establishment And Management | Symmetric Keys\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1645\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/afbd0baf-ff1a-4447-a86f-088a97347c0c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"afbd0baf-ff1a-4447-a86f-088a97347c0c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1725 - Error Handling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1725\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/afc234b5-456b-4aa5-b3e2-ce89108124cc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"afc234b5-456b-4aa5-b3e2-ce89108124cc\"},{\"properties\":{\"displayName\":\"Activity log should be retained for at least one year\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits the activity log if the retention is not set for 365 days or forever (retention days set to 0).\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/logProfiles\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/logProfiles/retentionPolicy.enabled\",\"equals\":\"true\"},{\"field\":\"Microsoft.Insights/logProfiles/retentionPolicy.days\",\"equals\":\"365\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/logProfiles/retentionPolicy.enabled\",\"equals\":\"false\"},{\"field\":\"Microsoft.Insights/logProfiles/retentionPolicy.days\",\"equals\":\"0\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b02aacc0-b073-424e-8298-42b22829ee0a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b02aacc0-b073-424e-8298-42b22829ee0a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1429 - Media Marking\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1429\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b07c9b24-729e-4e85-95fc-f224d2d08a80\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b07c9b24-729e-4e85-95fc-f224d2d08a80\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1711 - Security Function Verification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1711\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b083a535-a66a-41ec-ba7f-f9498bf67cde\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b083a535-a66a-41ec-ba7f-f9498bf67cde\"},{\"properties\":{\"displayName\":\"Management ports of virtual machines should be protected with just-in-time network access control\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Possible network Just In Time (JIT) access will be monitored by Azure Security Center as recommendations\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"jitNetworkAccess\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b0f33259-77d7-4c9e-aac6-3aabcfae693c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b0f33259-77d7-4c9e-aac6-3aabcfae693c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1571 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1571\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b11c985b-f2cd-4bd7-85f4-b52426edf905\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b11c985b-f2cd-4bd7-85f4-b52426edf905\"},{\"properties\":{\"displayName\":\"Show audit results from Linux VMs that do not have the passwd file permissions set to 0644\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Linux virtual machines that do not have the passwd file permissions set to 0644. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordPolicy_msid121\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b18175dd-c599-4c64-83ba-bb018a06d35b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b18175dd-c599-4c64-83ba-bb018a06d35b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1537 - Risk Assessment Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1537\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b19454ca-0d70-42c0-acf5-ea1c1e5726d1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b19454ca-0d70-42c0-acf5-ea1c1e5726d1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1091 - Security Awareness Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1091\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b23bd715-5d1c-4e5c-9759-9cbdf79ded9d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b23bd715-5d1c-4e5c-9759-9cbdf79ded9d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1078 - Use Of External Information Systems | Limits On Authorized Use\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1078\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b25faf85-8a16-4f28-8e15-d05c0072d64d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b25faf85-8a16-4f28-8e15-d05c0072d64d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1009 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1009\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b26f8610-e615-47c2-abd6-c00b2b0b503a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b26f8610-e615-47c2-abd6-c00b2b0b503a\"},{\"properties\":{\"displayName\":\"All authorization rules except RootManageSharedAccessKey should be removed from Event Hub namespace\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Event Hub clients should not use a namespace level access policy that provides access to all queues and topics in a namespace. To align with the least privilege security model, you should create access policies at the entity level for queues and topics to provide access to only the specific entity\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Event Hub\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.EventHub/namespaces/authorizationRules\"},{\"field\":\"name\",\"notEquals\":\"RootManageSharedAccessKey\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b278e460-7cfc-4451-8294-cccc40a940d7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b278e460-7cfc-4451-8294-cccc40a940d7\"},{\"properties\":{\"displayName\":\"Inherit a tag from the subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Adds or replaces the specified tag and value from the containing subscription when any resource is created or updated. Existing resources can be remediated by triggering a remediation task.\",\"metadata\":{\"category\":\"Tags\",\"version\":\"1.0.0\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"notEquals\":\"[subscription().tags[parameters('tagName')]]\"},{\"value\":\"[subscription().tags[parameters('tagName')]]\",\"notEquals\":\"\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"addOrReplace\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[subscription().tags[parameters('tagName')]]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b27a0cbd-a167-4dfa-ae64-4337be671140\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b27a0cbd-a167-4dfa-ae64-4337be671140\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1234 - Software Usage Restrictions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1234\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b293f881-361c-47ed-b997-bc4e2296bc0b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b293f881-361c-47ed-b997-bc4e2296bc0b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1107 - Content Of Audit Records\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1107\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b29ed931-8e21-4779-8458-27916122a904\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b29ed931-8e21-4779-8458-27916122a904\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows web servers that are not using secure communication protocols\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows web servers that are not using secure communication protocols (TLS 1.1 or TLS 1.2). It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"MinimumTLSVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Minimum TLS version\",\"description\":\"The minimum TLS protocol version that should be enabled. Windows web servers with lower TLS versions will be marked as non-compliant.\"},\"allowedValues\":[\"1.1\",\"1.2\"],\"defaultValue\":\"1.1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AuditSecureProtocol\",\"existenceCondition\":{\"anyOf\":[{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[SecureWebServer]s1;MinimumTLSVersion', '=', parameters('MinimumTLSVersion')))]\"},{\"allOf\":[{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"\"},{\"value\":\"[parameters('MinimumTLSVersion')]\",\"equals\":\"1.1\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AuditSecureProtocol\"},\"MinimumTLSVersion\":{\"value\":\"[parameters('MinimumTLSVersion')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"MinimumTLSVersion\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[SecureWebServer]s1;MinimumTLSVersion\",\"value\":\"[parameters('MinimumTLSVersion')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[SecureWebServer]s1;MinimumTLSVersion\",\"value\":\"[parameters('MinimumTLSVersion')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b2fc8f91-866d-4434-9089-5ebfe38d6fd8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b2fc8f91-866d-4434-9089-5ebfe38d6fd8\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Logon-Logoff'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Logon-Logoff'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesLogonLogoff\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b3802d79-dd88-4bce-b81d-780218e48280\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b3802d79-dd88-4bce-b81d-780218e48280\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1041 - Least Privilege | Privilege Levels For Code Execution\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1041\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b3d8d15b-627a-4219-8c96-4d16f788888b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b3d8d15b-627a-4219-8c96-4d16f788888b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1380 - Incident Response Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1380\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b4319b7e-ea8d-42ff-8a67-ccd462972827\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b4319b7e-ea8d-42ff-8a67-ccd462972827\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Search services should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Search\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Search/searchServices\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b4330a05-a843-4bc8-bf9a-cacce50c67f4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b4330a05-a843-4bc8-bf9a-cacce50c67f4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1172 - Internal System Connections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1172\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b43e946e-a4c8-4b92-8201-4a39331db43c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b43e946e-a4c8-4b92-8201-4a39331db43c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1672 - Flaw Remediation | Central Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1672\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b45fe972-904e-45a4-ac20-673ba027a301\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b45fe972-904e-45a4-ac20-673ba027a301\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1131 - Protection Of Audit Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1131\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b472a17e-c2bc-493f-b50b-42d55a346962\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b472a17e-c2bc-493f-b50b-42d55a346962\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Sockets state for an API App\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"The Web Sockets protocol is vulnerable to different types of security threats. Use of Web Sockets within an API app must be carefully reviewed.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"DisableWebSockets\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b48334a4-911b-4084-b1ab-3e6a4e50b951\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b48334a4-911b-4084-b1ab-3e6a4e50b951\"},{\"properties\":{\"displayName\":\"A security contact phone number should be provided for your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enter a phone number to receive notifications when Azure Security Center detects compromised resources\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/securityContacts\",\"existenceCondition\":{\"field\":\"Microsoft.Security/securityContacts/phone\",\"notEquals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b4d66858-c922-44e3-9566-5cdb7a7be744\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b4d66858-c922-44e3-9566-5cdb7a7be744\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1286 - Telecommunications Services | Provider Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1286\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b4f9b47a-2116-4e6f-88db-4edbf22753f1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b4f9b47a-2116-4e6f-88db-4edbf22753f1\"},{\"properties\":{\"displayName\":\"Public network access should be disabled for PostgreSQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits PostgreSQL servers in your environment with public network access enabled. For more details, visit https://go.microsoft.com/fwlink/?linkid=2120015.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},{\"field\":\"Microsoft.DBforPostgreSQL/servers/publicNetworkAccess\",\"notEquals\":\"Disabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b52376f7-9612-48a1-81cd-1ffe4b61032c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b52376f7-9612-48a1-81cd-1ffe4b61032c\"},{\"properties\":{\"displayName\":\"Service Fabric clusters should only use Azure Active Directory for client authentication\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit usage of client authentication only via Azure Active Directory in Service Fabric\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Service Fabric\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ServiceFabric/clusters\"},{\"anyOf\":[{\"field\":\"Microsoft.ServiceFabric/clusters/azureActiveDirectory.tenantId\",\"exists\":\"false\"},{\"field\":\"Microsoft.ServiceFabric/clusters/azureActiveDirectory.tenantId\",\"equals\":\"\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b54ed75b-3e1a-44ac-a333-05ba39b99ff0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b54ed75b-3e1a-44ac-a333-05ba39b99ff0\"},{\"properties\":{\"displayName\":\"Deploy Advanced Threat Protection for Cosmos DB Accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables Advanced Threat Protection across Cosmos DB accounts.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cosmos DB\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DocumentDB/databaseAccounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/advancedThreatProtectionSettings\",\"name\":\"current\",\"existenceCondition\":{\"field\":\"Microsoft.Security/advancedThreatProtectionSettings/isEnabled\",\"equals\":\"true\"},\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"cosmosDbAccountName\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2019-01-01\",\"type\":\"Microsoft.DocumentDB/databaseAccounts/providers/advancedThreatProtectionSettings\",\"name\":\"[concat(parameters('cosmosDbAccountName'), '/Microsoft.Security/current')]\",\"properties\":{\"isEnabled\":true}}]},\"parameters\":{\"cosmosDbAccountName\":{\"value\":\"[field('name')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b5f04e03-92a3-4b09-9410-2cc5e5047656\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b5f04e03-92a3-4b09-9410-2cc5e5047656\"},{\"properties\":{\"displayName\":\"Diagnostic logs in App Services should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit enabling of diagnostic logs on the app. This enables you to recreate activity trails for investigation purposes if a security incident occurs or your network is compromised\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"notContains\":\"functionapp\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/detailedErrorLoggingEnabled\",\"equals\":\"true\"},{\"field\":\"Microsoft.Web/sites/config/httpLoggingEnabled\",\"equals\":\"true\"},{\"field\":\"Microsoft.Web/sites/config/requestTracingEnabled\",\"equals\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b607c5de-e7d9-4eee-9e5c-83f1bcee4fa0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b607c5de-e7d9-4eee-9e5c-83f1bcee4fa0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1419 - Nonlocal Maintenance | Cryptographic Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1419\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b6747bf9-2b97-45b8-b162-3c8becb9937d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b6747bf9-2b97-45b8-b162-3c8becb9937d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1301 - Identification And Authentication (Org. Users) | Network Access To Privileged Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1301\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b6a8e0cc-ac23-468b-abe4-a8a1cc6d7a08\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b6a8e0cc-ac23-468b-abe4-a8a1cc6d7a08\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1568 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1568\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b6a8eae8-9854-495a-ac82-d2cd3eac02a6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b6a8eae8-9854-495a-ac82-d2cd3eac02a6\"},{\"properties\":{\"displayName\":\"Network Watcher should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Network Watcher is a regional service that enables you to monitor and diagnose conditions at a network scenario level in, to, and from Azure. Scenario level monitoring enables you to diagnose problems at an end to end network level view. Network diagnostic and visualization tools available with Network Watcher help you understand, diagnose, and gain insights to your network in Azure.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"listOfLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Locations\",\"description\":\"Audit if Network Watcher is not enabled for region(s).\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkWatchers\",\"resourceGroupName\":\"NetworkWatcherRG\",\"existenceCondition\":{\"field\":\"location\",\"in\":\"[parameters('listOfLocations')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b6e2945c-0b7b-40f5-9233-7a5323b5cdc6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b6e2945c-0b7b-40f5-9233-7a5323b5cdc6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1608 - Supply Chain Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1608\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b73b7b3b-677c-4a2a-b949-ad4dc4acd89f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b73b7b3b-677c-4a2a-b949-ad4dc4acd89f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1401 - Controlled Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1401\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b78ee928-e3c1-4569-ad97-9f8c4b629847\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b78ee928-e3c1-4569-ad97-9f8c4b629847\"},{\"properties\":{\"displayName\":\"API App should only be accessible over HTTPS\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use of HTTPS ensures server/service authentication and protects data in transit from network layer eavesdropping attacks.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"},{\"field\":\"Microsoft.Web/sites/httpsOnly\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b7ddfbdc-1260-477d-91fd-98bd9be789a6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b7ddfbdc-1260-477d-91fd-98bd9be789a6\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs in which the Administrators group does not contain only the specified members\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines in which the Administrators group does not contain only the specified members. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"Members\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Members\",\"description\":\"A semicolon-separated list of all the expected members of the Administrators local group. Ex: Administrator; myUser1; myUser2\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AdministratorsGroupMembers\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[LocalGroup]AdministratorsGroup;Members', '=', parameters('Members')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AdministratorsGroupMembers\"},\"Members\":{\"value\":\"[parameters('Members')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"Members\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LocalGroup]AdministratorsGroup;Members\",\"value\":\"[parameters('Members')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LocalGroup]AdministratorsGroup;Members\",\"value\":\"[parameters('Members')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b821191b-3a12-44bc-9c38-212138a29ff3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b821191b-3a12-44bc-9c38-212138a29ff3\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Accounts'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Accounts'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsAccounts\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b872a447-cc6f-43b9-bccf-45703cd81607\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b872a447-cc6f-43b9-bccf-45703cd81607\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Logic Apps to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Logic Apps to stream to a regional Log Analytics workspace when any Logic Apps which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Logic/workflows\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Logic/workflows/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"WorkflowRuntime\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b889a06c-ec72-4b03-910a-cb169ee18721\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b889a06c-ec72-4b03-910a-cb169ee18721\"},{\"properties\":{\"displayName\":\"An activity log alert should exist for specific Administrative operations\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits specific Administrative operations with no activity log alerts configured.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"operationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Operation Name\",\"description\":\"Administrative Operation name for which activity log alert should be configured\"},\"allowedValues\":[\"Microsoft.Sql/servers/firewallRules/write\",\"Microsoft.Sql/servers/firewallRules/delete\",\"Microsoft.Network/networkSecurityGroups/write\",\"Microsoft.Network/networkSecurityGroups/delete\",\"Microsoft.ClassicNetwork/networkSecurityGroups/write\",\"Microsoft.ClassicNetwork/networkSecurityGroups/delete\",\"Microsoft.Network/networkSecurityGroups/securityRules/write\",\"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\"Microsoft.ClassicNetwork/networkSecurityGroups/securityRules/write\",\"Microsoft.ClassicNetwork/networkSecurityGroups/securityRules/delete\"]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/ActivityLogAlerts\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/enabled\",\"equals\":\"true\"},{\"count\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"category\"},{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].equals\",\"equals\":\"Administrative\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"operationName\"},{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].equals\",\"equals\":\"[parameters('operationName')]\"}]}]}},\"equals\":2},{\"not\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"category\"}},{\"not\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"operationName\"}}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b954148f-4c11-4c38-8221-be76711e194a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b954148f-4c11-4c38-8221-be76711e194a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1257 - Contingency Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1257\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b958b241-4245-4bd6-bd2d-b8f0779fb543\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b958b241-4245-4bd6-bd2d-b8f0779fb543\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1186 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1186\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b95ba3bd-4ded-49ea-9d10-c6f4b680813d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b95ba3bd-4ded-49ea-9d10-c6f4b680813d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1447 - Physical Access Authorizations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1447\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b9783a99-98fe-4a95-873f-29613309fe9a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b9783a99-98fe-4a95-873f-29613309fe9a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1625 - Boundary Protection | Access Points\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1625\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b9b66a4d-70a1-4b47-8fa1-289cec68c605\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b9b66a4d-70a1-4b47-8fa1-289cec68c605\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1610 - Development Process, Standards, And Tools\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1610\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b9f3fb54-4222-46a1-a308-4874061f8491\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b9f3fb54-4222-46a1-a308-4874061f8491\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Recovery console'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Recovery console'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsRecoveryconsole\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ba12366f-f9a6-42b8-9d98-157d0b1a837b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ba12366f-f9a6-42b8-9d98-157d0b1a837b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1606 - Developer Security Testing And Evaluation | Threat And Vulnerability Analyses\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1606\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/baa8a9a4-5bbe-4c72-98f6-a3a47ae2b1ca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"baa8a9a4-5bbe-4c72-98f6-a3a47ae2b1ca\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1726 - Information Handling And Retention\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1726\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/baff1279-05e0-4463-9a70-8ba5de4c7aa4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"baff1279-05e0-4463-9a70-8ba5de4c7aa4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1166 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1166\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bb02733d-3cc5-4bb0-a6cd-695ba2c2272e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bb02733d-3cc5-4bb0-a6cd-695ba2c2272e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1188 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1188\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bb20548a-c926-4e4d-855c-bcddc6faf95e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bb20548a-c926-4e4d-855c-bcddc6faf95e\"},{\"properties\":{\"displayName\":\"Non-internet-facing virtual machines should be protected with network security groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Protect your non-internet-facing virtual machines from potential threats by restricting access with network security groups (NSG). Learn more about controlling traffic with NSGs at https://aka.ms/nsg-doc\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"networkSecurityGroupsOnInternalVirtualMachines\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bb91dfba-c30d-4263-9add-9c2384e659a6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bb91dfba-c30d-4263-9add-9c2384e659a6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1533 - Third-Party Personnel Security\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1533\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bba2a036-fb3b-4261-b1be-a13dfb5fbcaa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bba2a036-fb3b-4261-b1be-a13dfb5fbcaa\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Microsoft Network Client'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Microsoft Network Client'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"MicrosoftNetworkClientDigitallySignCommunicationsAlways\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Microsoft network client: Digitally sign communications (always)\",\"description\":\"Specifies whether packet signing is required by the SMB client component.\"},\"defaultValue\":\"1\"},\"MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Microsoft network client: Send unencrypted password to third-party SMB servers\",\"description\":\"Specifies whether the SMB redirector will send plaintext passwords during authentication to third-party SMB servers that do not support password encryption. It is recommended that you disable this policy setting unless there is a strong business case to enable it.\"},\"defaultValue\":\"0\"},\"MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Microsoft network server: Amount of idle time required before suspending session\",\"description\":\"Specifies the amount of continuous idle time that must pass in an SMB session before the session is suspended because of inactivity. The format of the value is two integers separated by a comma, denoting an inclusive range.\"},\"defaultValue\":\"1,15\"},\"MicrosoftNetworkServerDigitallySignCommunicationsAlways\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Microsoft network server: Digitally sign communications (always)\",\"description\":\"Specifies whether packet signing is required by the SMB server component.\"},\"defaultValue\":\"1\"},\"MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Microsoft network server: Disconnect clients when logon hours expire\",\"description\":\"Specifies whether to disconnect users who are connected to the local computer outside their user account's valid logon hours. This setting affects the Server Message Block (SMB) component. If you enable this policy setting you should also enable 'Network security: Force logoff when logon hours expire'\"},\"defaultValue\":\"1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsMicrosoftNetworkClient\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Microsoft network client: Digitally sign communications (always);ExpectedValue', '=', parameters('MicrosoftNetworkClientDigitallySignCommunicationsAlways'), ',', 'Microsoft network client: Send unencrypted password to third-party SMB servers;ExpectedValue', '=', parameters('MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers'), ',', 'Microsoft network server: Amount of idle time required before suspending session;ExpectedValue', '=', parameters('MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession'), ',', 'Microsoft network server: Digitally sign communications (always);ExpectedValue', '=', parameters('MicrosoftNetworkServerDigitallySignCommunicationsAlways'), ',', 'Microsoft network server: Disconnect clients when logon hours expire;ExpectedValue', '=', parameters('MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsMicrosoftNetworkClient\"},\"MicrosoftNetworkClientDigitallySignCommunicationsAlways\":{\"value\":\"[parameters('MicrosoftNetworkClientDigitallySignCommunicationsAlways')]\"},\"MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers\":{\"value\":\"[parameters('MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers')]\"},\"MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession\":{\"value\":\"[parameters('MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession')]\"},\"MicrosoftNetworkServerDigitallySignCommunicationsAlways\":{\"value\":\"[parameters('MicrosoftNetworkServerDigitallySignCommunicationsAlways')]\"},\"MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire\":{\"value\":\"[parameters('MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"MicrosoftNetworkClientDigitallySignCommunicationsAlways\":{\"type\":\"string\"},\"MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers\":{\"type\":\"string\"},\"MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession\":{\"type\":\"string\"},\"MicrosoftNetworkServerDigitallySignCommunicationsAlways\":{\"type\":\"string\"},\"MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Microsoft network client: Digitally sign communications (always);ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkClientDigitallySignCommunicationsAlways')]\"},{\"name\":\"Microsoft network client: Send unencrypted password to third-party SMB servers;ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers')]\"},{\"name\":\"Microsoft network server: Amount of idle time required before suspending session;ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession')]\"},{\"name\":\"Microsoft network server: Digitally sign communications (always);ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkServerDigitallySignCommunicationsAlways')]\"},{\"name\":\"Microsoft network server: Disconnect clients when logon hours expire;ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Microsoft network client: Digitally sign communications (always);ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkClientDigitallySignCommunicationsAlways')]\"},{\"name\":\"Microsoft network client: Send unencrypted password to third-party SMB servers;ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers')]\"},{\"name\":\"Microsoft network server: Amount of idle time required before suspending session;ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession')]\"},{\"name\":\"Microsoft network server: Digitally sign communications (always);ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkServerDigitallySignCommunicationsAlways')]\"},{\"name\":\"Microsoft network server: Disconnect clients when logon hours expire;ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bbcdd8fa-b600-4ee3-85b8-d184e3339652\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bbcdd8fa-b600-4ee3-85b8-d184e3339652\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit API Applications that are not using latest supported Python Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported Python version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestPython\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bc0378bb-d7ab-4614-a0f6-5a6e3f02d644\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bc0378bb-d7ab-4614-a0f6-5a6e3f02d644\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1194 - Configuration Change Control | Automated Document / Notification / Prohibition Of Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1194\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bc34667f-397e-4a65-9b72-d0358f0b6b09\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bc34667f-397e-4a65-9b72-d0358f0b6b09\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1095 - Role-Based Security Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1095\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bc3f6f7a-057b-433e-9834-e8c97b0194f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bc3f6f7a-057b-433e-9834-e8c97b0194f6\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Account Logon'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Account Logon'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesAccountLogon\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bc87d811-4a9b-47cc-ae54-0a41abda7768\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bc87d811-4a9b-47cc-ae54-0a41abda7768\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1427 - Media Protection Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1427\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bc90e44f-d83f-4bdf-900f-3d5eb4111b31\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bc90e44f-d83f-4bdf-900f-3d5eb4111b31\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1351 - Incident Response Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1351\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bcfb6683-05e5-4ce6-9723-c3fbe9896bdd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bcfb6683-05e5-4ce6-9723-c3fbe9896bdd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1050 - Concurrent Session Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1050\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bd20184c-b4ec-4ce5-8db6-6e86352d183f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bd20184c-b4ec-4ce5-8db6-6e86352d183f\"},{\"properties\":{\"displayName\":\"IP Forwarding on your virtual machine should be disabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enabling IP forwarding on a virtual machine's NIC allows the machine to receive traffic addressed to other destinations. IP forwarding is rarely required (e.g., when using the VM as a network virtual appliance), and therefore, this should be reviewed by the network security team.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"disableIPForwarding\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"Monitored\",\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bd352bd5-2853-4985-bf0d-73806b4a5744\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bd352bd5-2853-4985-bf0d-73806b4a5744\"},{\"properties\":{\"displayName\":\"[Deprecated]: Advanced Threat Protection types should be set to 'All' in SQL Managed Instance advanced data security settings\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"It's recommended to enable all Advanced Threat Protection types on your SQL Managed Instance. Enabling all types protects against SQL injection, database vulnerabilities, and any other anomalous activities.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/managedInstances/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/managedInstances/securityAlertPolicies/disabledAlerts[*]\",\"equals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bda18df3-5e41-4709-add9-2554ce68c966\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bda18df3-5e41-4709-add9-2554ce68c966\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs in which the Administrators group contains any of the specified members\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines in which the Administrators group contains any of the specified members. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AdministratorsGroupMembersToExclude\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bde62c94-ccca-4821-a815-92c1d31a76de\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bde62c94-ccca-4821-a815-92c1d31a76de\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Applications that are not using latest supported Java Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported Java version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestJava\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/be0a7681-bed4-48dc-9ff3-f0171ee170b6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"be0a7681-bed4-48dc-9ff3-f0171ee170b6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1360 - Incident Handling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1360\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/be5b05e7-0b82-4ebc-9eda-25e447b1a41e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"be5b05e7-0b82-4ebc-9eda-25e447b1a41e\"},{\"properties\":{\"displayName\":\"[Deprecated]: Web Application Firewall should be enabled for Azure Front Door Service or Application Gateway\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Requires Web Application Firewall on any Azure Front Door Service or Application Gateway. A Web Application Firewall provides greater security for your other Azure resources.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Network\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Deny\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/frontdoors\"},{\"field\":\"Microsoft.Network/frontdoors/frontendEndpoints[*].webApplicationFirewallPolicyLink.id\",\"exists\":\"false\"}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/applicationGateways\"},{\"field\":\"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/be7ed5c8-2660-4136-8216-e6f3412ba909\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"be7ed5c8-2660-4136-8216-e6f3412ba909\"},{\"properties\":{\"displayName\":\"[Preview]: Audit Windows VMs on which Windows Defender Exploit Guard is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Windows Defender Exploit Guard helps protect against malware that uses exploits to infect devices and spread. Exploit Guard protection consists of a number of mitigations that can be applied to either the operating system or individual apps. This policy requires the Azure Policy for Windows extension. For details, visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.1.0-preview\",\"preview\":true,\"requiredProviders\":[\"Microsoft.GuestConfiguration\"],\"guestConfiguration\":{\"name\":\"WindowsDefenderExploitGuard\",\"version\":\"1.*\",\"configurationParameter\":{\"NotAvailableMachineState\":\"[WindowsDefenderExploitGuard]WindowsDefenderExploitGuard1;NotAvailableMachineState\"}}},\"parameters\":{\"NotAvailableMachineState\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Status if Windows Defender is not available on machine\",\"description\":\"Windows Defender Exploit Guard is only available starting with Windows 10/Windows Server with update 1709. Setting this value to 'Non-Compliant' shows machines with older versions on which Windows Defender Exploit Guard is not available (such as Windows Server 2012 R2) as non-compliant. Setting this value to 'Compliant' shows these machines as compliant.\"},\"allowedValues\":[\"Compliant\",\"Non-Compliant\"],\"defaultValue\":\"Non-Compliant\"},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of this policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDefenderExploitGuard\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"},{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsDefenderExploitGuard]WindowsDefenderExploitGuard1;NotAvailableMachineState', '=', parameters('NotAvailableMachineState')))]\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bed48b13-6647-468e-aa2f-1af1d3f4dd40\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bed48b13-6647-468e-aa2f-1af1d3f4dd40\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Key Vault to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Key Vault to stream to a regional Log Analytics workspace when any Key Vault which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.KeyVault/vaults\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.KeyVault/vaults/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"AuditEvent\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bef3f64c-5290-43b7-85b0-9b254eef4c47\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bef3f64c-5290-43b7-85b0-9b254eef4c47\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1152 - System Interconnections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1152\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/beff0acf-7e67-40b2-b1ca-1a0e8205cf1b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"beff0acf-7e67-40b2-b1ca-1a0e8205cf1b\"},{\"properties\":{\"displayName\":\"Geo-redundant storage should be enabled for Storage Accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Storage Account with geo-redundant storage not enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Storage\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"not\":{\"field\":\"Microsoft.Storage/storageAccounts/sku.name\",\"in\":[\"Standard_GRS\",\"Standard_RAGRS\",\"Standard_GZRS\",\"Standard_RAGZRS\"]}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bf045164-79ba-4215-8f95-f8048dc1780b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bf045164-79ba-4215-8f95-f8048dc1780b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1590 - External Information System Services | Risk Assessments / Organizational Approvals\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1590\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bf296b8c-f391-4ea4-9198-be3c9d39dd1f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bf296b8c-f391-4ea4-9198-be3c9d39dd1f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1446 - Physical And Environmental Protection Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1446\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bf6850fe-abba-468e-9ef4-d09ec7d983cd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bf6850fe-abba-468e-9ef4-d09ec7d983cd\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Logon-Logoff'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Logon-Logoff'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditGroupMembership\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Group Membership\",\"description\":\"Specifies whether audit events are generated when group memberships are enumerated on the client computer.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"Success\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesLogonLogoff\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit Group Membership;ExpectedValue', '=', parameters('AuditGroupMembership')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesLogonLogoff\"},\"AuditGroupMembership\":{\"value\":\"[parameters('AuditGroupMembership')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditGroupMembership\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Group Membership;ExpectedValue\",\"value\":\"[parameters('AuditGroupMembership')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Group Membership;ExpectedValue\",\"value\":\"[parameters('AuditGroupMembership')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c04255ee-1b9f-42c1-abaa-bf1553f79930\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c04255ee-1b9f-42c1-abaa-bf1553f79930\"},{\"properties\":{\"displayName\":\"Only approved VM extensions should be installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy governs the virtual machine extensions that are not approved.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"approvedExtensions\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of approved extension types that can be installed. Example: AzureDiskEncryption\",\"displayName\":\"Approved extensions\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines/extensions\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"notIn\":\"[parameters('approvedExtensions')]\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c0e996f8-39cf-4af9-9f45-83fbde810432\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c0e996f8-39cf-4af9-9f45-83fbde810432\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1124 - Audit Reduction And Report Generation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1124\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c10152dd-78f8-4335-ae2d-ad92cc028da4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c10152dd-78f8-4335-ae2d-ad92cc028da4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1676 - Malicious Code Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1676\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c10fb58b-56a8-489e-9ce3-7ffe24e78e4b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c10fb58b-56a8-489e-9ce3-7ffe24e78e4b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1719 - Spam Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1719\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c13da9b4-fe14-4fe2-853a-5997c9d4215a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c13da9b4-fe14-4fe2-853a-5997c9d4215a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1226 - Information System Component Inventory | Automated Unauthorized Component Detection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1226\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c158eb1c-ae7e-4081-8057-d527140c4e0c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c158eb1c-ae7e-4081-8057-d527140c4e0c\"},{\"properties\":{\"displayName\":\"Deploy associations for a custom provider\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys an association resource that associates selected resource types to the specified custom provider. This policy deployment does not support nested resource types.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Custom Provider\"},\"parameters\":{\"targetCustomProviderId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Custom provider ID\",\"description\":\"Resource ID of the Custom provider to which resources need to be associated.\"}},\"resourceTypesToAssociate\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Resource types to associate\",\"description\":\"The list of resource types to be associated to the custom provider.\",\"strongType\":\"resourceTypes\"}},\"associationNamePrefix\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Association name prefix\",\"description\":\"Prefix to be added to the name of the association resource being created.\"},\"defaultValue\":\"DeployedByPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":\"[parameters('resourceTypesToAssociate')]\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.CustomProviders/Associations\",\"name\":\"[concat(parameters('associationNamePrefix'), '-', uniqueString(parameters('targetCustomProviderId')))]\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"associatedResourceName\":{\"type\":\"string\"},\"resourceTypesToAssociate\":{\"type\":\"string\"},\"targetCustomProviderId\":{\"type\":\"string\"},\"associationNamePrefix\":{\"type\":\"string\"}},\"variables\":{\"resourceType\":\"[concat(parameters('resourceTypesToAssociate'), '/providers/associations')]\",\"resourceName\":\"[concat(parameters('associatedResourceName'), '/microsoft.customproviders/', parameters('associationNamePrefix'), '-', uniqueString(parameters('targetCustomProviderId')))]\"},\"resources\":[{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2017-05-10\",\"name\":\"[concat(deployment().Name, '-2')]\",\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"resources\":[{\"type\":\"[variables('resourceType')]\",\"name\":\"[variables('resourceName')]\",\"apiVersion\":\"2018-09-01-preview\",\"properties\":{\"targetResourceId\":\"[parameters('targetCustomProviderId')]\"}}]}}}]},\"parameters\":{\"resourceTypesToAssociate\":{\"value\":\"[field('type')]\"},\"associatedResourceName\":{\"value\":\"[field('name')]\"},\"targetCustomProviderId\":{\"value\":\"[parameters('targetCustomProviderId')]\"},\"associationNamePrefix\":{\"value\":\"[parameters('associationNamePrefix')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c15c281f-ea5c-44cd-90b8-fc3c14d13f0c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c15c281f-ea5c-44cd-90b8-fc3c14d13f0c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1629 - Boundary Protection | External Telecommunications Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1629\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c171b095-7756-41de-8644-a062a96043f2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c171b095-7756-41de-8644-a062a96043f2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1004 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1004\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c17822dc-736f-4eb4-a97d-e6be662ff835\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c17822dc-736f-4eb4-a97d-e6be662ff835\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation only in Asia data centers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation in the following locations only: East Asia, Southeast Asia, West India, South India, Central India, Japan East, Japan West\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"General\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"eastasia\",\"southeastasia\",\"westindia\",\"southindia\",\"centralindia\",\"japaneast\",\"japanwest\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c1b9cbed-08e3-427d-b9ce-7c535b1e9b94\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c1b9cbed-08e3-427d-b9ce-7c535b1e9b94\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Account Logon'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Account Logon'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditCredentialValidation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Credential Validation\",\"description\":\"Specifies whether audit events are generated when credentials are submitted for a user account logon request. This setting is especially useful for monitoring unsuccessful attempts, to find brute-force attacks, account enumeration, and potential account compromise events on domain controllers.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"Success and Failure\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesAccountLogon\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit Credential Validation;ExpectedValue', '=', parameters('AuditCredentialValidation')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesAccountLogon\"},\"AuditCredentialValidation\":{\"value\":\"[parameters('AuditCredentialValidation')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditCredentialValidation\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Credential Validation;ExpectedValue\",\"value\":\"[parameters('AuditCredentialValidation')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Credential Validation;ExpectedValue\",\"value\":\"[parameters('AuditCredentialValidation')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c1e289c0-ffad-475d-a924-adc058765d65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c1e289c0-ffad-475d-a924-adc058765d65\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1503 - Information Security Architecture\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1503\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c1fa9c2f-d439-4ab9-8b83-81fb1934f81d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c1fa9c2f-d439-4ab9-8b83-81fb1934f81d\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that are not set to the specified time zone\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that are not set to the specified time zone. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"TimeZone\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Time zone\",\"description\":\"The expected time zone\"},\"allowedValues\":[\"(UTC-12:00) International Date Line West\",\"(UTC-11:00) Coordinated Universal Time-11\",\"(UTC-10:00) Aleutian Islands\",\"(UTC-10:00) Hawaii\",\"(UTC-09:30) Marquesas Islands\",\"(UTC-09:00) Alaska\",\"(UTC-09:00) Coordinated Universal Time-09\",\"(UTC-08:00) Baja California\",\"(UTC-08:00) Coordinated Universal Time-08\",\"(UTC-08:00) Pacific Time (US & Canada)\",\"(UTC-07:00) Arizona\",\"(UTC-07:00) Chihuahua, La Paz, Mazatlan\",\"(UTC-07:00) Mountain Time (US & Canada)\",\"(UTC-06:00) Central America\",\"(UTC-06:00) Central Time (US & Canada)\",\"(UTC-06:00) Easter Island\",\"(UTC-06:00) Guadalajara, Mexico City, Monterrey\",\"(UTC-06:00) Saskatchewan\",\"(UTC-05:00) Bogota, Lima, Quito, Rio Branco\",\"(UTC-05:00) Chetumal\",\"(UTC-05:00) Eastern Time (US & Canada)\",\"(UTC-05:00) Haiti\",\"(UTC-05:00) Havana\",\"(UTC-05:00) Indiana (East)\",\"(UTC-05:00) Turks and Caicos\",\"(UTC-04:00) Asuncion\",\"(UTC-04:00) Atlantic Time (Canada)\",\"(UTC-04:00) Caracas\",\"(UTC-04:00) Cuiaba\",\"(UTC-04:00) Georgetown, La Paz, Manaus, San Juan\",\"(UTC-04:00) Santiago\",\"(UTC-03:30) Newfoundland\",\"(UTC-03:00) Araguaina\",\"(UTC-03:00) Brasilia\",\"(UTC-03:00) Cayenne, Fortaleza\",\"(UTC-03:00) City of Buenos Aires\",\"(UTC-03:00) Greenland\",\"(UTC-03:00) Montevideo\",\"(UTC-03:00) Punta Arenas\",\"(UTC-03:00) Saint Pierre and Miquelon\",\"(UTC-03:00) Salvador\",\"(UTC-02:00) Coordinated Universal Time-02\",\"(UTC-02:00) Mid-Atlantic - Old\",\"(UTC-01:00) Azores\",\"(UTC-01:00) Cabo Verde Is.\",\"(UTC) Coordinated Universal Time\",\"(UTC+00:00) Dublin, Edinburgh, Lisbon, London\",\"(UTC+00:00) Monrovia, Reykjavik\",\"(UTC+00:00) Sao Tome\",\"(UTC+01:00) Casablanca\",\"(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna\",\"(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague\",\"(UTC+01:00) Brussels, Copenhagen, Madrid, Paris\",\"(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb\",\"(UTC+01:00) West Central Africa\",\"(UTC+02:00) Amman\",\"(UTC+02:00) Athens, Bucharest\",\"(UTC+02:00) Beirut\",\"(UTC+02:00) Cairo\",\"(UTC+02:00) Chisinau\",\"(UTC+02:00) Damascus\",\"(UTC+02:00) Gaza, Hebron\",\"(UTC+02:00) Harare, Pretoria\",\"(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius\",\"(UTC+02:00) Jerusalem\",\"(UTC+02:00) Kaliningrad\",\"(UTC+02:00) Khartoum\",\"(UTC+02:00) Tripoli\",\"(UTC+02:00) Windhoek\",\"(UTC+03:00) Baghdad\",\"(UTC+03:00) Istanbul\",\"(UTC+03:00) Kuwait, Riyadh\",\"(UTC+03:00) Minsk\",\"(UTC+03:00) Moscow, St. Petersburg\",\"(UTC+03:00) Nairobi\",\"(UTC+03:30) Tehran\",\"(UTC+04:00) Abu Dhabi, Muscat\",\"(UTC+04:00) Astrakhan, Ulyanovsk\",\"(UTC+04:00) Baku\",\"(UTC+04:00) Izhevsk, Samara\",\"(UTC+04:00) Port Louis\",\"(UTC+04:00) Saratov\",\"(UTC+04:00) Tbilisi\",\"(UTC+04:00) Volgograd\",\"(UTC+04:00) Yerevan\",\"(UTC+04:30) Kabul\",\"(UTC+05:00) Ashgabat, Tashkent\",\"(UTC+05:00) Ekaterinburg\",\"(UTC+05:00) Islamabad, Karachi\",\"(UTC+05:00) Qyzylorda\",\"(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi\",\"(UTC+05:30) Sri Jayawardenepura\",\"(UTC+05:45) Kathmandu\",\"(UTC+06:00) Astana\",\"(UTC+06:00) Dhaka\",\"(UTC+06:00) Omsk\",\"(UTC+06:30) Yangon (Rangoon)\",\"(UTC+07:00) Bangkok, Hanoi, Jakarta\",\"(UTC+07:00) Barnaul, Gorno-Altaysk\",\"(UTC+07:00) Hovd\",\"(UTC+07:00) Krasnoyarsk\",\"(UTC+07:00) Novosibirsk\",\"(UTC+07:00) Tomsk\",\"(UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi\",\"(UTC+08:00) Irkutsk\",\"(UTC+08:00) Kuala Lumpur, Singapore\",\"(UTC+08:00) Perth\",\"(UTC+08:00) Taipei\",\"(UTC+08:00) Ulaanbaatar\",\"(UTC+08:45) Eucla\",\"(UTC+09:00) Chita\",\"(UTC+09:00) Osaka, Sapporo, Tokyo\",\"(UTC+09:00) Pyongyang\",\"(UTC+09:00) Seoul\",\"(UTC+09:00) Yakutsk\",\"(UTC+09:30) Adelaide\",\"(UTC+09:30) Darwin\",\"(UTC+10:00) Brisbane\",\"(UTC+10:00) Canberra, Melbourne, Sydney\",\"(UTC+10:00) Guam, Port Moresby\",\"(UTC+10:00) Hobart\",\"(UTC+10:00) Vladivostok\",\"(UTC+10:30) Lord Howe Island\",\"(UTC+11:00) Bougainville Island\",\"(UTC+11:00) Chokurdakh\",\"(UTC+11:00) Magadan\",\"(UTC+11:00) Norfolk Island\",\"(UTC+11:00) Sakhalin\",\"(UTC+11:00) Solomon Is., New Caledonia\",\"(UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky\",\"(UTC+12:00) Auckland, Wellington\",\"(UTC+12:00) Coordinated Universal Time+12\",\"(UTC+12:00) Fiji\",\"(UTC+12:00) Petropavlovsk-Kamchatsky - Old\",\"(UTC+12:45) Chatham Islands\",\"(UTC+13:00) Coordinated Universal Time+13\",\"(UTC+13:00) Nuku'alofa\",\"(UTC+13:00) Samoa\",\"(UTC+14:00) Kiritimati Island\"]}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsTimeZone\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsTimeZone]WindowsTimeZone1;TimeZone', '=', parameters('TimeZone')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsTimeZone\"},\"TimeZone\":{\"value\":\"[parameters('TimeZone')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"TimeZone\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsTimeZone]WindowsTimeZone1;TimeZone\",\"value\":\"[parameters('TimeZone')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsTimeZone]WindowsTimeZone1;TimeZone\",\"value\":\"[parameters('TimeZone')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c21f7060-c148-41cf-a68b-0ab3e14c764c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c21f7060-c148-41cf-a68b-0ab3e14c764c\"},{\"properties\":{\"displayName\":\"Advanced threat protection should be enabled on Azure Container Registry registries\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced threat protection provides scanning of container registries for security vulnerabilities on each pushed container image and exposes detailed findings per image.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"ContainerRegistry\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c25d9a16-bc35-4e15-a7e5-9db606bf9ed4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c25d9a16-bc35-4e15-a7e5-9db606bf9ed4\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs on which the specified services are not installed and 'Running'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines on which the specified services are not installed and 'Running'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsServiceStatus\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c2dd2a9a-8a20-4a9c-b8d6-f17ccc26939a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c2dd2a9a-8a20-4a9c-b8d6-f17ccc26939a\"},{\"properties\":{\"displayName\":\"Ensure that '.NET Framework' version is the latest, if used as a part of the API app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for .NET Framework software either due to security flaws or to include additional functionality. Using the latest .NET framework version for web apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.netFrameworkVersion\",\"in\":[\"v3.0\",\"v4.0\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c2e7ca55-f62c-49b2-89a4-d41eb661d2f0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c2e7ca55-f62c-49b2-89a4-d41eb661d2f0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1176 - Baseline Configuration\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1176\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c30690a5-7bf3-467f-b0cd-ef5c7c7449cd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c30690a5-7bf3-467f-b0cd-ef5c7c7449cd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1389 - Information Spillage Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1389\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c39e6fda-ae70-4891-a739-be7bba6d1062\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c39e6fda-ae70-4891-a739-be7bba6d1062\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1390 - Information Spillage Response | Responsible Personnel\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1390\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c3b65b63-09ec-4cb5-8028-7dd324d10eb0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c3b65b63-09ec-4cb5-8028-7dd324d10eb0\"},{\"properties\":{\"displayName\":\"System updates on virtual machine scale sets should be installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit whether there are any missing system security updates and critical updates that should be installed to ensure that your Windows and Linux virtual machine scale sets are secure.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"SystemUpdates\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c3f317a7-a95c-4547-b7e7-11017ebdf2fe\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c3f317a7-a95c-4547-b7e7-11017ebdf2fe\"},{\"properties\":{\"displayName\":\"Show audit results from Linux VMs that have accounts without passwords\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Linux virtual machines that have accounts without passwords. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordPolicy_msid232\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c40c9087-1981-4e73-9f53-39743eda9d05\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c40c9087-1981-4e73-9f53-39743eda9d05\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1220 - Least Functionality | Authorized Software / Whitelisting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1220\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c40f31a7-81e1-4130-99e5-a02ceea2a1d6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c40f31a7-81e1-4130-99e5-a02ceea2a1d6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1513 - Personnel Screening | Information With Special Protection Measures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1513\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c416970d-b12b-49eb-8af4-fb144cd7c290\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c416970d-b12b-49eb-8af4-fb144cd7c290\"},{\"properties\":{\"displayName\":\"Microsoft Antimalware for Azure should be configured to automatically update protection signatures\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Windows virtual machine not configured with automatic update of Microsoft Antimalware protection signatures.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"equals\":\"Windows\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"IaaSAntimalware\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Security\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/autoUpgradeMinorVersion\",\"equals\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c43e4a30-77cb-48ab-a4dd-93f175c63b57\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c43e4a30-77cb-48ab-a4dd-93f175c63b57\"},{\"properties\":{\"displayName\":\"[Preview]: Container Registry should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Container Registry not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Network\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerRegistry/registries\"},{\"anyOf\":[{\"field\":\"Microsoft.ContainerRegistry/registries/networkRuleSet.defaultAction\",\"notEquals\":\"Deny\"},{\"field\":\"Microsoft.ContainerRegistry/registries/networkRuleSet.virtualNetworkRules[*].action\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c4857be7-912a-4c75-87e6-e30292bcdf78\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c4857be7-912a-4c75-87e6-e30292bcdf78\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1235 - Software Usage Restrictions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1235\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c49c610b-ece4-44b3-988c-2172b70d6e46\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c49c610b-ece4-44b3-988c-2172b70d6e46\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1173 - Internal System Connections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1173\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c4aff9e7-2e60-46fa-86be-506b79033fc5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c4aff9e7-2e60-46fa-86be-506b79033fc5\"},{\"properties\":{\"displayName\":\"Managed identity should be used in your API App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use a managed identity for enhanced authentication security\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/managedServiceIdentityId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c4d441f8-f9d9-4a9e-9cef-e82117cb3eef\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c4d441f8-f9d9-4a9e-9cef-e82117cb3eef\"},{\"properties\":{\"displayName\":\"Authentication should be enabled on your API app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Azure App Service Authentication is a feature that can prevent anonymous HTTP requests from reaching the API app, or authenticate those that have tokens before they reach the API app\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/siteAuthEnabled\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c4ebc54a-46e1-481a-bee2-d4411e95d828\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c4ebc54a-46e1-481a-bee2-d4411e95d828\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1600 - Developer Security Testing And Evaluation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1600\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c53f3123-d233-44a7-930b-f40d3bfeb7d6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c53f3123-d233-44a7-930b-f40d3bfeb7d6\"},{\"properties\":{\"displayName\":\"An activity log alert should exist for specific Policy operations\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits specific Policy operations with no activity log alerts configured.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"operationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Operation Name\",\"description\":\"Policy Operation name for which activity log alert should exist\"},\"allowedValues\":[\"Microsoft.Authorization/policyAssignments/write\",\"Microsoft.Authorization/policyAssignments/delete\"]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/ActivityLogAlerts\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/enabled\",\"equals\":\"true\"},{\"count\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"category\"},{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].equals\",\"equals\":\"Policy\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"operationName\"},{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].equals\",\"equals\":\"[parameters('operationName')]\"}]}]}},\"equals\":2},{\"not\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"category\"}},{\"not\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"operationName\"}}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c5447c04-a4d7-4ba8-a263-c9ee321a6858\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c5447c04-a4d7-4ba8-a263-c9ee321a6858\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1408 - Maintenance Tools | Prevent Unauthorized Removal\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1408\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c5f56ac6-4bb2-4086-bc41-ad76344ba2c2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c5f56ac6-4bb2-4086-bc41-ad76344ba2c2\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that contain certificates expiring within the specified number of days\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that contain certificates expiring within the specified number of days. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"CertificateStorePath\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Certificate store path\",\"description\":\"The path to the certificate store containing the certificates to check the expiration dates of. Default value is 'Cert:' which is the root certificate store path, so all certificates on the machine will be checked. Other example paths: 'Cert:\\\\LocalMachine', 'Cert:\\\\LocalMachine\\\\TrustedPublisher', 'Cert:\\\\CurrentUser'\"},\"defaultValue\":\"Cert:\"},\"ExpirationLimitInDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Expiration limit in days\",\"description\":\"An integer indicating the number of days within which to check for certificates that are expiring. For example, if this value is 30, any certificate expiring within the next 30 days will cause this policy to be non-compliant.\"},\"defaultValue\":\"30\"},\"CertificateThumbprintsToInclude\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Certificate thumbprints to include\",\"description\":\"A semicolon-separated list of certificate thumbprints to check under the specified path. If a value is not specified, all certificates under the certificate store path will be checked. If a value is specified, no certificates other than those with the thumbprints specified will be checked. e.g. THUMBPRINT1;THUMBPRINT2;THUMBPRINT3\"},\"defaultValue\":\"\"},\"CertificateThumbprintsToExclude\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Certificate thumbprints to exclude\",\"description\":\"A semicolon-separated list of certificate thumbprints to ignore. e.g. THUMBPRINT1;THUMBPRINT2;THUMBPRINT3\"},\"defaultValue\":\"\"},\"IncludeExpiredCertificates\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Include expired certificates\",\"description\":\"Must be 'true' or 'false'. True indicates that any found certificates that have already expired will also make this policy non-compliant. False indicates that certificates that have expired will be be ignored.\"},\"allowedValues\":[\"true\",\"false\"],\"defaultValue\":\"false\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"CertificateExpiration\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[CertificateStore]CertificateStore1;CertificateStorePath', '=', parameters('CertificateStorePath'), ',', '[CertificateStore]CertificateStore1;ExpirationLimitInDays', '=', parameters('ExpirationLimitInDays'), ',', '[CertificateStore]CertificateStore1;CertificateThumbprintsToInclude', '=', parameters('CertificateThumbprintsToInclude'), ',', '[CertificateStore]CertificateStore1;CertificateThumbprintsToExclude', '=', parameters('CertificateThumbprintsToExclude'), ',', '[CertificateStore]CertificateStore1;IncludeExpiredCertificates', '=', parameters('IncludeExpiredCertificates')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"CertificateExpiration\"},\"CertificateStorePath\":{\"value\":\"[parameters('CertificateStorePath')]\"},\"ExpirationLimitInDays\":{\"value\":\"[parameters('ExpirationLimitInDays')]\"},\"CertificateThumbprintsToInclude\":{\"value\":\"[parameters('CertificateThumbprintsToInclude')]\"},\"CertificateThumbprintsToExclude\":{\"value\":\"[parameters('CertificateThumbprintsToExclude')]\"},\"IncludeExpiredCertificates\":{\"value\":\"[parameters('IncludeExpiredCertificates')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"CertificateStorePath\":{\"type\":\"string\"},\"ExpirationLimitInDays\":{\"type\":\"string\"},\"CertificateThumbprintsToInclude\":{\"type\":\"string\"},\"CertificateThumbprintsToExclude\":{\"type\":\"string\"},\"IncludeExpiredCertificates\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[CertificateStore]CertificateStore1;CertificateStorePath\",\"value\":\"[parameters('CertificateStorePath')]\"},{\"name\":\"[CertificateStore]CertificateStore1;ExpirationLimitInDays\",\"value\":\"[parameters('ExpirationLimitInDays')]\"},{\"name\":\"[CertificateStore]CertificateStore1;CertificateThumbprintsToInclude\",\"value\":\"[parameters('CertificateThumbprintsToInclude')]\"},{\"name\":\"[CertificateStore]CertificateStore1;CertificateThumbprintsToExclude\",\"value\":\"[parameters('CertificateThumbprintsToExclude')]\"},{\"name\":\"[CertificateStore]CertificateStore1;IncludeExpiredCertificates\",\"value\":\"[parameters('IncludeExpiredCertificates')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[CertificateStore]CertificateStore1;CertificateStorePath\",\"value\":\"[parameters('CertificateStorePath')]\"},{\"name\":\"[CertificateStore]CertificateStore1;ExpirationLimitInDays\",\"value\":\"[parameters('ExpirationLimitInDays')]\"},{\"name\":\"[CertificateStore]CertificateStore1;CertificateThumbprintsToInclude\",\"value\":\"[parameters('CertificateThumbprintsToInclude')]\"},{\"name\":\"[CertificateStore]CertificateStore1;CertificateThumbprintsToExclude\",\"value\":\"[parameters('CertificateThumbprintsToExclude')]\"},{\"name\":\"[CertificateStore]CertificateStore1;IncludeExpiredCertificates\",\"value\":\"[parameters('IncludeExpiredCertificates')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c5fbc59e-fb6f-494f-81e2-d99a671bdaa8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c5fbc59e-fb6f-494f-81e2-d99a671bdaa8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1670 - Flaw Remediation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1670\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c6108469-57ee-4666-af7e-79ba61c7ae0c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c6108469-57ee-4666-af7e-79ba61c7ae0c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1190 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1190\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c66a3d1e-465b-4f28-9da5-aef701b59892\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c66a3d1e-465b-4f28-9da5-aef701b59892\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1120 - Audit Review, Analysis, And Reporting | Integration / Scanning And Monitoring Capabilities\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1120\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c69b870e-857b-458b-af02-bb234f7a00d3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c69b870e-857b-458b-af02-bb234f7a00d3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1125 - Audit Reduction And Report Generation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1125\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c6ce745a-670e-47d3-a6c4-3cfe5ef00c10\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c6ce745a-670e-47d3-a6c4-3cfe5ef00c10\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy Diagnostic Settings for Recovery Services Vault to Log Analytics workspace for resource specific categories.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Diagnostic Settings for Recovery Services Vault to stream to Log Analytics workspace for Resource specific categories. If any of the Resource specific categories are not enabled, a new diagnostic setting is created.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"preview\":true,\"category\":\"Monitoring\"},\"parameters\":{\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Exclusion Tag Name\",\"description\":\"Name of the tag to use for excluding vaults from this policy. This should be used along with the Exclusion Tag Value parameter.\"},\"defaultValue\":\"\"},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Exclusion Tag Value\",\"description\":\"Value of the tag to use for excluding vaults from this policy. This should be used along with the Exclusion Tag Name parameter.\"},\"defaultValue\":\"\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"Microsoft.RecoveryServices/vaults\"},{\"not\":{\"field\":\"[concat('tags[',parameters('tagName'), ']')]\",\"equals\":\"[parameters('tagValue')]\"}}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"allof\":[{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"allof\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].Category\",\"in\":[\"CoreAzureBackup\",\"AddonAzureBackupJobs\",\"AddonAzureBackupAlerts\",\"AddonAzureBackupPolicy\",\"AddonAzureBackupStorage\",\"AddonAzureBackupProtectedInstance\"]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].Enabled\",\"equals\":\"True\"}]}},\"Equals\":6},{\"field\":\"Microsoft.Insights/diagnosticSettings/workspaceId\",\"notEquals\":\"\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logAnalyticsDestinationType\",\"equals\":\"Dedicated\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vaultName\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.RecoveryServices/vaults/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('vaultName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"logAnalyticsDestinationType\":\"Dedicated\",\"metrics\":[],\"logs\":[{\"category\":\"CoreAzureBackup\",\"enabled\":\"true\"},{\"category\":\"AddonAzureBackupAlerts\",\"enabled\":\"true\"},{\"category\":\"AddonAzureBackupJobs\",\"enabled\":\"true\"},{\"category\":\"AddonAzureBackupPolicy\",\"enabled\":\"true\"},{\"category\":\"AddonAzureBackupProtectedInstance\",\"enabled\":\"true\"},{\"category\":\"AddonAzureBackupStorage\",\"enabled\":\"true\"}]}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat(parameters('logAnalytics'), 'configured for diagnostic logs for ', ': ', parameters('vaultName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\"}}},\"parameters\":{\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"vaultName\":{\"value\":\"[field('name')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c717fb0c-d118-4c43-ab3d-ece30ac81fb3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c717fb0c-d118-4c43-ab3d-ece30ac81fb3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1619 - Information In Shared Resources\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1619\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c722e569-cb52-45f3-a643-836547d016e1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c722e569-cb52-45f3-a643-836547d016e1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1121 - Audit Review, Analysis, And Reporting | Correlation With Physical Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1121\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c72b0eb9-1fc2-44e5-a866-e7cb0532f7c1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c72b0eb9-1fc2-44e5-a866-e7cb0532f7c1\"},{\"properties\":{\"displayName\":\"Authentication should be enabled on your Function app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Azure App Service Authentication is a feature that can prevent anonymous HTTP requests from reaching the Function app, or authenticate those that have tokens before they reach the Function app\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"equals\":\"functionapp\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/siteAuthEnabled\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c75248c1-ea1d-4a9c-8fc9-29a6aabd5da8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c75248c1-ea1d-4a9c-8fc9-29a6aabd5da8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1353 - Incident Response Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1353\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c785ad59-f78f-44ad-9a7f-d1202318c748\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c785ad59-f78f-44ad-9a7f-d1202318c748\"},{\"properties\":{\"displayName\":\"[Deprecated]: Email notifications to admins and subscription owners should be enabled in SQL server advanced data security settings\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit that 'email notification to admins and subscription owners' is enabled in the SQL server advanced threat protection settings. This ensures that any detections of anomalous activities on SQL server are reported as soon as possible to the admins.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/securityAlertPolicies/emailAccountAdmins\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c8343d2f-fdc9-4a97-b76f-fc71d1163bfc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c8343d2f-fdc9-4a97-b76f-fc71d1163bfc\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Batch Account to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Batch Account to stream to a regional Log Analytics workspace when any Batch Account which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Batch/batchAccounts/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"ServiceLog\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c84e5349-db6d-4769-805e-e14037dab9b5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c84e5349-db6d-4769-805e-e14037dab9b5\"},{\"properties\":{\"displayName\":\"[Deprecated]: API App should only be accessible over HTTPS\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use of HTTPS ensures server/service authentication and protects data in transit from network layer eavesdropping attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"OnlyHttpsForApiApp\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c85538c1-b527-4ce4-bdb4-1dabcb3fd90d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c85538c1-b527-4ce4-bdb4-1dabcb3fd90d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1470 - Emergency Shutoff\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1470\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c89ba09f-2e0f-44d0-8095-65b05bd151ef\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c89ba09f-2e0f-44d0-8095-65b05bd151ef\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Interactive Logon'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Interactive Logon'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsInteractiveLogon\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c8abcef9-fc26-482f-b8db-5fa60ee4586d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c8abcef9-fc26-482f-b8db-5fa60ee4586d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1018 - Account Management | Role-Based Schemes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1018\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c9121abf-e698-4ee9-b1cf-71ee528ff07f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c9121abf-e698-4ee9-b1cf-71ee528ff07f\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Data Lake Analytics should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Data Lake\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeAnalytics/accounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c95c74d9-38fe-4f0d-af86-0c7d626a315c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c95c74d9-38fe-4f0d-af86-0c7d626a315c\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'User Rights Assignment'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'User Rights Assignment'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_UserRightsAssignment\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c961dac9-5916-42e8-8fb1-703148323994\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c961dac9-5916-42e8-8fb1-703148323994\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs with a pending reboot\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with a pending reboot. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsPendingReboot\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsPendingReboot\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c96f3246-4382-4264-bf6b-af0b35e23c3c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c96f3246-4382-4264-bf6b-af0b35e23c3c\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Network Security Groups\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy automatically deploys diagnostic settings to network security groups. A storage account with name '{storagePrefixParameter}{NSGLocation}' will be automatically created.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"storagePrefix\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Storage Account Prefix for Regional Storage Account\",\"description\":\"This prefix will be combined with the network security group location to form the created storage account name.\"}},\"rgName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource Group Name for Storage Account (must exist)\",\"description\":\"The resource group that the storage account will be created in. This resource group must already exist.\",\"strongType\":\"ExistingResourceGroups\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"setbypolicy\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"location\":{\"type\":\"string\"},\"storagePrefix\":{\"type\":\"string\"},\"nsgName\":{\"type\":\"string\"},\"rgName\":{\"type\":\"string\"}},\"variables\":{\"storageDeployName\":\"[concat('policyStorage_', uniqueString(parameters('location'), parameters('nsgName')))]\"},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/providers/diagnosticSettings\",\"name\":\"[concat(parameters('nsgName'),'/Microsoft.Insights/setbypolicy')]\",\"apiVersion\":\"2017-05-01-preview\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[variables('storageDeployName')]\"],\"properties\":{\"storageAccountId\":\"[reference(variables('storageDeployName')).outputs.storageAccountId.value]\",\"logs\":[{\"category\":\"NetworkSecurityGroupEvent\",\"enabled\":true,\"retentionPolicy\":{\"enabled\":false,\"days\":0}},{\"category\":\"NetworkSecurityGroupRuleCounter\",\"enabled\":true,\"retentionPolicy\":{\"enabled\":false,\"days\":0}}]}},{\"apiVersion\":\"2017-05-10\",\"name\":\"[variables('storageDeployName')]\",\"type\":\"Microsoft.Resources/deployments\",\"resourceGroup\":\"[parameters('rgName')]\",\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"location\":{\"value\":\"[parameters('location')]\"},\"storagePrefix\":{\"value\":\"[parameters('storagePrefix')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"location\":{\"type\":\"string\"},\"storagePrefix\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2017-06-01\",\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[concat(parameters('storageprefix'), parameters('location'))]\",\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"location\":\"[parameters('location')]\",\"tags\":{\"created-by\":\"policy\"},\"scale\":null,\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"supportsHttpsTrafficOnly\":true}}],\"outputs\":{\"storageAccountId\":{\"type\":\"string\",\"value\":\"[resourceId(parameters('rgName'), 'Microsoft.Storage/storageAccounts',concat(parameters('storagePrefix'), parameters('location')))]\"}}}}}]},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"storagePrefix\":{\"value\":\"[parameters('storagePrefix')]\"},\"rgName\":{\"value\":\"[parameters('rgName')]\"},\"nsgName\":{\"value\":\"[field('name')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c9c29499-c1d1-4195-99bd-2ec9e3a9dc89\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c9c29499-c1d1-4195-99bd-2ec9e3a9dc89\"},{\"properties\":{\"displayName\":\"Storage accounts should allow access from trusted Microsoft services\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Some Microsoft services that interact with storage accounts operate from networks that can't be granted access through network rules. To help this type of service work as intended, allow the set of trusted Microsoft services to bypass the network rules. These services will then use strong authentication to access the storage account.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Storage\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"field\":\"Microsoft.Storage/storageAccounts/networkAcls.bypass\",\"exists\":\"true\"},{\"field\":\"Microsoft.Storage/storageAccounts/networkAcls.bypass\",\"notContains\":\"AzureServices\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c9d007d0-c057-4772-b18c-01e546713bcd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c9d007d0-c057-4772-b18c-01e546713bcd\"},{\"properties\":{\"displayName\":\"App Configuration should use a private link\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any App Configuration instance that does not use a private link.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Configuration\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.AppConfiguration/configurationStores\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections\",\"existenceCondition\":{\"field\":\"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections/privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ca610c1d-041c-4332-9d88-7ed3094967c7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ca610c1d-041c-4332-9d88-7ed3094967c7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1035 - Least Privilege | Authorize Access To Security Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1035\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ca94b046-45e2-444f-a862-dc8ce262a516\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ca94b046-45e2-444f-a862-dc8ce262a516\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1243 - Contingency Planning Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1243\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ca9a4469-d6df-4ab2-a42f-1213c396f0ec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ca9a4469-d6df-4ab2-a42f-1213c396f0ec\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1306 - Identification And Authentication (Org. Users) | Net. Access To Priv. Accts. - Replay\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1306\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cafc6c3c-5fc5-4c5e-a99b-a0ccb1d34eff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cafc6c3c-5fc5-4c5e-a99b-a0ccb1d34eff\"},{\"properties\":{\"displayName\":\"Remote debugging should be turned off for Web Applications\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Remote debugging requires inbound ports to be opened on a web application. Remote debugging should be turned off.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.remoteDebuggingEnabled\",\"equals\":\"false\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cb510bfd-1cba-4d9f-a230-cb0976f4bb71\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cb510bfd-1cba-4d9f-a230-cb0976f4bb71\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1486 - Alternate Work Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1486\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cb790345-a51f-43de-934e-98dbfaf9dca5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cb790345-a51f-43de-934e-98dbfaf9dca5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1167 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1167\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cbb2be76-4891-430b-95a7-ca0b0a3d1300\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cbb2be76-4891-430b-95a7-ca0b0a3d1300\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1374 - Incident Response Assistance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1374\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cc5c8616-52ef-4e5e-8000-491634ed9249\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cc5c8616-52ef-4e5e-8000-491634ed9249\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs in which the Administrators group does not contain only the specified members\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines in which the Administrators group does not contain only the specified members. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AdministratorsGroupMembers\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cc7cda28-f867-4311-8497-a526129a8d19\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cc7cda28-f867-4311-8497-a526129a8d19\"},{\"properties\":{\"displayName\":\"[Preview]: Sensitive data in your SQL databases should be classified\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Azure Security Center monitors the data discovery and classification scan results for your SQL databases and provides recommendations to classify the sensitive data in your databases for better monitoring and security\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Security Center\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Sql/servers/databases\",\"Microsoft.Sql/managedInstances/databases\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"sqlDataClassification\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cc9835f2-9f6b-4cc8-ab4a-f8ef615eb349\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cc9835f2-9f6b-4cc8-ab4a-f8ef615eb349\"},{\"properties\":{\"displayName\":\"Allowed virtual machine size SKUs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables you to specify a set of virtual machine size SKUs that your organization can deploy.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Compute\"},\"parameters\":{\"listOfAllowedSKUs\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of size SKUs that can be specified for virtual machines.\",\"displayName\":\"Allowed Size SKUs\",\"strongType\":\"VMSKUs\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"not\":{\"field\":\"Microsoft.Compute/virtualMachines/sku.name\",\"in\":\"[parameters('listOfAllowedSKUs')]\"}}]},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cccc23c7-8427-4f53-ad12-b6a63eb452b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cccc23c7-8427-4f53-ad12-b6a63eb452b3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1443 - Media Use\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1443\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cd0ec6fa-a2e7-4361-aee4-a8688659a9ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cd0ec6fa-a2e7-4361-aee4-a8688659a9ed\"},{\"properties\":{\"displayName\":\"Inherit a tag from the resource group\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Adds or replaces the specified tag and value from the parent resource group when any resource is created or updated. Existing resources can be remediated by triggering a remediation task.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"notEquals\":\"[resourceGroup().tags[parameters('tagName')]]\"},{\"value\":\"[resourceGroup().tags[parameters('tagName')]]\",\"notEquals\":\"\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"addOrReplace\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[resourceGroup().tags[parameters('tagName')]]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cd3aa116-8754-49c9-a813-ad46512ece54\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cd3aa116-8754-49c9-a813-ad46512ece54\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation if 'department' tag set\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation only if the 'department' tag is set\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Tags\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"tags\",\"containsKey\":\"department\"}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cd8dc879-a2ae-43c3-8211-1877c5755064\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cd8dc879-a2ae-43c3-8211-1877c5755064\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1582 - Information System Documentation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1582\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cd9e2f38-259b-462c-bfad-0ad7ab4e65c5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cd9e2f38-259b-462c-bfad-0ad7ab4e65c5\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that allow re-use of the previous 24 passwords\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that allow re-use of the previous 24 passwords. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"EnforcePasswordHistory\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cdbf72d9-ac9c-4026-8a3a-491a5ac59293\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cdbf72d9-ac9c-4026-8a3a-491a5ac59293\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1104 - Audit Events\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1104\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cdd8d244-18b2-4306-a1d1-df175ae0935f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cdd8d244-18b2-4306-a1d1-df175ae0935f\"},{\"properties\":{\"displayName\":\"Deploy export to Event Hub for Azure Security Center alerts and recommendations\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable export to Event Hub of Azure Security Center alerts and/or recommendations. This policy deploys an export to Event Hub configuration with your conditions and target Event Hub on the assigned scope. To deploy this policy on newly created subscriptions, open the Compliance tab, select the relevant non-compliant assignment and create a remediation task.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"resourceGroupName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group name\",\"description\":\"The resource group name where the export to Event Hub configuration is created. If you enter a name for a resource group that doesn't exist, it'll be created in the subscription. Note that each resource group can only have one export to Event Hub configured.\"}},\"resourceGroupLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group location\",\"description\":\"The location where the resource group and the export to Event Hub configuration are created.\",\"strongType\":\"location\"}},\"exportedDataTypes\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Exported data types\",\"description\":\"The data types to be exported. Example: Security recommendations;Security alerts;\"},\"allowedValues\":[\"Security recommendations\",\"Security alerts\"],\"defaultValue\":[\"Security recommendations\",\"Security alerts\"]},\"recommendationNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation IDs\",\"description\":\"Applicable only for export of security recommendations. To export all recommendations, leave this empty. To export specific recommendations, enter a list of recommendation IDs separated by semicolons (';'). Recommendation IDs are available through the Assessments API (https://docs.microsoft.com/rest/api/securitycenter/assessments), or Azure Resource Graph Explorer (https://portal.azure.com/#blade/HubsExtension/ArgQueryBlade), choose securityresources and microsoft.security/assessments.\"},\"defaultValue\":[]},\"recommendationSeverities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation severities\",\"description\":\"Applicable only for export of security recommendations. Determines recommendation severities. Example: High;Medium;Low;\"},\"allowedValues\":[\"High\",\"Medium\",\"Low\"],\"defaultValue\":[\"High\",\"Medium\",\"Low\"]},\"alertSeverities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Alert severities\",\"description\":\"Applicable only for export of security alerts. Determines alert severities. Example: High;Medium;Low;\"},\"allowedValues\":[\"High\",\"Medium\",\"Low\"],\"defaultValue\":[\"High\",\"Medium\",\"Low\"]},\"eventHubDetails\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub details\",\"description\":\"The Event Hub details of where the data should be exported to: Subscription, Event Hub Namespace, Event Hub, and Authorizations rules with 'Send' claim. If you do not already have an event hub, visit Event Hubs to create one (https://portal.azure.com/#blade/HubsExtension/BrowseResource/resourceType/Microsoft.EventHub%2Fnamespaces).\",\"strongType\":\"Microsoft.EventHub/namespaces/eventhubs/authorizationrules\",\"assignPermissions\":true}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Security/automations\",\"name\":\"exportToEventHub\",\"existenceScope\":\"resourcegroup\",\"ResourceGroupName\":\"[parameters('resourceGroupName')]\",\"deploymentScope\":\"subscription\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"location\":\"westeurope\",\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceGroupName\":{\"type\":\"string\"},\"resourceGroupLocation\":{\"type\":\"string\"},\"exportedDataTypes\":{\"type\":\"array\"},\"recommendationNames\":{\"type\":\"array\"},\"recommendationSeverities\":{\"type\":\"array\"},\"alertSeverities\":{\"type\":\"array\"},\"eventHubDetails\":{\"type\":\"string\"},\"guidValue\":{\"type\":\"string\",\"defaultValue\":\"[newGuid()]\"}},\"variables\":{\"scopeDescription\":\"scope for subscription {0}\",\"recommendationNamesLength\":\"[length(parameters('recommendationNames'))]\",\"recommendationSeveritiesLength\":\"[length(parameters('recommendationSeverities'))]\",\"alertSeveritiesLength\":\"[length(parameters('alertSeverities'))]\",\"recommendationNamesLengthIfEmpty\":\"[if(equals(variables('recommendationNamesLength'), 0), 1, variables('recommendationNamesLength'))]\",\"recommendationSeveritiesLengthIfEmpty\":\"[if(equals(variables('recommendationSeveritiesLength'), 0), 1, variables('recommendationSeveritiesLength'))]\",\"alertSeveritiesLengthIfEmpty\":\"[if(equals(variables('alertSeveritiesLength'), 0), 1, variables('alertSeveritiesLength'))]\",\"totalRuleCombinationsForOneRecommendationName\":\"[variables('recommendationSeveritiesLengthIfEmpty')]\",\"totalRuleCombinationsForOneRecommendationSeverity\":1,\"exportedDataTypesLength\":\"[length(parameters('exportedDataTypes'))]\",\"exportedDataTypesLengthIfEmpty\":\"[if(equals(variables('exportedDataTypesLength'), 0), 1, variables('exportedDataTypesLength'))]\",\"SeperatedEventHubDetails\":\"[split(parameters('eventHubDetails'),'/')]\",\"dataTypeMap\":{\"Security recommendations\":\"Assessments\",\"Security alerts\":\"Alerts\"},\"alertSeverityMap\":{\"High\":\"high\",\"Medium\":\"medium\",\"Low\":\"low\"},\"ruleSetsForAssessmentsObj\":{\"copy\":[{\"name\":\"ruleSetsForAssessmentsArr\",\"count\":\"[mul(variables('recommendationNamesLengthIfEmpty'),variables('recommendationSeveritiesLengthIfEmpty'))]\",\"input\":{\"rules\":[{\"propertyJPath\":\"[if(equals(variables('recommendationNamesLength'),0),'type','name')]\",\"propertyType\":\"string\",\"expectedValue\":\"[if(equals(variables('recommendationNamesLength'),0),'Microsoft.Security/assessments',parameters('recommendationNames')[mod(div(copyIndex('ruleSetsForAssessmentsArr'),variables('totalRuleCombinationsForOneRecommendationName')),variables('recommendationNamesLength'))])]\",\"operator\":\"Contains\"},{\"propertyJPath\":\"properties.metadata.severity\",\"propertyType\":\"string\",\"expectedValue\":\"[parameters('recommendationSeverities')[mod(div(copyIndex('ruleSetsForAssessmentsArr'),variables('totalRuleCombinationsForOneRecommendationSeverity')),variables('recommendationSeveritiesLength'))]]\",\"operator\":\"Equals\"}]}}]},\"ruleSetsForAlertsObj\":{\"copy\":[{\"name\":\"ruleSetsForAlertsArr\",\"count\":\"[variables('alertSeveritiesLengthIfEmpty')]\",\"input\":{\"rules\":[{\"propertyJPath\":\"Severity\",\"propertyType\":\"string\",\"expectedValue\":\"[variables('alertSeverityMap')[parameters('alertSeverities')[mod(copyIndex('ruleSetsForAlertsArr'),variables('alertSeveritiesLengthIfEmpty'))]]]\",\"operator\":\"Equals\"}]}}]}},\"resources\":[{\"name\":\"[parameters('resourceGroupName')]\",\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2019-10-01\",\"location\":\"[parameters('resourceGroupLocation')]\",\"tags\":{},\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2019-10-01\",\"name\":\"[concat('nestedAutomationDeployment', '_', parameters('guidValue'))]\",\"resourceGroup\":\"[parameters('resourceGroupName')]\",\"dependsOn\":[\"[resourceId('Microsoft.Resources/resourceGroups/', parameters('resourceGroupName'))]\"],\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"tags\":{},\"apiVersion\":\"2019-01-01-preview\",\"location\":\"[parameters('resourceGroupLocation')]\",\"name\":\"exportToEventHub\",\"type\":\"Microsoft.Security/automations\",\"dependsOn\":[],\"properties\":{\"description\":\"Export Azure Security Center alerts and/or recommendations to Event Hub via policy\",\"isEnabled\":true,\"scopes\":[{\"description\":\"[replace(variables('scopeDescription'),'{0}', subscription().subscriptionId)]\",\"scopePath\":\"[subscription().id]\"}],\"copy\":[{\"name\":\"sources\",\"count\":\"[variables('exportedDataTypesLengthIfEmpty')]\",\"input\":{\"eventSource\":\"[variables('dataTypeMap')[parameters('exportedDataTypes')[copyIndex('sources')]]]\",\"ruleSets\":\"[if(equals(parameters('exportedDataTypes')[copyIndex('sources')], 'Security recommendations'), variables('ruleSetsForAssessmentsObj').ruleSetsForAssessmentsArr, variables('ruleSetsForAlertsObj').ruleSetsForAlertsArr)]\"}}],\"actions\":[{\"actionType\":\"EventHub\",\"eventHubResourceId\":\"[concat('/', variables('SeperatedEventHubDetails')[1], '/', variables('SeperatedEventHubDetails')[2], '/', variables('SeperatedEventHubDetails')[3], '/', variables('SeperatedEventHubDetails')[4], '/', variables('SeperatedEventHubDetails')[5], '/', variables('SeperatedEventHubDetails')[6], '/', variables('SeperatedEventHubDetails')[7], '/', variables('SeperatedEventHubDetails')[8], '/', variables('SeperatedEventHubDetails')[9], '/', variables('SeperatedEventHubDetails')[10])]\",\"connectionString\":\"[listkeys(parameters('eventHubDetails'),'2017-04-01').primaryConnectionString]\"}]}}]}}}]},\"parameters\":{\"resourceGroupName\":{\"value\":\"[parameters('resourceGroupName')]\"},\"resourceGroupLocation\":{\"value\":\"[parameters('resourceGroupLocation')]\"},\"exportedDataTypes\":{\"value\":\"[parameters('exportedDataTypes')]\"},\"recommendationNames\":{\"value\":\"[parameters('recommendationNames')]\"},\"recommendationSeverities\":{\"value\":\"[parameters('recommendationSeverities')]\"},\"alertSeverities\":{\"value\":\"[parameters('alertSeverities')]\"},\"eventHubDetails\":{\"value\":\"[parameters('eventHubDetails')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cdfcce10-4578-4ecd-9703-530938e4abcb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cdfcce10-4578-4ecd-9703-530938e4abcb\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Privilege Use'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Privilege Use'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesPrivilegeUse\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesPrivilegeUse\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ce2370f6-0ac5-4d85-8ab4-10721cc640b0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ce2370f6-0ac5-4d85-8ab4-10721cc640b0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1209 - Configuration Settings\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1209\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ce669c31-9103-4552-ae9c-cdef4e03580d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ce669c31-9103-4552-ae9c-cdef4e03580d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1242 - Contingency Planning Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1242\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cf3b3293-667a-445e-a722-fa0b0afc0958\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cf3b3293-667a-445e-a722-fa0b0afc0958\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1097 - Role-Based Security Training | Suspicious Communications And Anomalous System Behavior\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1097\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cf3e4836-f19e-47eb-a8cd-c3ca150452c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cf3e4836-f19e-47eb-a8cd-c3ca150452c0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1424 - Maintenance Personnel | Individuals Without Appropriate Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1424\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cf55fc87-48e1-4676-a2f8-d9a8cf993283\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cf55fc87-48e1-4676-a2f8-d9a8cf993283\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Key Vault should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Key Vault\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.KeyVault/vaults\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cf820ca0-f99e-4f3e-84fb-66e913812d21\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cf820ca0-f99e-4f3e-84fb-66e913812d21\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1292 - Information System Backup | Test Restoration Using Sampling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1292\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d03516cf-0293-489f-9b32-a18f2a79f836\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d03516cf-0293-489f-9b32-a18f2a79f836\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1724 - Error Handling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1724\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d07594d1-0307-4c08-94db-5d71ff31f0f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d07594d1-0307-4c08-94db-5d71ff31f0f6\"},{\"properties\":{\"displayName\":\"Container Registries should not allow unrestricted network access\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Container Registries that do not have any Network (IP or VNET) Rules configured and allow all network access by default. Container Registries with at least one IP / Firewall rule or configured virtual network will be deemed compliant. For more information on Container Registry Network rules, please visit: https://aka.ms/acr/vnet.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Container Registry\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerRegistry/registries\"},{\"anyof\":[{\"field\":\"Microsoft.ContainerRegistry/registries/networkRuleSet.defaultAction\",\"exists\":\"false\"},{\"field\":\"Microsoft.ContainerRegistry/registries/networkRuleSet.defaultAction\",\"equals\":\"Allow\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d0793b48-0edc-4296-a390-4c75d1bdfd71\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d0793b48-0edc-4296-a390-4c75d1bdfd71\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1084 - Publicly Accessible Content\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1084\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d0eb15db-dd1c-4d1d-b200-b12dd6cd060c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d0eb15db-dd1c-4d1d-b200-b12dd6cd060c\"},{\"properties\":{\"displayName\":\"Add or replace a tag on resource groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Adds or replaces the specified tag and value when any resource group is created or updated. Existing resource groups can be remediated by triggering a remediation task.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions/resourceGroups\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"notEquals\":\"[parameters('tagValue')]\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"addOrReplace\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[parameters('tagValue')]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d157c373-a6c4-483d-aaad-570756956268\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d157c373-a6c4-483d-aaad-570756956268\"},{\"properties\":{\"displayName\":\"Enforce SSL connection should be enabled for PostgreSQL database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any PostgreSQL server that is not enforcing SSL connection. Azure Database for PostgreSQL prefers connecting your client applications to the PostgreSQL service using Secure Sockets Layer (SSL). Enforcing SSL connections between your database server and your client applications helps protect against 'man-in-the-middle' attacks by encrypting the data stream between the server and your application\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},{\"field\":\"Microsoft.DBforPostgreSQL/servers/sslEnforcement\",\"exists\":\"true\"},{\"field\":\"Microsoft.DBforPostgreSQL/servers/sslEnforcement\",\"notEquals\":\"Enabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d158790f-bfb0-486c-8631-2dc6b4e8e6af\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d158790f-bfb0-486c-8631-2dc6b4e8e6af\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1620 - Denial Of Service Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1620\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d17c826b-1dec-43e1-a984-7b71c446649c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d17c826b-1dec-43e1-a984-7b71c446649c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1409 - Maintenance Tools | Prevent Unauthorized Removal\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1409\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d1880188-e51a-4772-b2ab-68f5e8bd27f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d1880188-e51a-4772-b2ab-68f5e8bd27f6\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Function Apps that are not using custom domains\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use of custom domains protects a Function app from common attacks such as phishing and other DNS-related attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"functionapp\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UsedCustomDomains\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d1cb47db-b7a1-4c46-814e-aad1c0e84f3c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d1cb47db-b7a1-4c46-814e-aad1c0e84f3c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1195 - Configuration Change Control | Automated Document / Notification / Prohibition Of Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1195\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d1e1d65c-1013-4484-bd54-991332e6a0d2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d1e1d65c-1013-4484-bd54-991332e6a0d2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1721 - Spam Protection | Central Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1721\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d207aaef-7c4d-4f8c-9dce-4d62dfa3d29a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d207aaef-7c4d-4f8c-9dce-4d62dfa3d29a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1106 - Audit Events | Reviews And Updates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1106\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d2b4feae-61ab-423f-a4c5-0e38ac4464d8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d2b4feae-61ab-423f-a4c5-0e38ac4464d8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1030 - Information Flow Enforcement | Physical / Logical Separation Of Information Flows\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1030\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d3531453-b869-4606-9122-29c1cd6e7ed1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d3531453-b869-4606-9122-29c1cd6e7ed1\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs on which the DSC configuration is not compliant\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows VMs on which the Desired State Configuration (DSC) configuration is not compliant. This policy is only applicable to machines with WMF 4 and above. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDscConfiguration\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsDscConfiguration\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d38b4c26-9d2e-47d7-aefe-18d859a8706a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d38b4c26-9d2e-47d7-aefe-18d859a8706a\"},{\"properties\":{\"displayName\":\"Long-term geo-redundant backup should be enabled for Azure SQL Databases\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Azure SQL Database with long-term geo-redundant backup not enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers/databases\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies\",\"name\":\"default\",\"existenceCondition\":{\"anyOf\":[{\"field\":\"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies/weeklyRetention\",\"notEquals\":\"PT0S\"},{\"field\":\"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies/monthlyRetention\",\"notEquals\":\"PT0S\"},{\"field\":\"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies/yearlyRetention\",\"notEquals\":\"PT0S\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d38fc420-0735-4ef3-ac11-c806f651a570\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d38fc420-0735-4ef3-ac11-c806f651a570\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1641 - Transmission Confidentiality And Integrity | Cryptographic Or Alternate Physical Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1641\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d39d4f68-7346-4133-8841-15318a714a24\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d39d4f68-7346-4133-8841-15318a714a24\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1249 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1249\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d3bf4251-0818-42db-950b-afd5b25a51c2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d3bf4251-0818-42db-950b-afd5b25a51c2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1562 - Allocation Of Resources\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1562\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d4142013-7964-4163-a313-a900301c2cef\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d4142013-7964-4163-a313-a900301c2cef\"},{\"properties\":{\"displayName\":\"Virtual machines should be connected to an approved virtual network\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any virtual machine connected to a virtual network that is not approved.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"virtualNetworkId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Virtual network Id\",\"description\":\"Resource Id of the virtual network. Example: /subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Network/virtualNetworks/Name\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkInterfaces\"},{\"not\":{\"field\":\"Microsoft.Network/networkInterfaces/ipconfigurations[*].subnet.id\",\"like\":\"[concat(parameters('virtualNetworkId'),'/*')]\"}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d416745a-506c-48b6-8ab1-83cb814bcaa3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d416745a-506c-48b6-8ab1-83cb814bcaa3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1383 - Incident Response Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1383\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d4558451-e16a-4d2d-a066-fe12a6282bb9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d4558451-e16a-4d2d-a066-fe12a6282bb9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1112 - Response To Audit Processing Failures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1112\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d530aad8-4ee2-45f4-b234-c061dae683c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d530aad8-4ee2-45f4-b234-c061dae683c0\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Data Lake Analytics to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Data Lake Analytics to stream to a regional Log Analytics workspace when any Data Lake Analytics which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeAnalytics/accounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.DataLakeAnalytics/accounts/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"Audit\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Requests\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d56a5a7c-72d7-42bc-8ceb-3baf4c0eae03\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d56a5a7c-72d7-42bc-8ceb-3baf4c0eae03\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1585 - Security Engineering Principles\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1585\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d57f8732-5cdc-4cda-8d27-ab148e1f3a55\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d57f8732-5cdc-4cda-8d27-ab148e1f3a55\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1667 - System And Information Integrity Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1667\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d61880dc-6e38-4f2a-a30c-3406a98f8220\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d61880dc-6e38-4f2a-a30c-3406a98f8220\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1150 - Security Assessments | External Organizations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1150\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d630429d-e763-40b1-8fba-d20ba7314afb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d630429d-e763-40b1-8fba-d20ba7314afb\"},{\"properties\":{\"displayName\":\"Event Hub should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Event Hub not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.EventHub/namespaces\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.EventHub/namespaces/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.EventHub/namespaces/virtualNetworkRules/virtualNetworkSubnetId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d63edb4a-c612-454d-b47d-191a724fcbf0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d63edb4a-c612-454d-b47d-191a724fcbf0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1549 - Vulnerability Scanning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1549\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d6976a08-d969-4df2-bb38-29556c2eb48a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d6976a08-d969-4df2-bb38-29556c2eb48a\"},{\"properties\":{\"displayName\":\"[Preview]: Log Analytics agent should be installed on your Windows Azure Arc machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits Windows Azure Arc machines if the Log Analytics agent is not installed.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Monitoring\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.HybridCompute/machines/extensions/type\",\"equals\":\"MicrosoftMonitoringAgent\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d69b1763-b96d-40b8-a2d9-ca31e9fd0d3e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d69b1763-b96d-40b8-a2d9-ca31e9fd0d3e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1473 - Emergency Power\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1473\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d7047705-d719-46a7-8bb0-76ad233eba71\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d7047705-d719-46a7-8bb0-76ad233eba71\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1529 - Third-Party Personnel Security\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1529\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d74fdc92-1cb8-4a34-9978-8556425cd14c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d74fdc92-1cb8-4a34-9978-8556425cd14c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1350 - Identification And Authentication (Non-Org. Users) | Use Of FICAM-Issued Profiles\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1350\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d77fd943-6ba6-4a21-ba07-22b03e347cc4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d77fd943-6ba6-4a21-ba07-22b03e347cc4\"},{\"properties\":{\"displayName\":\"Show audit results from Windows Server VMs on which Windows Serial Console is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows Server virtual machines on which Windows Serial Console is not enabled. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsSerialConsole\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d7ccd0ca-8d78-42af-a43d-6b7f928accbc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d7ccd0ca-8d78-42af-a43d-6b7f928accbc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1016 - Account Management | Automated Audit Actions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1016\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d8b43277-512e-40c3-ab00-14b3b6e72238\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d8b43277-512e-40c3-ab00-14b3b6e72238\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1488 - Alternate Work Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1488\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d8ef30eb-a44f-47af-8524-ac19a36d41d2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d8ef30eb-a44f-47af-8524-ac19a36d41d2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1577 - Acquisition Process | Continuous Monitoring Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1577\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d922484a-8cfc-4a6b-95a4-77d6a685407f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d922484a-8cfc-4a6b-95a4-77d6a685407f\"},{\"properties\":{\"displayName\":\"Public network access should be disabled for MySQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MySQL servers in your environment with public network access enabled. For more details, visit https://go.microsoft.com/fwlink/?linkid=2120014.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforMySQL/servers\"},{\"field\":\"Microsoft.DBforMySQL/servers/publicNetworkAccess\",\"notEquals\":\"Disabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d9844e8a-1437-4aeb-a32c-0c992f056095\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d9844e8a-1437-4aeb-a32c-0c992f056095\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1271 - Alternate Storage Site | Accessibility\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1271\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/da3bfb53-9c46-4010-b3db-a7ba1296dada\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"da3bfb53-9c46-4010-b3db-a7ba1296dada\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1516 - Personnel Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1516\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/da3cd269-156f-435b-b472-c3af34c032ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"da3cd269-156f-435b-b472-c3af34c032ed\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Batch Account to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Batch Account to stream to a regional Event Hub when any Batch Account which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Batch Accounts in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Batch/batchAccounts/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"ServiceLog\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/db51110f-0865-4a6e-b274-e2e07a5b2cd7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"db51110f-0865-4a6e-b274-e2e07a5b2cd7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1277 - Alternate Processing Site | Priority Of Service\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1277\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dc43e829-3d50-4a0a-aa0f-428d551862aa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dc43e829-3d50-4a0a-aa0f-428d551862aa\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1439 - Media Sanitization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1439\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dce72873-c5f1-47c3-9b4f-6b8207fd5a45\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dce72873-c5f1-47c3-9b4f-6b8207fd5a45\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1264 - Contingency Plan Testing | Coordinate With Related Plans\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1264\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd280d4b-50a1-42fb-a479-ece5878acf19\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd280d4b-50a1-42fb-a479-ece5878acf19\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Applications that are not using custom domains\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use of custom domains protects a web application from common attacks such as phishing and other DNS-related attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UsedCustomDomains\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd2ea520-6b06-45c3-806e-ea297c23e06a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd2ea520-6b06-45c3-806e-ea297c23e06a\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Policy Change'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Policy Change'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesPolicyChange\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd4680ed-0559-4a6a-ad10-081d14cbb484\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd4680ed-0559-4a6a-ad10-081d14cbb484\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1715 - Software, Firmware, And Information Integrity | Automated Response To Integrity Violations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1715\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd469ae0-71a8-4adc-aafc-de6949ca3339\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd469ae0-71a8-4adc-aafc-de6949ca3339\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1678 - Malicious Code Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1678\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd533cb0-b416-4be7-8e86-4d154824dfd7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd533cb0-b416-4be7-8e86-4d154824dfd7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1391 - Information Spillage Response | Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1391\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd6ac1a1-660e-4810-baa8-74e868e2ed47\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd6ac1a1-660e-4810-baa8-74e868e2ed47\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1146 - Security Assessments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1146\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd83410c-ecb6-4547-8f14-748c3cbdc7ac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd83410c-ecb6-4547-8f14-748c3cbdc7ac\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1602 - Developer Security Testing And Evaluation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1602\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ddae2e97-a449-499f-a1c8-aea4a7e52ec9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ddae2e97-a449-499f-a1c8-aea4a7e52ec9\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Settings - Account Policies'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Settings - Account Policies'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecuritySettingsAccountPolicies\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ddb53c61-9db4-41d4-a953-2abff5b66c12\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ddb53c61-9db4-41d4-a953-2abff5b66c12\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Recovery console'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Recovery console'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Recovery console: Allow floppy copy and access to all drives and all folders\",\"description\":\"Specifies whether to make the Recovery Console SET command available, which allows setting of recovery console environment variables.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsRecoveryconsole\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Recovery console: Allow floppy copy and access to all drives and all folders;ExpectedValue', '=', parameters('RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsRecoveryconsole\"},\"RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders\":{\"value\":\"[parameters('RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Recovery console: Allow floppy copy and access to all drives and all folders;ExpectedValue\",\"value\":\"[parameters('RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Recovery console: Allow floppy copy and access to all drives and all folders;ExpectedValue\",\"value\":\"[parameters('RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ddc0a4d5-5e08-43d5-9fd9-b586d8d7116b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ddc0a4d5-5e08-43d5-9fd9-b586d8d7116b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1689 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1689\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/de901f2f-a01a-4456-97f0-33cda7966172\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"de901f2f-a01a-4456-97f0-33cda7966172\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy Dependency agent to hybrid Linux Azure Arc machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Dependency agent to Linux Azure Arc machines if the agent isn't installed.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Monitoring\",\"preview\":true},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.HybridCompute/machines/extensions/type\",\"equals\":\"DependencyAgentLinux\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"DependencyAgent\",\"vmExtensionPublisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"vmExtensionType\":\"DependencyAgentLinux\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2019-12-12\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"settings\":{}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled DA extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/deacecc0-9f84-44d2-bb82-46f32d766d43\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"deacecc0-9f84-44d2-bb82-46f32d766d43\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1528 - Access Agreements\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1528\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/deb9797c-22f8-40e8-b342-a84003c924e6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"deb9797c-22f8-40e8-b342-a84003c924e6\"},{\"properties\":{\"displayName\":\"MariaDB server should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MariaDB servers not configured to use a virtual network service endpoint. For more details, visit https://aka.ms/mariadbvirtualnetwork.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforMariaDB/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules/virtualNetworkSubnetId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dfbd9a64-6114-48de-a47d-90574dc2e489\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dfbd9a64-6114-48de-a47d-90574dc2e489\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1673 - Flaw Remediation | Automated Flaw Remediation Status\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1673\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dff0b90d-5a6f-491c-b2f8-b90aa402d844\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dff0b90d-5a6f-491c-b2f8-b90aa402d844\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation only in Japan data centers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation in the following locations only: Japan East, Japan West\",\"metadata\":{\"category\":\"General\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"japaneast\",\"japanwest\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e01598e8-6538-41ed-95e8-8b29746cd697\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e01598e8-6538-41ed-95e8-8b29746cd697\"},{\"properties\":{\"displayName\":\"Cosmos DB should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Cosmos DB not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DocumentDB/databaseAccounts\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/virtualNetworkRules[*].id\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e0a2b1a3-f7f9-4569-807f-2a9edebdf4d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e0a2b1a3-f7f9-4569-807f-2a9edebdf4d9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1206 - Access Restrictions For Change | Limit Production / Operational Privileges\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1206\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e0de232d-02a0-4652-872d-88afb4ae5e91\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e0de232d-02a0-4652-872d-88afb4ae5e91\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not have the specified Windows PowerShell execution policy\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines where Windows PowerShell is not configured to use the specified PowerShell execution policy. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"ExecutionPolicy\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"PowerShell Execution Policy\",\"description\":\"The expected PowerShell execution policy.\"},\"allowedValues\":[\"AllSigned\",\"Bypass\",\"Default\",\"RemoteSigned\",\"Restricted\",\"Undefined\",\"Unrestricted\"]}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsPowerShellExecutionPolicy\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[PowerShellExecutionPolicy]PowerShellExecutionPolicy1;ExecutionPolicy', '=', parameters('ExecutionPolicy')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsPowerShellExecutionPolicy\"},\"ExecutionPolicy\":{\"value\":\"[parameters('ExecutionPolicy')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"ExecutionPolicy\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[PowerShellExecutionPolicy]PowerShellExecutionPolicy1;ExecutionPolicy\",\"value\":\"[parameters('ExecutionPolicy')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[PowerShellExecutionPolicy]PowerShellExecutionPolicy1;ExecutionPolicy\",\"value\":\"[parameters('ExecutionPolicy')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e0efc13a-122a-47c5-b817-2ccfe5d12615\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e0efc13a-122a-47c5-b817-2ccfe5d12615\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1714 - Software, Firmware, And Information Integrity | Automated Notifications Of Integrity Violations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1714\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e12494fa-b81e-4080-af71-7dbacc2da0ec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e12494fa-b81e-4080-af71-7dbacc2da0ec\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1686 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1686\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e17085c5-0be8-4423-b39b-a52d3d1402e5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e17085c5-0be8-4423-b39b-a52d3d1402e5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1722 - Spam Protection | Automatic Updates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1722\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e1da06bd-25b6-4127-a301-c313d6873fff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e1da06bd-25b6-4127-a301-c313d6873fff\"},{\"properties\":{\"displayName\":\"Vulnerabilities in security configuration on your machines should be remediated\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Servers which do not satisfy the configured baseline will be monitored by Azure Security Center as recommendations\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"osVulnerabilities\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e1e5fd5d-3e4c-4ce1-8661-7d1873ae6b15\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e1e5fd5d-3e4c-4ce1-8661-7d1873ae6b15\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1047 - System Use Notification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1047\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e1ff6d62-a55c-41ab-90ba-90bb5b7b6f62\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e1ff6d62-a55c-41ab-90ba-90bb5b7b6f62\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1276 - Alternate Processing Site | Accessibility\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1276\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e214e563-1206-4a43-a56b-ac5880c9c571\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e214e563-1206-4a43-a56b-ac5880c9c571\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1560 - System And Services Acquisition Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1560\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e29e0915-5c2f-4d09-8806-048b749ad763\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e29e0915-5c2f-4d09-8806-048b749ad763\"},{\"properties\":{\"displayName\":\"Ensure that 'HTTP Version' is the latest, if used to run the Function app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for HTTP either due to security flaws or to include additional functionality. Using the latest HTTP version for web apps to take advantage of security fixes, if any, and/or new functionalities of the newer version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.http20Enabled\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e2c1c086-2d84-4019-bff3-c44ccd95113c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e2c1c086-2d84-4019-bff3-c44ccd95113c\"},{\"properties\":{\"displayName\":\"Audit Dependency agent deployment in virtual machine scale sets - VM Image (OS) unlisted\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Reports virtual machine scale sets as non-compliant if the VM Image (OS) is not in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude_windows\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]},\"listOfImageIdToInclude_linux\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"not\":{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_windows')]\"},{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_linux')]\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"12-SP2\",\"12-SP3\",\"12-SP4\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"14.04.0-LTS\",\"14.04.1-LTS\",\"14.04.5-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"16.04-LTS\",\"16.04.0-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"18.04-LTS\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Centos\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"existenceCondition\":{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e2dd799a-a932-4e9d-ac17-d473bc3c6c10\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e2dd799a-a932-4e9d-ac17-d473bc3c6c10\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1161 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1161\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e2f8f6c6-dde4-436b-a79d-bc50e129eb3a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e2f8f6c6-dde4-436b-a79d-bc50e129eb3a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1387 - Information Spillage Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1387\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e3007185-3857-43a9-8237-06ca94f1084c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e3007185-3857-43a9-8237-06ca94f1084c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1479 - Fire Protection | Automatic Fire Suppression\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1479\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e327b072-281d-4f75-9c28-4216e5d72f26\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e327b072-281d-4f75-9c28-4216e5d72f26\"},{\"properties\":{\"displayName\":\"Azure VPN gateways should not use 'basic' SKU\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy ensures that VPN gateways do not use 'basic' SKU.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworkGateways\"},{\"field\":\"Microsoft.Network/virtualNetworkGateways/gatewayType\",\"equals\":\"Vpn\"},{\"field\":\"Microsoft.Network/virtualNetworkGateways/sku.tier\",\"equals\":\"Basic\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e345b6c3-24bd-4c93-9bbb-7e5e49a17b78\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e345b6c3-24bd-4c93-9bbb-7e5e49a17b78\"},{\"properties\":{\"displayName\":\"MFA should be enabled on accounts with read permissions on your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Multi-Factor Authentication (MFA) should be enabled for all subscription accounts with read privileges to prevent a breach of accounts or resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"EnableMFAForReadPermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e3576e28-8b17-4677-84c3-db2990658d64\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e3576e28-8b17-4677-84c3-db2990658d64\"},{\"properties\":{\"displayName\":\"RDP access from the Internet should be blocked\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits any network security rule that allows RDP access from Internet\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups/securityRules\"},{\"allOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Allow\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"},{\"anyOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange\",\"equals\":\"*\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange\",\"equals\":\"3389\"},{\"value\":\"[if(and(not(empty(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'))), contains(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'),'-')), and(lessOrEquals(int(first(split(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'), '-'))),3389),greaterOrEquals(int(last(split(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'), '-'))),3389)), 'false')]\",\"equals\":\"true\"},{\"count\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\"where\":{\"value\":\"[if(and(not(empty(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')))), contains(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')),'-')), and(lessOrEquals(int(first(split(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')), '-'))),3389),greaterOrEquals(int(last(split(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')), '-'))),3389)) , 'false')]\",\"equals\":\"true\"}},\"greater\":0},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\"notEquals\":\"*\"}},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\"notEquals\":\"3389\"}}]},{\"anyOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"*\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Internet\"},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefixes[*]\",\"notEquals\":\"*\"}},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefixes[*]\",\"notEquals\":\"Internet\"}}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e372f825-a257-4fb8-9175-797a8a8627d6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e372f825-a257-4fb8-9175-797a8a8627d6\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Shutdown'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Shutdown'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsShutdown\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e3a77a94-cf41-4ee8-b45c-98be28841c03\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e3a77a94-cf41-4ee8-b45c-98be28841c03\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Settings - Account Policies'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Settings - Account Policies'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"EnforcePasswordHistory\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enforce password history\",\"description\":\"Specifies limits on password reuse - how many times a new password must be created for a user account before the password can be repeated.\"},\"defaultValue\":\"24\"},\"MaximumPasswordAge\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Maximum password age\",\"description\":\"Specifies the maximum number of days that may elapse before a user account password must be changed. The format of the value is two integers separated by a comma, denoting an inclusive range.\"},\"defaultValue\":\"1,70\"},\"MinimumPasswordAge\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Minimum password age\",\"description\":\"Specifies the minimum number of days that must elapse before a user account password can be changed.\"},\"defaultValue\":\"1\"},\"MinimumPasswordLength\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Minimum password length\",\"description\":\"Specifies the minimum number of characters that a user account password may contain.\"},\"defaultValue\":\"14\"},\"PasswordMustMeetComplexityRequirements\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Password must meet complexity requirements\",\"description\":\"Specifies whether a user account password must be complex. If required, a complex password must not contain part of user's account name or full name; be at least 6 characters long; contain a mix of uppercase, lowercase, number, and non-alphabetic characters.\"},\"defaultValue\":\"1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecuritySettingsAccountPolicies\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Enforce password history;ExpectedValue', '=', parameters('EnforcePasswordHistory'), ',', 'Maximum password age;ExpectedValue', '=', parameters('MaximumPasswordAge'), ',', 'Minimum password age;ExpectedValue', '=', parameters('MinimumPasswordAge'), ',', 'Minimum password length;ExpectedValue', '=', parameters('MinimumPasswordLength'), ',', 'Password must meet complexity requirements;ExpectedValue', '=', parameters('PasswordMustMeetComplexityRequirements')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecuritySettingsAccountPolicies\"},\"EnforcePasswordHistory\":{\"value\":\"[parameters('EnforcePasswordHistory')]\"},\"MaximumPasswordAge\":{\"value\":\"[parameters('MaximumPasswordAge')]\"},\"MinimumPasswordAge\":{\"value\":\"[parameters('MinimumPasswordAge')]\"},\"MinimumPasswordLength\":{\"value\":\"[parameters('MinimumPasswordLength')]\"},\"PasswordMustMeetComplexityRequirements\":{\"value\":\"[parameters('PasswordMustMeetComplexityRequirements')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"EnforcePasswordHistory\":{\"type\":\"string\"},\"MaximumPasswordAge\":{\"type\":\"string\"},\"MinimumPasswordAge\":{\"type\":\"string\"},\"MinimumPasswordLength\":{\"type\":\"string\"},\"PasswordMustMeetComplexityRequirements\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Enforce password history;ExpectedValue\",\"value\":\"[parameters('EnforcePasswordHistory')]\"},{\"name\":\"Maximum password age;ExpectedValue\",\"value\":\"[parameters('MaximumPasswordAge')]\"},{\"name\":\"Minimum password age;ExpectedValue\",\"value\":\"[parameters('MinimumPasswordAge')]\"},{\"name\":\"Minimum password length;ExpectedValue\",\"value\":\"[parameters('MinimumPasswordLength')]\"},{\"name\":\"Password must meet complexity requirements;ExpectedValue\",\"value\":\"[parameters('PasswordMustMeetComplexityRequirements')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Enforce password history;ExpectedValue\",\"value\":\"[parameters('EnforcePasswordHistory')]\"},{\"name\":\"Maximum password age;ExpectedValue\",\"value\":\"[parameters('MaximumPasswordAge')]\"},{\"name\":\"Minimum password age;ExpectedValue\",\"value\":\"[parameters('MinimumPasswordAge')]\"},{\"name\":\"Minimum password length;ExpectedValue\",\"value\":\"[parameters('MinimumPasswordLength')]\"},{\"name\":\"Password must meet complexity requirements;ExpectedValue\",\"value\":\"[parameters('PasswordMustMeetComplexityRequirements')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e3d95ab7-f47a-49d8-a347-784177b6c94c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e3d95ab7-f47a-49d8-a347-784177b6c94c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1451 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1451\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e3f1e5a3-25c1-4476-8cb6-3955031f8e65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e3f1e5a3-25c1-4476-8cb6-3955031f8e65\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1357 - Incident Response Training | Automated Training Environments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1357\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e4213689-05e8-4241-9d4e-8dd1cdafd105\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e4213689-05e8-4241-9d4e-8dd1cdafd105\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - User Account Control'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - User Account Control'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"UACAdminApprovalModeForTheBuiltinAdministratorAccount\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"UAC: Admin Approval Mode for the Built-in Administrator account\",\"description\":\"Specifies the behavior of Admin Approval Mode for the built-in Administrator account.\"},\"defaultValue\":\"1\"},\"UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"UAC: Behavior of the elevation prompt for administrators in Admin Approval Mode\",\"description\":\"Specifies the behavior of the elevation prompt for administrators.\"},\"defaultValue\":\"2\"},\"UACDetectApplicationInstallationsAndPromptForElevation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"UAC: Detect application installations and prompt for elevation\",\"description\":\"Specifies the behavior of application installation detection for the computer.\"},\"defaultValue\":\"1\"},\"UACRunAllAdministratorsInAdminApprovalMode\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"UAC: Run all administrators in Admin Approval Mode\",\"description\":\"Specifies the behavior of all User Account Control (UAC) policy settings for the computer.\"},\"defaultValue\":\"1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsUserAccountControl\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('User Account Control: Admin Approval Mode for the Built-in Administrator account;ExpectedValue', '=', parameters('UACAdminApprovalModeForTheBuiltinAdministratorAccount'), ',', 'User Account Control: Behavior of the elevation prompt for administrators in Admin Approval Mode;ExpectedValue', '=', parameters('UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode'), ',', 'User Account Control: Detect application installations and prompt for elevation;ExpectedValue', '=', parameters('UACDetectApplicationInstallationsAndPromptForElevation'), ',', 'User Account Control: Run all administrators in Admin Approval Mode;ExpectedValue', '=', parameters('UACRunAllAdministratorsInAdminApprovalMode')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsUserAccountControl\"},\"UACAdminApprovalModeForTheBuiltinAdministratorAccount\":{\"value\":\"[parameters('UACAdminApprovalModeForTheBuiltinAdministratorAccount')]\"},\"UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode\":{\"value\":\"[parameters('UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode')]\"},\"UACDetectApplicationInstallationsAndPromptForElevation\":{\"value\":\"[parameters('UACDetectApplicationInstallationsAndPromptForElevation')]\"},\"UACRunAllAdministratorsInAdminApprovalMode\":{\"value\":\"[parameters('UACRunAllAdministratorsInAdminApprovalMode')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"UACAdminApprovalModeForTheBuiltinAdministratorAccount\":{\"type\":\"string\"},\"UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode\":{\"type\":\"string\"},\"UACDetectApplicationInstallationsAndPromptForElevation\":{\"type\":\"string\"},\"UACRunAllAdministratorsInAdminApprovalMode\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"User Account Control: Admin Approval Mode for the Built-in Administrator account;ExpectedValue\",\"value\":\"[parameters('UACAdminApprovalModeForTheBuiltinAdministratorAccount')]\"},{\"name\":\"User Account Control: Behavior of the elevation prompt for administrators in Admin Approval Mode;ExpectedValue\",\"value\":\"[parameters('UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode')]\"},{\"name\":\"User Account Control: Detect application installations and prompt for elevation;ExpectedValue\",\"value\":\"[parameters('UACDetectApplicationInstallationsAndPromptForElevation')]\"},{\"name\":\"User Account Control: Run all administrators in Admin Approval Mode;ExpectedValue\",\"value\":\"[parameters('UACRunAllAdministratorsInAdminApprovalMode')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"User Account Control: Admin Approval Mode for the Built-in Administrator account;ExpectedValue\",\"value\":\"[parameters('UACAdminApprovalModeForTheBuiltinAdministratorAccount')]\"},{\"name\":\"User Account Control: Behavior of the elevation prompt for administrators in Admin Approval Mode;ExpectedValue\",\"value\":\"[parameters('UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode')]\"},{\"name\":\"User Account Control: Detect application installations and prompt for elevation;ExpectedValue\",\"value\":\"[parameters('UACDetectApplicationInstallationsAndPromptForElevation')]\"},{\"name\":\"User Account Control: Run all administrators in Admin Approval Mode;ExpectedValue\",\"value\":\"[parameters('UACRunAllAdministratorsInAdminApprovalMode')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e425e402-a050-45e5-b010-bd3f934589fc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e425e402-a050-45e5-b010-bd3f934589fc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1340 - Authenticator Management | No Embedded Unencrypted Static Authenticators\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1340\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e51ff84b-e5ea-408f-b651-2ecc2933e4c6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e51ff84b-e5ea-408f-b651-2ecc2933e4c6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1381 - Incident Response Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1381\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e5368258-9684-4567-8126-269f34e65eab\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e5368258-9684-4567-8126-269f34e65eab\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1421 - Maintenance Personnel\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1421\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e539caaa-da8c-41b8-9e1e-449851e2f7a6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e539caaa-da8c-41b8-9e1e-449851e2f7a6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1716 - Software, Firmware, And Information Integrity | Integration Of Detection And Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1716\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e54c325e-42a0-4dcf-b105-046e0f6f590f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e54c325e-42a0-4dcf-b105-046e0f6f590f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1023 - Account Management | Usage Conditions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1023\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e55698b6-3dea-4aa9-99b9-d8218c6ab6e5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e55698b6-3dea-4aa9-99b9-d8218c6ab6e5\"},{\"properties\":{\"displayName\":\"Allowed locations\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables you to restrict the locations your organization can specify when deploying resources. Use to enforce your geo-compliance requirements. Excludes resource groups, Microsoft.AzureActiveDirectory/b2cDirectories, and resources that use the 'global' region.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"General\"},\"parameters\":{\"listOfAllowedLocations\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\",\"displayName\":\"Allowed locations\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"notIn\":\"[parameters('listOfAllowedLocations')]\"},{\"field\":\"location\",\"notEquals\":\"global\"},{\"field\":\"type\",\"notEquals\":\"Microsoft.AzureActiveDirectory/b2cDirectories\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e56962a6-4747-49cd-b67b-bf8b01975c4c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e56962a6-4747-49cd-b67b-bf8b01975c4c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1296 - Information System Recovery And Reconstitution | Transaction Recovery\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1296\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e57b98a0-a011-4956-a79d-5d17ed8b8e48\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e57b98a0-a011-4956-a79d-5d17ed8b8e48\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1499 - Rules Of Behavior\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1499\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e59671ab-9720-4ee2-9c60-170e8c82251e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e59671ab-9720-4ee2-9c60-170e8c82251e\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Accounts'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Accounts'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AccountsGuestAccountStatus\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Accounts: Guest account status\",\"description\":\"Specifies whether the local Guest account is disabled.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsAccounts\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Accounts: Guest account status;ExpectedValue', '=', parameters('AccountsGuestAccountStatus')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsAccounts\"},\"AccountsGuestAccountStatus\":{\"value\":\"[parameters('AccountsGuestAccountStatus')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AccountsGuestAccountStatus\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Accounts: Guest account status;ExpectedValue\",\"value\":\"[parameters('AccountsGuestAccountStatus')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Accounts: Guest account status;ExpectedValue\",\"value\":\"[parameters('AccountsGuestAccountStatus')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e5b81f87-9185-4224-bf00-9f505e9f89f3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e5b81f87-9185-4224-bf00-9f505e9f89f3\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Applications that are not using latest supported Node.js Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported Node.js version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestNodeJS\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e67687e8-08d5-4e7f-8226-5b4753bba008\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e67687e8-08d5-4e7f-8226-5b4753bba008\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1465 - Monitoring Physical Access | Monitoring Physical Access To Information Systems\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1465\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e6e41554-86b5-4537-9f7f-4fc41a1d1640\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e6e41554-86b5-4537-9f7f-4fc41a1d1640\"},{\"properties\":{\"displayName\":\"Subnets should be associated with a Network Security Group\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Protect your subnet from potential threats by restricting access to it with a Network Security Group (NSG). NSGs contain a list of Access Control List (ACL) rules that allow or deny network traffic to your subnet.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"networkSecurityGroupsOnSubnets\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"NotApplicable\",\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e71308d3-144b-4262-b144-efdc3cc90517\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e71308d3-144b-4262-b144-efdc3cc90517\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1567 - System Development Life Cycle\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1567\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e72edbf6-aa61-436d-a227-0f32b77194b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e72edbf6-aa61-436d-a227-0f32b77194b3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1311 - Identifier Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1311\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e7568697-0c9e-4ea3-9cec-9e567d14f3c6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e7568697-0c9e-4ea3-9cec-9e567d14f3c6\"},{\"properties\":{\"displayName\":\"[Deprecated]: Advanced Threat Protection types should be set to 'All' in SQL server Advanced Data Security settings\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"It is recommended to enable all Advanced Threat Protection types on your SQL servers. Enabling all types protects against SQL injection, database vulnerabilities, and any other anomalous activities.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/securityAlertPolicies/disabledAlerts[*]\",\"equals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e756b945-1b1b-480b-8de8-9a0859d5f7ad\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e756b945-1b1b-480b-8de8-9a0859d5f7ad\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1154 - System Interconnections | Unclassified Non-National Security System Connections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1154\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e757ceb9-93b3-45fe-a4f4-f43f64f1ac5a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e757ceb9-93b3-45fe-a4f4-f43f64f1ac5a\"},{\"properties\":{\"displayName\":\"Allowed locations for resource groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy enables you to restrict the locations your organization can create resource groups in. Use to enforce your geo-compliance requirements.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"General\"},\"parameters\":{\"listOfAllowedLocations\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of locations that resource groups can be created in.\",\"strongType\":\"location\",\"displayName\":\"Allowed locations\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions/resourceGroups\"},{\"field\":\"location\",\"notIn\":\"[parameters('listOfAllowedLocations')]\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e765b5de-1225-4ba3-bd56-1ac6695af988\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e765b5de-1225-4ba3-bd56-1ac6695af988\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1273 - Alternate Processing Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1273\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e77fcbf2-a1e8-44f1-860e-ed6583761e65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e77fcbf2-a1e8-44f1-860e-ed6583761e65\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Sockets state for a Web Application\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"The Web Sockets protocol is vulnerable to different types of security threats. Use of Web Sockets within a web application must be carefully reviewed.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"DisableWebSockets\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e797f851-8be7-4c40-bb56-2e3395215b0e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e797f851-8be7-4c40-bb56-2e3395215b0e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1169 - Continuous Monitoring | Trend Analyses\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1169\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e7ba2cb3-5675-4468-8b50-8486bdd998a5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e7ba2cb3-5675-4468-8b50-8486bdd998a5\"},{\"properties\":{\"displayName\":\"Enforce SSL connection should be enabled for MySQL database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any MySQL server that is not enforcing SSL connection. Azure Database for MySQL supports connecting your Azure Database for MySQL server to client applications using Secure Sockets Layer (SSL). Enforcing SSL connections between your database server and your client applications helps protect against 'man in the middle' attacks by encrypting the data stream between the server and your application.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforMySQL/servers\"},{\"field\":\"Microsoft.DBforMySQL/servers/sslEnforcement\",\"exists\":\"true\"},{\"field\":\"Microsoft.DBforMySQL/servers/sslEnforcement\",\"notEquals\":\"Enabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e802a67a-daf5-4436-9ea6-f6d821dd0c5d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e802a67a-daf5-4436-9ea6-f6d821dd0c5d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1237 - Software Usage Restrictions | Open Source Software\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1237\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e80b6812-0bfa-4383-8223-cdd86a46a890\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e80b6812-0bfa-4383-8223-cdd86a46a890\"},{\"properties\":{\"displayName\":\"Vulnerabilities in container security configurations should be remediated\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit vulnerabilities in security configuration on machines with Docker installed and display as recommendations in Azure Security Center.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\",\"Microsoft.Compute/virtualMachineScaleSets\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"ContainerBenchmark\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e8cbc669-f12d-49eb-93e7-9273119e9933\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e8cbc669-f12d-49eb-93e7-9273119e9933\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Data Lake Storage Gen1 to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Data Lake Storage Gen1 to stream to a regional Event Hub when any Data Lake Storage Gen1 which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Data Lake Storage in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeStore/accounts\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.DataLakeStore/accounts/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"Audit\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Requests\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e8d096bc-85de-4c5f-8cfb-857bd1b9d62d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e8d096bc-85de-4c5f-8cfb-857bd1b9d62d\"},{\"properties\":{\"displayName\":\"Container Registries should use private links\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Container Registries that do not have at least one approved private endpoint connection. Clients in a virtual network can securely access resources that have private endpoint connections through private links. For more information, visit: https://aka.ms/acr/private-link.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Container Registry\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerRegistry/registries\"},{\"count\":{\"field\":\"Microsoft.ContainerRegistry/registries/privateEndpointConnections[*]\",\"where\":{\"field\":\"Microsoft.ContainerRegistry/registries/privateEndpointConnections[*].privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}},\"less\":1}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e8eef0a8-67cf-4eb4-9386-14b0e78733d4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e8eef0a8-67cf-4eb4-9386-14b0e78733d4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1626 - Boundary Protection | External Telecommunications Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1626\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e8f6bddd-6d67-439a-88d4-c5fe39a79341\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e8f6bddd-6d67-439a-88d4-c5fe39a79341\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1502 - Rules Of Behavior | Social Media And Networking Restrictions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1502\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e901375c-8f01-4ac8-9183-d5312f47fe63\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e901375c-8f01-4ac8-9183-d5312f47fe63\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1723 - Information Input Validation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1723\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e91927a0-ac1d-44a0-95f8-5185f9dfce9f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e91927a0-ac1d-44a0-95f8-5185f9dfce9f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1200 - Security Impact Analysis\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1200\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e98fe9d7-2ed3-44f8-93b7-24dca69783ff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e98fe9d7-2ed3-44f8-93b7-24dca69783ff\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1487 - Alternate Work Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1487\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e9c3371d-c30c-4f58-abd9-30b8a8199571\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e9c3371d-c30c-4f58-abd9-30b8a8199571\"},{\"properties\":{\"displayName\":\"Remote debugging should be turned off for API Apps\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Remote debugging requires inbound ports to be opened on API apps. Remote debugging should be turned off.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/remoteDebuggingEnabled\",\"equals\":\"false\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e9c8d085-d9cc-4b17-9cdc-059f1f01f19e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e9c8d085-d9cc-4b17-9cdc-059f1f01f19e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1363 - Incident Handling | Automated Incident Handling Processes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1363\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ea3e8156-89a1-45b1-8bd6-938abc79fdfd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ea3e8156-89a1-45b1-8bd6-938abc79fdfd\"},{\"properties\":{\"displayName\":\"Inherit a tag from the resource group if missing\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Adds the specified tag with its value from the parent resource group when any resource missing this tag is created or updated. Existing resources can be remediated by triggering a remediation task. If the tag exists with a different value it will not be changed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagName')]]\",\"notEquals\":\"\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"add\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[resourceGroup().tags[parameters('tagName')]]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ea3f2387-9b95-492a-a190-fcdc54f7b070\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ea3f2387-9b95-492a-a190-fcdc54f7b070\"},{\"properties\":{\"displayName\":\"Key Vault should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Key Vault not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.KeyVault/vaults\"},{\"anyOf\":[{\"field\":\"Microsoft.KeyVault/vaults/networkAcls.defaultAction\",\"notEquals\":\"Deny\"},{\"field\":\"Microsoft.KeyVault/vaults/networkAcls.virtualNetworkRules[*].id\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ea4d6841-2173-4317-9747-ff522a45120f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ea4d6841-2173-4317-9747-ff522a45120f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1422 - Maintenance Personnel\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1422\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ea556850-838d-4a37-8ce5-9d7642f95e11\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ea556850-838d-4a37-8ce5-9d7642f95e11\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1542 - Risk Assessment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1542\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eab340d0-3d55-4826-a0e5-feebfeb0131d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eab340d0-3d55-4826-a0e5-feebfeb0131d\"},{\"properties\":{\"displayName\":\"Ensure Function app has 'Client Certificates (Incoming client certificates)' set to 'On'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Client certificates allow for the app to request a certificate for incoming requests. Only clients that have a valid certificate will be able to reach the app.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"},{\"field\":\"Microsoft.Web/sites/clientCertEnabled\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eaebaea7-8013-4ceb-9d14-7eb32271373c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eaebaea7-8013-4ceb-9d14-7eb32271373c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1064 - Remote Access | Privileged Commands / Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1064\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eb4d9508-cbf0-4a3c-bb5c-6c95b159f3fb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb4d9508-cbf0-4a3c-bb5c-6c95b159f3fb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1321 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1321\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eb627cc6-3a9d-46b5-96b7-5fca49178a37\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb627cc6-3a9d-46b5-96b7-5fca49178a37\"},{\"properties\":{\"displayName\":\"Log checkpoints should be enabled for PostgreSQL database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy helps audit any PostgreSQL databases in your environment without log_checkpoints setting enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\",\"name\":\"log_checkpoints\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/configurations/value\",\"equals\":\"ON\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eb6f77b9-bd53-4e35-a23d-7f65d5f0e43d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb6f77b9-bd53-4e35-a23d-7f65d5f0e43d\"},{\"properties\":{\"displayName\":\"Log connections should be enabled for PostgreSQL database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy helps audit any PostgreSQL databases in your environment without log_connections setting enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\",\"name\":\"log_connections\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/configurations/value\",\"equals\":\"ON\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eb6f77b9-bd53-4e35-a23d-7f65d5f0e442\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb6f77b9-bd53-4e35-a23d-7f65d5f0e442\"},{\"properties\":{\"displayName\":\"Disconnections should be logged for PostgreSQL database servers.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy helps audit any PostgreSQL databases in your environment without log_disconnections enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\",\"name\":\"log_disconnections\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/configurations/value\",\"equals\":\"ON\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eb6f77b9-bd53-4e35-a23d-7f65d5f0e446\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb6f77b9-bd53-4e35-a23d-7f65d5f0e446\"},{\"properties\":{\"displayName\":\"Log duration should be enabled for PostgreSQL database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy helps audit any PostgreSQL databases in your environment without log_duration setting enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\",\"name\":\"log_duration\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/configurations/value\",\"equals\":\"ON\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eb6f77b9-bd53-4e35-a23d-7f65d5f0e8f3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb6f77b9-bd53-4e35-a23d-7f65d5f0e8f3\"},{\"properties\":{\"displayName\":\"Deprecated accounts with owner permissions should be removed from your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Deprecated accounts with owner permissions should be removed from your subscription. Deprecated accounts are accounts that have been blocked from signing in.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"RemoveDeprecatedAccountsWithOwnerPermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ebb62a0c-3560-49e1-89ed-27e074e9f8ad\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ebb62a0c-3560-49e1-89ed-27e074e9f8ad\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Linux VMs that allow remote connections from accounts without passwords\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Linux virtual machines that allow remote connections from accounts without passwords. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordPolicy_msid110\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"PasswordPolicy_msid110\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ec49586f-4939-402d-a29e-6ff502b20592\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ec49586f-4939-402d-a29e-6ff502b20592\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Administrative Templates - Control Panel'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - Control Panel'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdministrativeTemplatesControlPanel\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_AdministrativeTemplatesControlPanel\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ec7ac234-2af5-4729-94d2-c557c071799d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ec7ac234-2af5-4729-94d2-c557c071799d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1241 - User-Installed Software | Alerts For Unauthorized Installations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1241\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eca4d7b2-65e2-4e04-95d4-c68606b063c3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eca4d7b2-65e2-4e04-95d4-c68606b063c3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1622 - Boundary Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1622\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ecf56554-164d-499a-8d00-206b07c27bed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ecf56554-164d-499a-8d00-206b07c27bed\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Key Vault to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Key Vault to stream to a regional Event Hub when any Key Vault which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Key Vault\"},\"parameters\":{\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Key Vaults in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.KeyVault/vaults\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vaultName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"resources\":[{\"type\":\"Microsoft.KeyVault/vaults/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('vaultName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"AuditEvent\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled diagnostic settings for ', parameters('vaultName'))]\"}}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"vaultName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ed7c8c13-51e7-49d1-8a43-8490431a0da2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ed7c8c13-51e7-49d1-8a43-8490431a0da2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1217 - Least Functionality | Periodic Review\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1217\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/edea4f20-b02c-4115-be75-86c080e5c0ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"edea4f20-b02c-4115-be75-86c080e5c0ed\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Stream Analytics to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Stream Analytics to stream to a regional Event Hub when any Stream Analytics which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Stream Analytics in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.StreamAnalytics/streamingjobs\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.StreamAnalytics/streamingjobs/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"Execution\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Authoring\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/edf3780c-3d70-40fe-b17e-ab72013dafca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"edf3780c-3d70-40fe-b17e-ab72013dafca\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1189 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1189\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ee45e02a-4140-416c-82c4-fecfea660b9d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ee45e02a-4140-416c-82c4-fecfea660b9d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1089 - Security Awareness Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1089\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef080e67-0d1a-4f76-a0c5-fb9b0358485e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef080e67-0d1a-4f76-a0c5-fb9b0358485e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1314 - Identifier Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1314\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef0c8530-efd9-45b8-b753-f03083d06295\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef0c8530-efd9-45b8-b753-f03083d06295\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1128 - Time Stamps\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1128\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef212163-3bc4-4e86-bcf8-705127086393\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef212163-3bc4-4e86-bcf8-705127086393\"},{\"properties\":{\"displayName\":\"Vulnerability assessment should be enabled on your SQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Azure SQL servers which do not have recurring vulnerability assessment scans enabled. Vulnerability assessment can discover, track, and help you remediate potential database vulnerabilities.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/vulnerabilityAssessments\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/vulnerabilityAssessments/recurringScans.isEnabled\",\"equals\":\"True\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef2a8f2a-b3d9-49cd-a8a8-9a3aaaf647d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef2a8f2a-b3d9-49cd-a8a8-9a3aaaf647d9\"},{\"properties\":{\"displayName\":\"API Management services should use a virtual network\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Virtual network on API Management services of the specified SKU should be enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"API Management\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"evaluatedSkuNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"API Management SKU Names\",\"description\":\"List of API Management SKUs against which this policy will be evaluated.\"},\"allowedValues\":[\"Developer\",\"Basic\",\"Standard\",\"Premium\",\"Consumption\"],\"defaultValue\":[\"Developer\",\"Premium\"]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ApiManagement/service\"},{\"field\":\"Microsoft.ApiManagement/service/sku.name\",\"in\":\"[parameters('evaluatedSkuNames')]\"},{\"anyOf\":[{\"field\":\"Microsoft.ApiManagement/service/virtualNetworkType\",\"exists\":\"false\"},{\"field\":\"Microsoft.ApiManagement/service/virtualNetworkType\",\"equals\":\"None\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef619a2c-cc4d-4d03-b2ba-8c94a834d85b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef619a2c-cc4d-4d03-b2ba-8c94a834d85b\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Event Hub to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Event Hub to stream to a regional Event Hub when any Event Hub which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Destination Location\",\"description\":\"The location the Event Hub that will get diagnostic data resides in. Only source Event Hubs in this location will be linked to this destination Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.EventHub/namespaces\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.EventHub/namespaces/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"ArchiveLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"OperationalLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"AutoScaleLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"KafkaCoordinatorLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"EventHubVNetConnectionEvent\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"CustomerManagedKeyUserLogs\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef7b61ef-b8e4-4c91-8e78-6946c6b0023f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef7b61ef-b8e4-4c91-8e78-6946c6b0023f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1472 - Emergency Shutoff\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1472\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef869332-921d-4c28-9402-3be73e6e50c8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef869332-921d-4c28-9402-3be73e6e50c8\"},{\"properties\":{\"displayName\":\"The Log Analytics agent should be installed on Virtual Machine Scale Sets\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Windows/Linux Virtual Machine Scale Sets if the Log Analytics agent is not installed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"in\":[\"MicrosoftMonitoringAgent\",\"OmsAgentForLinux\"]},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/provisioningState\",\"equals\":\"Succeeded\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/settings.workspaceId\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/efbde977-ba53-4479-b8e9-10b957924fbf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"efbde977-ba53-4479-b8e9-10b957924fbf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1012 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1012\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/efd7b9ae-1db6-4eb6-b0fe-87e6565f9738\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"efd7b9ae-1db6-4eb6-b0fe-87e6565f9738\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1358 - Incident Response Testing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1358\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/effbaeef-5bf4-400d-895e-ef8cbc0e64c7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"effbaeef-5bf4-400d-895e-ef8cbc0e64c7\"},{\"properties\":{\"displayName\":\"Ensure that Register with Azure Active Directory is enabled on Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Managed service identity in App Service makes the app more secure by eliminating secrets from the app, such as credentials in the connection strings. When registering with Azure Active Directory in the app service, the app will connect to other Azure services securely without the need of username and passwords\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.managedServiceIdentityId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f0473e7a-a1ba-4e86-afb2-e829e11b01d8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f0473e7a-a1ba-4e86-afb2-e829e11b01d8\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that have the specified applications installed. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"ApplicationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Application names (supports wildcards)\",\"description\":\"A semicolon-separated list of the names of the applications that should not be installed. e.g. 'Microsoft SQL Server 2014 (64-bit); Microsoft Visual Studio Code' or 'Microsoft SQL Server 2014*' (to match any application starting with 'Microsoft SQL Server 2014')\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"NotInstalledApplication\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[InstalledApplication]NotInstalledApplicationResource1;Name', '=', parameters('ApplicationName')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"NotInstalledApplication\"},\"ApplicationName\":{\"value\":\"[parameters('ApplicationName')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"ApplicationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[InstalledApplication]NotInstalledApplicationResource1;Name\",\"value\":\"[parameters('ApplicationName')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[InstalledApplication]NotInstalledApplicationResource1;Name\",\"value\":\"[parameters('ApplicationName')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f0633351-c7b2-41ff-9981-508fc08553c2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f0633351-c7b2-41ff-9981-508fc08553c2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1531 - Third-Party Personnel Security\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1531\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f0643e0c-eee5-4113-8684-c608d05c5236\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f0643e0c-eee5-4113-8684-c608d05c5236\"},{\"properties\":{\"displayName\":\"Latest TLS version should be used in your Web App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Upgrade to the latest TLS version\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/minTlsVersion\",\"equals\":\"1.2\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f0e6e85b-9b9f-4a4b-b67b-f730d42f1b0b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f0e6e85b-9b9f-4a4b-b67b-f730d42f1b0b\"},{\"properties\":{\"displayName\":\"Deploy Workflow Automation for Azure Security Center alerts\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable automation of Azure Security Center alerts. This policy deploys a workflow automation with your conditions and triggers on the assigned scope. To deploy this policy on newly created subscriptions, open the Compliance tab, select the relevant non-compliant assignment and create a remediation task.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"automationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Automation name\",\"description\":\"This is the automation name.\"}},\"resourceGroupName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group name\",\"description\":\"The resource group name where the workflow automation is created. If you enter a name for a resource group that doesn't exist, it'll be created in the subscription.\"}},\"resourceGroupLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group location\",\"description\":\"The location where the resource group and the workflow automation are created.\",\"strongType\":\"location\"}},\"alertName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Alert name contains\",\"description\":\"String included in the required alert name. For a full reference list of Security Center's alerts, see https://docs.microsoft.com/azure/security-center/alerts-reference.\"},\"defaultValue\":\"\"},\"alertSeverities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Alert severities\",\"description\":\"Determines alert severities. Example: High;Medium;Low;\"},\"allowedValues\":[\"High\",\"Medium\",\"Low\"],\"defaultValue\":[\"High\",\"Medium\",\"Low\"]},\"logicAppResourceId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Logic App\",\"description\":\"The Logic App that is triggered. If you do not already have a logic app, visit Logic Apps to create one (https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Logic%2Fworkflows).\",\"strongType\":\"Microsoft.Logic/workflows\",\"assignPermissions\":true}},\"logicAppTrigger\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Logic app trigger\",\"description\":\"The trigger connector of the logic app that is triggered. Possible values: 'Manual (Incoming HTTP request)', 'When an Azure Security Center Alert is created or triggered'.\"},\"allowedValues\":[\"Manual (Incoming HTTP request)\",\"When an Azure Security Center Alert is created or triggered\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Security/automations\",\"name\":\"[parameters('automationName')]\",\"existenceScope\":\"resourcegroup\",\"ResourceGroupName\":\"[parameters('resourceGroupName')]\",\"deploymentScope\":\"subscription\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"location\":\"westeurope\",\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"automationName\":{\"type\":\"string\"},\"resourceGroupName\":{\"type\":\"string\"},\"resourceGroupLocation\":{\"type\":\"string\"},\"alertName\":{\"type\":\"string\"},\"alertSeverities\":{\"type\":\"array\"},\"logicAppResourceId\":{\"type\":\"string\"},\"logicAppTrigger\":{\"type\":\"string\"},\"guidValue\":{\"type\":\"string\",\"defaultValue\":\"[newGuid()]\"}},\"variables\":{\"scopeDescription\":\"scope for subscription {0}\",\"alertSeveritiesLength\":\"[length(parameters('alertSeverities'))]\",\"alertSeveritiesLengthIfEmpty\":\"[if(equals(variables('alertSeveritiesLength'), 0), 1, variables('alertSeveritiesLength'))]\",\"severityMap\":{\"High\":\"high\",\"Medium\":\"medium\",\"Low\":\"low\"},\"triggerMap\":{\"Manual (Incoming HTTP request)\":\"manual\",\"When an Azure Security Center Alert is created or triggered\":\"When_an_Azure_Security_Center_Alert_is_created_or_triggered\"}},\"resources\":[{\"name\":\"[parameters('resourceGroupName')]\",\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2019-10-01\",\"location\":\"[parameters('resourceGroupLocation')]\",\"tags\":{},\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2019-10-01\",\"name\":\"[concat('nestedAutomationDeployment', '_', parameters('guidValue'))]\",\"resourceGroup\":\"[parameters('resourceGroupName')]\",\"dependsOn\":[\"[resourceId('Microsoft.Resources/resourceGroups/', parameters('resourceGroupName'))]\"],\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"tags\":{},\"apiVersion\":\"2019-01-01-preview\",\"location\":\"[parameters('resourceGroupLocation')]\",\"name\":\"[parameters('automationName')]\",\"type\":\"Microsoft.Security/automations\",\"dependsOn\":[],\"properties\":{\"description\":\"Workflow Automation for Azure Security Center alerts via policy\",\"isEnabled\":true,\"scopes\":[{\"description\":\"[replace(variables('scopeDescription'),'{0}', subscription().subscriptionId)]\",\"scopePath\":\"[subscription().id]\"}],\"sources\":[{\"eventSource\":\"Alerts\",\"copy\":[{\"name\":\"ruleSets\",\"count\":\"[variables('alertSeveritiesLengthIfEmpty')]\",\"input\":{\"rules\":[{\"propertyJPath\":\"[if(equals(parameters('alertName'), ''), 'Version', 'AlertDisplayName')]\",\"propertyType\":\"string\",\"expectedValue\":\"[if(equals(parameters('alertName'), ''), '3.', parameters('alertName'))]\",\"operator\":\"Contains\"},{\"propertyJPath\":\"Severity\",\"propertyType\":\"string\",\"expectedValue\":\"[variables('severityMap')[parameters('alertSeverities')[mod(copyIndex('ruleSets'), variables('alertSeveritiesLengthIfEmpty'))]]]\",\"operator\":\"Equals\"}]}}]}],\"actions\":[{\"actionType\":\"LogicApp\",\"logicAppResourceId\":\"[parameters('logicAppResourceId')]\",\"uri\":\"[listCallbackUrl(concat(parameters('logicAppResourceId'), '/triggers/', variables('triggerMap')[parameters('logicAppTrigger')]),'2016-06-01').value]\"}]}}]}}}]},\"parameters\":{\"automationName\":{\"value\":\"[parameters('automationName')]\"},\"resourceGroupName\":{\"value\":\"[parameters('resourceGroupName')]\"},\"resourceGroupLocation\":{\"value\":\"[parameters('resourceGroupLocation')]\"},\"alertName\":{\"value\":\"[parameters('alertName')]\"},\"alertSeverities\":{\"value\":\"[parameters('alertSeverities')]\"},\"logicAppResourceId\":{\"value\":\"[parameters('logicAppResourceId')]\"},\"logicAppTrigger\":{\"value\":\"[parameters('logicAppTrigger')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f1525828-9a90-4fcf-be48-268cdd02361e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f1525828-9a90-4fcf-be48-268cdd02361e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1028 - Information Flow Enforcement\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1028\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f171df5c-921b-41e9-b12b-50801c315475\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f171df5c-921b-41e9-b12b-50801c315475\"},{\"properties\":{\"displayName\":\"Virtual networks should use specified virtual network gateway\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any virtual network if the default route does not point to the specified virtual network gateway.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"virtualNetworkGatewayId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Virtual network gateway Id\",\"description\":\"Resource Id of the virtual network gateway. Example: /subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroup/providers/Microsoft.Network/virtualNetworkGateways/Name\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Network/virtualNetworks/subnets\",\"name\":\"GatewaySubnet\",\"existenceCondition\":{\"not\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/ipConfigurations[*].id\",\"notContains\":\"[concat(parameters('virtualNetworkGatewayId'), '/')]\"}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f1776c76-f58c-4245-a8d0-2b207198dc8b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f1776c76-f58c-4245-a8d0-2b207198dc8b\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Linux VMs that do not have the passwd file permissions set to 0644\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Linux virtual machines that do not have the passwd file permissions set to 0644. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordPolicy_msid121\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"PasswordPolicy_msid121\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f19aa1c1-6b91-4c27-ae6a-970279f03db9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f19aa1c1-6b91-4c27-ae6a-970279f03db9\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Administrative Templates - MSS (Legacy)'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - MSS (Legacy)'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdminstrativeTemplatesMSSLegacy\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_AdminstrativeTemplatesMSSLegacy\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f1f4825d-58fb-4257-8016-8c00e3c9ed9d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f1f4825d-58fb-4257-8016-8c00e3c9ed9d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1701 - Information System Monitoring | Host-Based Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1701\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f25bc08f-27cb-43b6-9a23-014d00700426\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f25bc08f-27cb-43b6-9a23-014d00700426\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1457 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1457\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f2d9d3e6-8886-4305-865d-639163e5c305\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f2d9d3e6-8886-4305-865d-639163e5c305\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1309 - Identification And Authentication (Org. Users) | Acceptance Of Piv Credentials\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1309\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f355d62b-39a8-4ba3-abf7-90f71cb3b000\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f355d62b-39a8-4ba3-abf7-90f71cb3b000\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1615 - System And Communications Protection Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1615\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f35e02aa-0a55-49f8-8811-8abfa7e6f2c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f35e02aa-0a55-49f8-8811-8abfa7e6f2c0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1255 - Contingency Plan | Continue Essential Missions / Business Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1255\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f3793f5e-937f-44f7-bfba-40647ef3efa0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f3793f5e-937f-44f7-bfba-40647ef3efa0\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs in which the Administrators group does not contain all of the specified members\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines in which the Administrators group does not contain all of the specified members. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AdministratorsGroupMembersToInclude\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f3b44e5d-1456-475f-9c67-c66c4618e85a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f3b44e5d-1456-475f-9c67-c66c4618e85a\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not contain the specified certificates in Trusted Root\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows VMs that do not contain the specified certificates in the Trusted Root Certification Authorities certificate store (Cert:\\\\LocalMachine\\\\Root). For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsCertificateInTrustedRoot\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f3b9ad83-000d-4dc1-bff0-6d54533dd03f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f3b9ad83-000d-4dc1-bff0-6d54533dd03f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1706 - Security Alerts, Advisories, And Directives\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1706\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f475ee0e-f560-4c9b-876b-04a77460a404\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f475ee0e-f560-4c9b-876b-04a77460a404\"},{\"properties\":{\"displayName\":\"Audit Log Analytics workspace for VM - Report Mismatch\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Reports VMs as non-compliant if they aren't logging to the Log Analytics workspace specified in the policy/initiative assignment.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"logAnalyticsWorkspaceId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics Workspace Id that VMs should be configured for\",\"description\":\"This is the Id (GUID) of the Log Analytics Workspace that the VMs should be configured for.\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines/extensions\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/settings.workspaceId\",\"notEquals\":\"[parameters('logAnalyticsWorkspaceId')]\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f47b5582-33ec-4c5c-87c0-b010a6b2e917\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f47b5582-33ec-4c5c-87c0-b010a6b2e917\"},{\"properties\":{\"displayName\":\"Authorization rules on the Event Hub instance should be defined\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit existence of authorization rules on Event Hub entities to grant least-privileged access\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Event Hub\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.EventHub/namespaces/eventhubs\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.EventHub/namespaces/eventHubs/authorizationRules\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f4826e5f-6a27-407c-ae3e-9582eb39891d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f4826e5f-6a27-407c-ae3e-9582eb39891d\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not have the password complexity setting enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not have the password complexity setting enabled. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordMustMeetComplexityRequirements\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f48b2913-1dc5-4834-8c72-ccc1dfd819bb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f48b2913-1dc5-4834-8c72-ccc1dfd819bb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1495 - System Security Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1495\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f4978d0e-a596-48e7-9f8c-bbf52554ce8d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f4978d0e-a596-48e7-9f8c-bbf52554ce8d\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that have not restarted within the specified number of days\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that have not restarted within the specified number of days. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"NumberOfDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Number of days\",\"description\":\"The number of days without restart until the machine is considered non-compliant\"},\"defaultValue\":\"12\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MachineLastBootUpTime\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[MachineUpTime]MachineLastBootUpTime;NumberOfDays', '=', parameters('NumberOfDays')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"MachineLastBootUpTime\"},\"NumberOfDays\":{\"value\":\"[parameters('NumberOfDays')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"NumberOfDays\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[MachineUpTime]MachineLastBootUpTime;NumberOfDays\",\"value\":\"[parameters('NumberOfDays')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[MachineUpTime]MachineLastBootUpTime;NumberOfDays\",\"value\":\"[parameters('NumberOfDays')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f4b245d4-46c9-42be-9b1a-49e2b5b94194\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f4b245d4-46c9-42be-9b1a-49e2b5b94194\"},{\"properties\":{\"displayName\":\"Deploy Auditing on SQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy ensures that Auditing is enabled on SQL Servers for enhanced security and compliance. It will automatically create a storage account in the same region as the SQL server to store audit records.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"retentionDays\":{\"type\":\"String\",\"metadata\":{\"description\":\"The value in days of the retention period (0 indicates unlimited retention)\",\"displayName\":\"Retention days (optional, 180 days if unspecified)\"},\"defaultValue\":\"180\"},\"storageAccountsResourceGroup\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group name for storage accounts\",\"description\":\"Auditing writes database events to an audit log in your Azure Storage account (a storage account will be created in each region where a SQL Server is created that will be shared by all servers in that region). Important - for proper operation of Auditing do not delete or rename the resource group or the storage accounts.\",\"strongType\":\"existingResourceGroups\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.Sql/servers/auditingSettings\",\"name\":\"Default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/auditingSettings.state\",\"equals\":\"Enabled\"},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\"/providers/microsoft.authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"serverName\":{\"type\":\"string\"},\"auditRetentionDays\":{\"type\":\"string\"},\"storageAccountsResourceGroup\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"retentionDays\":\"[int(parameters('auditRetentionDays'))]\",\"subscriptionId\":\"[subscription().subscriptionId]\",\"uniqueStorage\":\"[uniqueString(variables('subscriptionId'), parameters('location'), parameters('storageAccountsResourceGroup'))]\",\"locationCode\":\"[substring(parameters('location'), 0, 3)]\",\"storageName\":\"[tolower(concat('sqlaudit', variables('locationCode'), variables('uniqueStorage')))]\",\"createStorageAccountDeploymentName\":\"[concat('sqlServerAuditingStorageAccount-', uniqueString(variables('locationCode'), parameters('serverName')))]\"},\"resources\":[{\"apiVersion\":\"2017-05-10\",\"name\":\"[variables('createStorageAccountDeploymentName')]\",\"type\":\"Microsoft.Resources/deployments\",\"resourceGroup\":\"[parameters('storageAccountsResourceGroup')]\",\"properties\":{\"mode\":\"Incremental\",\"parameters\":{\"location\":{\"value\":\"[parameters('location')]\"},\"storageName\":{\"value\":\"[variables('storageName')]\"}},\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/samples/SQL/deploy-sql-server-auditing/createStorage.template.json\",\"contentVersion\":\"1.0.0.0\"}}},{\"name\":\"[concat(parameters('serverName'), '/Default')]\",\"type\":\"Microsoft.Sql/servers/auditingSettings\",\"apiVersion\":\"2017-03-01-preview\",\"properties\":{\"state\":\"Enabled\",\"storageEndpoint\":\"[reference(variables('createStorageAccountDeploymentName')).outputs.storageAccountEndPoint.value]\",\"storageAccountAccessKey\":\"[reference(variables('createStorageAccountDeploymentName')).outputs.storageAccountKey.value]\",\"retentionDays\":\"[variables('retentionDays')]\",\"auditActionsAndGroups\":null,\"storageAccountSubscriptionId\":\"[subscription().subscriptionId]\",\"isStorageSecondaryKeyInUse\":false}}]},\"parameters\":{\"serverName\":{\"value\":\"[field('name')]\"},\"auditRetentionDays\":{\"value\":\"[parameters('retentionDays')]\"},\"storageAccountsResourceGroup\":{\"value\":\"[parameters('storageAccountsResourceGroup')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f4c68484-132f-41f9-9b6d-3e4b1cb55036\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f4c68484-132f-41f9-9b6d-3e4b1cb55036\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1469 - Power Equipment And Cabling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1469\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f509c5b6-0de0-4a4e-9b2e-cd9cbf3a58fd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f509c5b6-0de0-4a4e-9b2e-cd9cbf3a58fd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1618 - Security Function Isolation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1618\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f52f89aa-4489-4ec4-950e-8c96a036baa9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f52f89aa-4489-4ec4-950e-8c96a036baa9\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Network Access'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Network Access'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"NetworkAccessRemotelyAccessibleRegistryPaths\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network access: Remotely accessible registry paths\",\"description\":\"Specifies which registry paths will be accessible over the network, regardless of the users or groups listed in the access control list (ACL) of the `winreg` registry key.\"},\"defaultValue\":\"System\\\\CurrentControlSet\\\\Control\\\\ProductOptions|#|System\\\\CurrentControlSet\\\\Control\\\\Server Applications|#|Software\\\\Microsoft\\\\Windows NT\\\\CurrentVersion\"},\"NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network access: Remotely accessible registry paths and sub-paths\",\"description\":\"Specifies which registry paths and sub-paths will be accessible over the network, regardless of the users or groups listed in the access control list (ACL) of the `winreg` registry key.\"},\"defaultValue\":\"System\\\\CurrentControlSet\\\\Control\\\\Print\\\\Printers|#|System\\\\CurrentControlSet\\\\Services\\\\Eventlog|#|Software\\\\Microsoft\\\\OLAP Server|#|Software\\\\Microsoft\\\\Windows NT\\\\CurrentVersion\\\\Print|#|Software\\\\Microsoft\\\\Windows NT\\\\CurrentVersion\\\\Windows|#|System\\\\CurrentControlSet\\\\Control\\\\ContentIndex|#|System\\\\CurrentControlSet\\\\Control\\\\Terminal Server|#|System\\\\CurrentControlSet\\\\Control\\\\Terminal Server\\\\UserConfig|#|System\\\\CurrentControlSet\\\\Control\\\\Terminal Server\\\\DefaultUserConfiguration|#|Software\\\\Microsoft\\\\Windows NT\\\\CurrentVersion\\\\Perflib|#|System\\\\CurrentControlSet\\\\Services\\\\SysmonLog\"},\"NetworkAccessSharesThatCanBeAccessedAnonymously\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network access: Shares that can be accessed anonymously\",\"description\":\"Specifies which network shares can be accessed by anonymous users. The default configuration for this policy setting has little effect because all users have to be authenticated before they can access shared resources on the server.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsNetworkAccess\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Network access: Remotely accessible registry paths;ExpectedValue', '=', parameters('NetworkAccessRemotelyAccessibleRegistryPaths'), ',', 'Network access: Remotely accessible registry paths and sub-paths;ExpectedValue', '=', parameters('NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths'), ',', 'Network access: Shares that can be accessed anonymously;ExpectedValue', '=', parameters('NetworkAccessSharesThatCanBeAccessedAnonymously')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsNetworkAccess\"},\"NetworkAccessRemotelyAccessibleRegistryPaths\":{\"value\":\"[parameters('NetworkAccessRemotelyAccessibleRegistryPaths')]\"},\"NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths\":{\"value\":\"[parameters('NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths')]\"},\"NetworkAccessSharesThatCanBeAccessedAnonymously\":{\"value\":\"[parameters('NetworkAccessSharesThatCanBeAccessedAnonymously')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"NetworkAccessRemotelyAccessibleRegistryPaths\":{\"type\":\"string\"},\"NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths\":{\"type\":\"string\"},\"NetworkAccessSharesThatCanBeAccessedAnonymously\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Network access: Remotely accessible registry paths;ExpectedValue\",\"value\":\"[parameters('NetworkAccessRemotelyAccessibleRegistryPaths')]\"},{\"name\":\"Network access: Remotely accessible registry paths and sub-paths;ExpectedValue\",\"value\":\"[parameters('NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths')]\"},{\"name\":\"Network access: Shares that can be accessed anonymously;ExpectedValue\",\"value\":\"[parameters('NetworkAccessSharesThatCanBeAccessedAnonymously')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Network access: Remotely accessible registry paths;ExpectedValue\",\"value\":\"[parameters('NetworkAccessRemotelyAccessibleRegistryPaths')]\"},{\"name\":\"Network access: Remotely accessible registry paths and sub-paths;ExpectedValue\",\"value\":\"[parameters('NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths')]\"},{\"name\":\"Network access: Shares that can be accessed anonymously;ExpectedValue\",\"value\":\"[parameters('NetworkAccessSharesThatCanBeAccessedAnonymously')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f56a3ab2-89d1-44de-ac0d-2ada5962e22a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f56a3ab2-89d1-44de-ac0d-2ada5962e22a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1198 - Configuration Change Control | Security Representative\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1198\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f56be5c3-660b-4c61-9078-f67cf072c356\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f56be5c3-660b-4c61-9078-f67cf072c356\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1328 - Authenticator Management | Password-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1328\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f5c66fdc-3d02-4034-9db5-ba57802609de\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f5c66fdc-3d02-4034-9db5-ba57802609de\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1193 - Configuration Change Control | Automated Document / Notification / Prohibition Of Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1193\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f5fd629f-3075-4cae-ab53-bad65495a4ac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f5fd629f-3075-4cae-ab53-bad65495a4ac\"},{\"properties\":{\"displayName\":\"[Deprecated]: Web Application Firewall should be a set mode for Application Gateway and Azure Front Door Service\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Mandates detect or prevent mode to be active on all Web Application Firewall policies for Azure Front Door and Application Gateway. Web Application Firewall policies can have a consistent mode configuration across a resource group.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Network\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Deny\"},\"modeRequirement\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Mode Requirement\",\"description\":\"Mode required for all WAF policies\"},\"allowedValues\":[\"Prevention\",\"Detection\"],\"defaultValue\":\"Detection\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\"},{\"field\":\"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/policySettings.mode\",\"notEquals\":\"[parameters('modeRequirement')]\"}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies\"},{\"field\":\"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/policySettings.mode\",\"notEquals\":\"[parameters('modeRequirement')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f6b68e5a-7207-4638-a1fb-47d90404209e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f6b68e5a-7207-4638-a1fb-47d90404209e\"},{\"properties\":{\"displayName\":\"Internet-facing virtual machines should be protected with network security groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Protect your virtual machines from potential threats by restricting access to them with network security groups (NSG). Learn more about controlling traffic with NSGs at https://aka.ms/nsg-doc\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"networkSecurityGroupsOnVirtualMachines\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f6de0be7-9a8a-4b8a-b349-43cf02d22f7c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f6de0be7-9a8a-4b8a-b349-43cf02d22f7c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1214 - Least Functionality\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1214\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f714a4e2-b580-47b6-ae8c-f2812d3750f3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f714a4e2-b580-47b6-ae8c-f2812d3750f3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1591 - External Information System Services | Ident. Of Functions / Ports / Protocols / Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1591\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f751cdb7-fbee-406b-969b-815d367cb9b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f751cdb7-fbee-406b-969b-815d367cb9b3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1330 - Authenticator Management | Password-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1330\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f75cedb2-5def-4b31-973e-b69e8c7bd031\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f75cedb2-5def-4b31-973e-b69e8c7bd031\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1540 - Security Categorization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1540\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f771f8cb-6642-45cc-9a15-8a41cd5c6977\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f771f8cb-6642-45cc-9a15-8a41cd5c6977\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1449 - Physical Access Authorizations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1449\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f784d3b0-5f2b-49b7-b9f3-00ba8653ced5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f784d3b0-5f2b-49b7-b9f3-00ba8653ced5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1506 - Personnel Security Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1506\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f7d2ff17-d604-4dd9-b607-9ecf63f28ad2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f7d2ff17-d604-4dd9-b607-9ecf63f28ad2\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not have the specified Windows PowerShell execution policy\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines where Windows PowerShell is not configured to use the specified PowerShell execution policy. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsPowerShellExecutionPolicy\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f8036bd0-c10b-4931-86bb-94a878add855\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f8036bd0-c10b-4931-86bb-94a878add855\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1705 - Security Alerts, Advisories, And Directives\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1705\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f82e3639-fa2b-4e06-a786-932d8379b972\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f82e3639-fa2b-4e06-a786-932d8379b972\"},{\"properties\":{\"displayName\":\"External accounts with owner permissions should be removed from your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"External accounts with owner permissions should be removed from your subscription in order to prevent unmonitored access.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"RemoveExternalAccountsWithOwnerPermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f8456c1c-aa66-4dfb-861a-25d127b775c9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f8456c1c-aa66-4dfb-861a-25d127b775c9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1345 - Cryptographic Module Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1345\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f86aa129-7c07-4aa4-bbf5-792d93ffd9ea\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f86aa129-7c07-4aa4-bbf5-792d93ffd9ea\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1065 - Remote Access | Privileged Commands / Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1065\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f87b8085-dca9-4cf1-8f7b-9822b997797c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f87b8085-dca9-4cf1-8f7b-9822b997797c\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - System'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - System'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditOtherSystemEvents\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Other System Events\",\"description\":\"Specifies whether audit events are generated for Windows Firewall Service and Windows Firewall driver start and stop events, failure events for these services and Windows Firewall Service policy processing failures.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"No Auditing\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesSystem\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit Other System Events;ExpectedValue', '=', parameters('AuditOtherSystemEvents')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesSystem\"},\"AuditOtherSystemEvents\":{\"value\":\"[parameters('AuditOtherSystemEvents')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditOtherSystemEvents\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Other System Events;ExpectedValue\",\"value\":\"[parameters('AuditOtherSystemEvents')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Other System Events;ExpectedValue\",\"value\":\"[parameters('AuditOtherSystemEvents')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f8b0158d-4766-490f-bea0-259e52dba473\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f8b0158d-4766-490f-bea0-259e52dba473\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Service Bus should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Service Bus\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ServiceBus/namespaces\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f8d36e2f-389b-4ee4-898d-21aeb69a0f45\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f8d36e2f-389b-4ee4-898d-21aeb69a0f45\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1203 - Access Restrictions For Change | Automated Access Enforcement / Auditing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1203\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f9012d14-e3e6-4d7b-b926-9f37b5537066\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f9012d14-e3e6-4d7b-b926-9f37b5537066\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1697 - Information System Monitoring | Analyze Traffic / Covert Exfiltration\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1697\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f9873db2-18ad-46b3-a11a-1a1f8cbf0335\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f9873db2-18ad-46b3-a11a-1a1f8cbf0335\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1478 - Fire Protection | Suppression Devices / Systems\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1478\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f997df46-cfbb-4cc8-aac8-3fecdaf6a183\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f997df46-cfbb-4cc8-aac8-3fecdaf6a183\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1535 - Personnel Sanctions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1535\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f9a165d2-967d-4733-8399-1074270dae2e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f9a165d2-967d-4733-8399-1074270dae2e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1108 - Content Of Audit Records | Additional Audit Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1108\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f9ad559e-c12d-415e-9a78-e50fdd7da7ba\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f9ad559e-c12d-415e-9a78-e50fdd7da7ba\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Azure Stream Analytics should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Stream Analytics\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.StreamAnalytics/streamingJobs\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f9be5368-9bf5-4b84-9e0a-7850da98bb46\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f9be5368-9bf5-4b84-9e0a-7850da98bb46\"},{\"properties\":{\"displayName\":\"Latest TLS version should be used in your Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Upgrade to the latest TLS version\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/minTlsVersion\",\"equals\":\"1.2\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f9d614c5-c173-4d56-95a7-b4437057d193\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f9d614c5-c173-4d56-95a7-b4437057d193\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1280 - Telecommunications Services | Priority Of Service Provisions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1280\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fa108498-b3a8-4ffb-9e79-1107e76afad3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fa108498-b3a8-4ffb-9e79-1107e76afad3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1037 - Least Privilege | Network Access To Privileged Commands\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1037\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fa4c2a3d-1294-41a3-9ada-0e540471e9fb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fa4c2a3d-1294-41a3-9ada-0e540471e9fb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1435 - Media Transport\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1435\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fa8d221b-d130-4637-ba16-501e666628bb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fa8d221b-d130-4637-ba16-501e666628bb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1675 - Flaw Remediation | Time To Remediate Flaws / Benchmarks For Corrective Actions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1675\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/facb66e0-1c48-478a-bed5-747a312323e1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"facb66e0-1c48-478a-bed5-747a312323e1\"},{\"properties\":{\"displayName\":\"Audit Linux virtual machines on which the Linux Guest Configuration extension is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits Linux virtual machines hosted in Azure that are supported by Guest Configuration but do not have the Guest Configuration extension enabled. For more information on Guest Configuration, visit https://aka.ms/gcpol.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"AzurePolicyforLinux\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.GuestConfiguration\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"ConfigurationforLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/faf25c8c-9598-4305-b4de-0aee1317fb31\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"faf25c8c-9598-4305-b4de-0aee1317fb31\"},{\"properties\":{\"displayName\":\"[Deprecated]: Deploy prerequisites to enable Guest Configuration Policy on Linux VMs.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a system-assigned managed identity and deploys the VM extension for Guest Configuration on Linux VMs. This is a prerequisite for Guest Configuration Policy and must be assigned to the scope before using any Guest Configuration policy. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"3.0.0-deprecated\",\"deprecated\":true,\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"AzurePolicyforLinux\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.GuestConfiguration\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"ConfigurationforLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fb27e9e0-526e-4ae1-89f2-a2a0bf0f8a50\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fb27e9e0-526e-4ae1-89f2-a2a0bf0f8a50\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1086 - Publicly Accessible Content\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1086\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fb321e6f-16a0-4be3-878f-500956e309c5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fb321e6f-16a0-4be3-878f-500956e309c5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1222 - Information System Component Inventory\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1222\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fb39e62f-6bda-4558-8088-ec03d5670914\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fb39e62f-6bda-4558-8088-ec03d5670914\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes Services should be upgraded to a non-vulnerable Kubernetes version\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Upgrade your Kubernetes service cluster to a later Kubernetes version to protect against known vulnerabilities in your current Kubernetes version. Vulnerability CVE-2019-9946 has been patched in Kubernetes versions 1.11.9+, 1.12.7+, 1.13.5+, and 1.14.0+\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Security Center\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"anyOf\":[{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"in\":[\"1.13.4\",\"1.13.3\",\"1.13.2\",\"1.13.1\",\"1.13.0\"]},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"in\":[\"1.12.6\",\"1.12.5\",\"1.12.4\",\"1.12.3\",\"1.12.2\",\"1.12.1\",\"1.12.0\"]},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"in\":[\"1.11.8\",\"1.11.7\",\"1.11.6\",\"1.11.5\",\"1.11.4\",\"1.11.3\",\"1.11.2\",\"1.11.1\",\"1.11.0\"]},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.10.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.9.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.8.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.7.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.6.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.5.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.4.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.3.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.2.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.1.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.0.*\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fb893a29-21bb-418c-a157-e99480ec364c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fb893a29-21bb-418c-a157-e99480ec364c\"},{\"properties\":{\"displayName\":\"Storage account containing the container with activity logs must be encrypted with BYOK\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits if the Storage account containing the container with activity logs is encrypted with BYOK. The policy works only if the storage account lies on the same subscription as activity logs by design. More information on Azure Storage encryption at rest can be found here https://aka.ms/azurestoragebyok. \",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Insights/logProfiles\"},{\"field\":\"Microsoft.Insights/logProfiles/storageAccountId\",\"exists\":\"true\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Storage/storageAccounts\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"allOf\":[{\"value\":\"[contains(field('Microsoft.Insights/logProfiles/storageAccountId'), subscription().Id)]\",\"equals\":\"true\"},{\"field\":\"name\",\"equals\":\"[last(split(field('Microsoft.Insights/logProfiles/storageAccountId'),'/'))]\"},{\"field\":\"Microsoft.Storage/storageAccounts/encryption.keySource\",\"equals\":\"Microsoft.Keyvault\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fbb99e8e-e444-4da0-9ff1-75c92f5a85b2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fbb99e8e-e444-4da0-9ff1-75c92f5a85b2\"},{\"properties\":{\"displayName\":\"[Preview]: All Internet traffic should be routed via your deployed Azure Firewall\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Azure Security Center has identified that some of your subnets aren't protected with a next generation firewall. Protect your subnets from potential threats by restricting access to them with Azure Firewall or a supported next generation firewall\",\"metadata\":{\"version\":\"2.0.0-preview\",\"category\":\"Network\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable All Internet traffic should be routed via your deployed Azure Firewall\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/routeTable\",\"exists\":false},{\"count\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/ipConfigurations[*]\"},\"greaterOrEquals\":2},{\"field\":\"name\",\"notIn\":[\"AzureFirewallSubnet\",\"GatewaySubnet\",\"AzureBastionSubnet\"]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups\",\"name\":\"[string(last(split(field('Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id'), '/')))]\",\"resourceGroupName\":\"[string(take(skip(split(field('Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id'), '/'), 4), 1))]\",\"existenceCondition\":{\"allOf\":[{\"count\":{\"field\":\"Microsoft.Network/networkSecurityGroups/subnets[*]\",\"where\":{\"field\":\"Microsoft.Network/networkSecurityGroups/subnets[*].id\",\"like\":\"[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/*/providers/Microsoft.Network/virtualNetworks/', first(split(field('fullName'), '/')), '/subnets/', field('name'))]\"}},\"equals\":1},{\"count\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*]\",\"where\":{\"allOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].direction\",\"equals\":\"Outbound\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationAddressPrefix\",\"in\":[\"*\",\"Internet\"]},{\"anyOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationPortRange\",\"in\":[\"*\",\"0-65535\"]},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationPortRanges\",\"notEquals\":\"0-65535\"}}]}]}},\"greater\":0},{\"count\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*]\",\"where\":{\"allOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].direction\",\"equals\":\"Outbound\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].access\",\"equals\":\"Allow\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationAddressPrefix\",\"in\":[\"*\",\"Internet\"]}]}},\"equals\":0}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fc5e4038-4584-4632-8c85-c0448d374b2c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fc5e4038-4584-4632-8c85-c0448d374b2c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1075 - Access Control For Mobile Devices | Full Device / Container-Based Encryption\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1075\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fc933d22-04df-48ed-8f87-22a3773d4309\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fc933d22-04df-48ed-8f87-22a3773d4309\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Microsoft Network Client'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Microsoft Network Client'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsMicrosoftNetworkClient\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fcbc55c9-f25a-4e55-a6cb-33acb3be778b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fcbc55c9-f25a-4e55-a6cb-33acb3be778b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1318 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1318\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fced5fda-3bdb-4d73-bfea-0e2c80428b66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fced5fda-3bdb-4d73-bfea-0e2c80428b66\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1543 - Risk Assessment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1543\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fd00b778-b5b5-49c0-a994-734ea7bd3624\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fd00b778-b5b5-49c0-a994-734ea7bd3624\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1707 - Security Alerts, Advisories, And Directives | Automated Alerts And Advisories\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1707\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fd4a2ac8-868a-4702-a345-6c896c3361ce\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fd4a2ac8-868a-4702-a345-6c896c3361ce\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1299 - Identification And Authentication Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1299\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fd4e54f7-9ab0-4bae-b6cc-457809948a89\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fd4e54f7-9ab0-4bae-b6cc-457809948a89\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1627 - Boundary Protection | External Telecommunications Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1627\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fd73310d-76fc-422d-bda4-3a077149f179\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fd73310d-76fc-422d-bda4-3a077149f179\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1130 - Time Stamps | Synchronization With Authoritative Time Source\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1130\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fd7c4c1d-51ee-4349-9dab-89a7f8c8d102\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fd7c4c1d-51ee-4349-9dab-89a7f8c8d102\"},{\"properties\":{\"displayName\":\"Public network access should be disabled for MariaDB servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MariaDB servers in your environment with public network access enabled. For more details, visit https://go.microsoft.com/fwlink/?linkid=2119542.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforMariaDB/servers\"},{\"field\":\"Microsoft.DBforMariaDB/servers/publicNetworkAccess\",\"notEquals\":\"Disabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fdccbe47-f3e3-4213-ad5d-ea459b2fa077\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fdccbe47-f3e3-4213-ad5d-ea459b2fa077\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1611 - Developer-Provided Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1611\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fdda8a0c-ac32-43f6-b2f4-7dc1df03f43f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fdda8a0c-ac32-43f6-b2f4-7dc1df03f43f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1405 - Maintenance Tools | Inspect Tools\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1405\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fe1a0bf3-409a-4b00-b60d-0b1f917f7e7b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fe1a0bf3-409a-4b00-b60d-0b1f917f7e7b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1613 - Developer Security Architecture And Design\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1613\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fe2ad78b-8748-4bff-a924-f74dfca93f30\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fe2ad78b-8748-4bff-a924-f74dfca93f30\"},{\"properties\":{\"displayName\":\"Show audit results from Linux VMs that do not have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Linux virtual machines that do not have the specified applications installed. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"installed_application_linux\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fee5cb2b-9d9b-410e-afe3-2902d90d0004\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fee5cb2b-9d9b-410e-afe3-2902d90d0004\"},{\"properties\":{\"displayName\":\"Vulnerabilities on your SQL databases should be remediated\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Monitor Vulnerability Assessment scan results and recommendations for how to remediate database vulnerabilities.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Sql/servers/databases\",\"Microsoft.Sql/managedinstances/databases\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"sqlVulnerabilityAssessment\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/feedbf84-6b99-488c-acc2-71c829aa5ffc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"feedbf84-6b99-488c-acc2-71c829aa5ffc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1407 - Maintenance Tools | Prevent Unauthorized Removal\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1407\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ff9fbd83-1d8d-4b41-aac2-94cb44b33976\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ff9fbd83-1d8d-4b41-aac2-94cb44b33976\"},{\"properties\":{\"displayName\":\"Deploy export to Log Analytics workspace for Azure Security Center alerts and recommendations\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable export to Log Analytics workspace of Azure Security Center alerts and/or recommendations. This policy deploys an export to Log Analytics workspace configuration with your conditions and target workspace on the assigned scope. To deploy this policy on newly created subscriptions, open the Compliance tab, select the relevant non-compliant assignment and create a remediation task.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"resourceGroupName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group name\",\"description\":\"The resource group name where the export to Log Analytics workspace configuration is created. If you enter a name for a resource group that doesn't exist, it'll be created in the subscription. Note that each resource group can only have one export to Log Analytics workspace configured.\"}},\"resourceGroupLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group location\",\"description\":\"The location where the resource group and the export to Log Analytics workspace configuration are created.\",\"strongType\":\"location\"}},\"exportedDataTypes\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Exported data types\",\"description\":\"The data types to be exported. Example: Security recommendations;Security alerts;\"},\"allowedValues\":[\"Security recommendations\",\"Security alerts\"],\"defaultValue\":[\"Security recommendations\",\"Security alerts\"]},\"recommendationNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation IDs\",\"description\":\"Applicable only for export of security recommendations. To export all recommendations, leave this empty. To export specific recommendations, enter a list of recommendation IDs separated by semicolons (';'). Recommendation IDs are available through the Assessments API (https://docs.microsoft.com/rest/api/securitycenter/assessments), or Azure Resource Graph Explorer (https://portal.azure.com/#blade/HubsExtension/ArgQueryBlade), choose securityresources and microsoft.security/assessments.\"},\"defaultValue\":[]},\"recommendationSeverities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation severities\",\"description\":\"Applicable only for export of security recommendations. Determines recommendation severities. Example: High;Medium;Low;\"},\"allowedValues\":[\"High\",\"Medium\",\"Low\"],\"defaultValue\":[\"High\",\"Medium\",\"Low\"]},\"alertSeverities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Alert severities\",\"description\":\"Applicable only for export of security alerts. Determines alert severities. Example: High;Medium;Low;\"},\"allowedValues\":[\"High\",\"Medium\",\"Low\"],\"defaultValue\":[\"High\",\"Medium\",\"Low\"]},\"workspaceResourceId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"The Log Analytics workspace of where the data should be exported to. If you do not already have a log analytics workspace, visit Log Analytics workspaces to create one (https://portal.azure.com/#blade/HubsExtension/BrowseResource/resourceType/Microsoft.OperationalInsights%2Fworkspaces).\",\"strongType\":\"Microsoft.OperationalInsights/workspaces\",\"assignPermissions\":true}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Security/automations\",\"name\":\"ExportToWorkspace\",\"existenceScope\":\"resourcegroup\",\"ResourceGroupName\":\"[parameters('resourceGroupName')]\",\"deploymentScope\":\"subscription\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"location\":\"westeurope\",\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceGroupName\":{\"type\":\"string\"},\"resourceGroupLocation\":{\"type\":\"string\"},\"exportedDataTypes\":{\"type\":\"array\"},\"recommendationNames\":{\"type\":\"array\"},\"recommendationSeverities\":{\"type\":\"array\"},\"alertSeverities\":{\"type\":\"array\"},\"workspaceResourceId\":{\"type\":\"string\"},\"guidValue\":{\"type\":\"string\",\"defaultValue\":\"[newGuid()]\"}},\"variables\":{\"scopeDescription\":\"scope for subscription {0}\",\"recommendationNamesLength\":\"[length(parameters('recommendationNames'))]\",\"recommendationSeveritiesLength\":\"[length(parameters('recommendationSeverities'))]\",\"alertSeveritiesLength\":\"[length(parameters('alertSeverities'))]\",\"recommendationNamesLengthIfEmpty\":\"[if(equals(variables('recommendationNamesLength'), 0), 1, variables('recommendationNamesLength'))]\",\"recommendationSeveritiesLengthIfEmpty\":\"[if(equals(variables('recommendationSeveritiesLength'), 0), 1, variables('recommendationSeveritiesLength'))]\",\"alertSeveritiesLengthIfEmpty\":\"[if(equals(variables('alertSeveritiesLength'), 0), 1, variables('alertSeveritiesLength'))]\",\"totalRuleCombinationsForOneRecommendationName\":\"[variables('recommendationSeveritiesLengthIfEmpty')]\",\"totalRuleCombinationsForOneRecommendationSeverity\":1,\"exportedDataTypesLength\":\"[length(parameters('exportedDataTypes'))]\",\"exportedDataTypesLengthIfEmpty\":\"[if(equals(variables('exportedDataTypesLength'), 0), 1, variables('exportedDataTypesLength'))]\",\"dataTypeMap\":{\"Security recommendations\":\"Assessments\",\"Security alerts\":\"Alerts\"},\"alertSeverityMap\":{\"High\":\"high\",\"Medium\":\"medium\",\"Low\":\"low\"},\"ruleSetsForAssessmentsObj\":{\"copy\":[{\"name\":\"ruleSetsForAssessmentsArr\",\"count\":\"[mul(variables('recommendationNamesLengthIfEmpty'),variables('recommendationSeveritiesLengthIfEmpty'))]\",\"input\":{\"rules\":[{\"propertyJPath\":\"[if(equals(variables('recommendationNamesLength'),0),'type','name')]\",\"propertyType\":\"string\",\"expectedValue\":\"[if(equals(variables('recommendationNamesLength'),0),'Microsoft.Security/assessments',parameters('recommendationNames')[mod(div(copyIndex('ruleSetsForAssessmentsArr'),variables('totalRuleCombinationsForOneRecommendationName')),variables('recommendationNamesLength'))])]\",\"operator\":\"Contains\"},{\"propertyJPath\":\"properties.metadata.severity\",\"propertyType\":\"string\",\"expectedValue\":\"[parameters('recommendationSeverities')[mod(div(copyIndex('ruleSetsForAssessmentsArr'),variables('totalRuleCombinationsForOneRecommendationSeverity')),variables('recommendationSeveritiesLength'))]]\",\"operator\":\"Equals\"}]}}]},\"ruleSetsForAlertsObj\":{\"copy\":[{\"name\":\"ruleSetsForAlertsArr\",\"count\":\"[variables('alertSeveritiesLengthIfEmpty')]\",\"input\":{\"rules\":[{\"propertyJPath\":\"Severity\",\"propertyType\":\"string\",\"expectedValue\":\"[variables('alertSeverityMap')[parameters('alertSeverities')[mod(copyIndex('ruleSetsForAlertsArr'),variables('alertSeveritiesLengthIfEmpty'))]]]\",\"operator\":\"Equals\"}]}}]}},\"resources\":[{\"name\":\"[parameters('resourceGroupName')]\",\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2019-10-01\",\"location\":\"[parameters('resourceGroupLocation')]\",\"tags\":{},\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2019-10-01\",\"name\":\"[concat('nestedAutomationDeployment', '_', parameters('guidValue'))]\",\"resourceGroup\":\"[parameters('resourceGroupName')]\",\"dependsOn\":[\"[resourceId('Microsoft.Resources/resourceGroups/', parameters('resourceGroupName'))]\"],\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"tags\":{},\"apiVersion\":\"2019-01-01-preview\",\"location\":\"[parameters('resourceGroupLocation')]\",\"name\":\"ExportToWorkspace\",\"type\":\"Microsoft.Security/automations\",\"dependsOn\":[],\"properties\":{\"description\":\"Export Azure Security Center alerts and/or recommendations to Log Analytics workspace via policy\",\"isEnabled\":true,\"scopes\":[{\"description\":\"[replace(variables('scopeDescription'),'{0}', subscription().subscriptionId)]\",\"scopePath\":\"[subscription().id]\"}],\"copy\":[{\"name\":\"sources\",\"count\":\"[variables('exportedDataTypesLengthIfEmpty')]\",\"input\":{\"eventSource\":\"[variables('dataTypeMap')[parameters('exportedDataTypes')[copyIndex('sources')]]]\",\"ruleSets\":\"[if(equals(parameters('exportedDataTypes')[copyIndex('sources')], 'Security recommendations'), variables('ruleSetsForAssessmentsObj').ruleSetsForAssessmentsArr, variables('ruleSetsForAlertsObj').ruleSetsForAlertsArr)]\"}}],\"actions\":[{\"actionType\":\"Workspace\",\"workspaceResourceId\":\"[parameters('workspaceResourceId')]\"}]}}]}}}]},\"parameters\":{\"resourceGroupName\":{\"value\":\"[parameters('resourceGroupName')]\"},\"resourceGroupLocation\":{\"value\":\"[parameters('resourceGroupLocation')]\"},\"exportedDataTypes\":{\"value\":\"[parameters('exportedDataTypes')]\"},\"recommendationNames\":{\"value\":\"[parameters('recommendationNames')]\"},\"recommendationSeverities\":{\"value\":\"[parameters('recommendationSeverities')]\"},\"alertSeverities\":{\"value\":\"[parameters('alertSeverities')]\"},\"workspaceResourceId\":{\"value\":\"[parameters('workspaceResourceId')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ffb6f416-7bd2-4488-8828-56585fef2be9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ffb6f416-7bd2-4488-8828-56585fef2be9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1158 - Security Authorization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1158\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fff50cf2-28eb-45b4-b378-c99412688907\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fff50cf2-28eb-45b4-b378-c99412688907\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster pod hostPath volumes should only use allowed host paths\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures pod hostPath volumes can only use allowed host paths in a Kubernetes Cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedHostPaths\":{\"type\":\"Object\",\"metadata\":{\"displayName\":\"[Preview]: Allowed host paths\",\"description\":\"The host paths allowed for pod hostPath volumes to use. Provide an empty paths list to block all host paths.\",\"schema\":{\"type\":\"object\",\"properties\":{\"paths\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"pathPrefix\":{\"type\":\"string\"},\"readOnly\":{\"type\":\"boolean\"}},\"required\":[\"pathPrefix\",\"readOnly\"],\"additionalProperties\":false}}},\"required\":[\"paths\"],\"additionalProperties\":false}},\"defaultValue\":{\"paths\":[]}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-host-paths/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-host-paths/constraint.yaml\",\"values\":{\"allowedHostPaths\":\"[parameters('allowedHostPaths').paths]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/098fc59e-46c7-4d99-9b16-64990e543d75\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"098fc59e-46c7-4d99-9b16-64990e543d75\"},{\"properties\":{\"displayName\":\"[Preview]: Manage certificate validity period\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages the maximum validity period for certificates in months.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"maximumValidityInMonths\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: The maximum validity in months\",\"description\":\"The limit to how long a certificate may be valid for. Certificates with lengthy validity periods aren't best practice.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/properties.validityInMonths\",\"greater\":\"[parameters('maximumValidityInMonths')]\"},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a075868-4c26-42ef-914c-5bc007359560\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a075868-4c26-42ef-914c-5bc007359560\"},{\"properties\":{\"displayName\":\"[Deprecated]: Ensure containers listen only on allowed ports in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy enforces containers to listen only on allowed ports in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"allowedContainerPortsRegex\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Allowed container ports regex\",\"description\":\"Regex representing container ports allowed in Kubernetes cluster. E.g. Regex for allowing ports 443,446 is ^(443|446)$\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"ContainerAllowedPorts\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/container-allowed-ports/limited-preview/gatekeeperpolicy.rego\",\"policyParameters\":{\"allowedContainerPortsRegex\":\"[parameters('allowedContainerPortsRegex')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0f636243-1b1c-4d50-880f-310f6199f2cb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0f636243-1b1c-4d50-880f-310f6199f2cb\"},{\"properties\":{\"displayName\":\"[Preview]: Manage allowed certificate key types\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages the allowed key types for certificates.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"allowedKeyTypes\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed key types\",\"description\":\"The list of allowed certificate key types.\"},\"allowedValues\":[\"RSA\",\"RSA-HSM\",\"EC\",\"EC-HSM\"],\"defaultValue\":[\"RSA\",\"RSA-HSM\"]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/keyProperties.keyType\",\"notIn\":\"[parameters('allowedKeyTypes')]\"},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1151cede-290b-4ba0-8b38-0ad145ac888f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1151cede-290b-4ba0-8b38-0ad145ac888f\"},{\"properties\":{\"displayName\":\"[Preview]: Manage certificate lifetime action triggers\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages the configuration for certificate lifetime action triggers before certificate expiration.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"maximumPercentageLife\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: The maximum lifetime percentage\",\"description\":\"Enter the percentage of lifetime of the certificate when you want to trigger the policy action. For example, to trigger a policy action at 80% of the certificate's valid life, enter '80'.\"}},\"minimumDaysBeforeExpiry\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: The minimum days before expiry\",\"description\":\"Enter the days before expiration of the certificate when you want to trigger the policy action. For example, to trigger a policy action 90 days before the certificate's expiration, enter '90'.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/lifetimeAction.daysBeforeExpiry\",\"exists\":true},{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/lifetimeAction.daysBeforeExpiry\",\"less\":\"[parameters('minimumDaysBeforeExpiry')]\"}]},{\"allOf\":[{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/lifetimeAction.lifetimePercentage\",\"exists\":true},{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/lifetimeAction.lifetimePercentage\",\"greater\":\"[parameters('maximumPercentageLife')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/12ef42cb-9903-4e39-9c26-422d29570417\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"12ef42cb-9903-4e39-9c26-422d29570417\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster pods should only use allowed volume types\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures pods can only use allowed volume types in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedVolumeTypes\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed volume types\",\"description\":\"The list of volume types that can be used by a pod. Provide empty list as input to block everything.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-volume-types/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-volume-types/constraint.yaml\",\"values\":{\"volumes\":\"[parameters('allowedVolumeTypes')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/16697877-1118-4fb1-9b65-9898ec2509ec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"16697877-1118-4fb1-9b65-9898ec2509ec\"},{\"properties\":{\"displayName\":\"[Deprecated]: Enforce labels on pods in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy enforces the specified labels are provided for pods in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"commaSeparatedListOfLabels\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Comma-separated list of labels\",\"description\":\"A comma-separated list of labels to be specified on Pods in Kubernetes cluster. E.g. test1,test2\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"PodEnforceLabels\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/pod-enforce-labels/limited-preview/gatekeeperpolicy.rego\",\"policyParameters\":{\"commaSeparatedListOfLabels\":\"[parameters('commaSeparatedListOfLabels')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/16c6ca72-89d2-4798-b87e-496f9de7fcb7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"16c6ca72-89d2-4798-b87e-496f9de7fcb7\"},{\"properties\":{\"displayName\":\"[Preview]: Enforce HTTPS ingress in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy enforces HTTPS ingress in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/ingress-https-only/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/ingress-https-only/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1a5b4dca-0b6f-4cf5-907c-56316bc1bf3d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1a5b4dca-0b6f-4cf5-907c-56316bc1bf3d\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes clusters should not allow container privilege escalation\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy does not allow containers to use privilege escalation in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-no-privilege-escalation/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-no-privilege-escalation/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1c6e92c9-99f0-4e55-9cf2-0c234dc48f99\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1c6e92c9-99f0-4e55-9cf2-0c234dc48f99\"},{\"properties\":{\"displayName\":\"[Preview]: Configure log filter expressions and datastore to be used for full logs for specified Azure Machine Learning computes\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.MachineLearningServices.Data\",\"description\":\"This policy helps provide log filter expression and datastore to be used for full logs in specified Azure Machine Learning computes and can be assigned at the workspace. For more information, visit https://aka.ms/amlpolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Machine Learning\",\"preview\":true},\"parameters\":{\"computeNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Compute names where Azure ML jobs run\",\"description\":\"List of compute names where this policy should be applied. Ex. cpu-cluster;gpu-cluster. If no value is provided to this parameter then policy is applicable to all computes.\"},\"defaultValue\":[]},\"logFilters\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Log filter expressions\",\"description\":\"List of log filter expressions used to filter logs. Ex. ^prefix1.*$\"},\"defaultValue\":[]},\"datastore\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Datastore\",\"description\":\"Datastore used to store filtered logs. Ex. LogsDatastore which is configured in AML.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy.\"},\"allowedValues\":[\"enforceSetting\",\"disabled\"],\"defaultValue\":\"enforceSetting\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"field\":\"Microsoft.MachineLearningServices.Data/workspaces/computes/name\",\"in\":\"[parameters('computeNames')]\"},{\"value\":\"[length(parameters('computeNames'))]\",\"equals\":0}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"setting\":{\"name\":\"logFilter\",\"value\":{\"filters\":\"[parameters('logFilters')]\",\"datastore\":\"[parameters('datastore')]\"}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1d413020-63de-11ea-bc55-0242ac130003\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1d413020-63de-11ea-bc55-0242ac130003\"},{\"properties\":{\"displayName\":\"[Preview]: Ensure services listen only on allowed ports in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy enforces services to listen only on allowed ports in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"allowedServicePortsList\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed service ports list\",\"description\":\"The list of service ports allowed in a Kubernetes cluster.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/service-allowed-ports/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/service-allowed-ports/constraint.yaml\",\"values\":{\"allowedServicePorts\":\"[parameters('allowedServicePortsList')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/233a2a17-77ca-4fb1-9b6b-69223d272a44\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"233a2a17-77ca-4fb1-9b6b-69223d272a44\"},{\"properties\":{\"displayName\":\"[Deprecated]: Ensure services listen only on allowed ports in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy enforces services to listen only on allowed ports in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"allowedServicePortsRegex\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Allowed service ports regex\",\"description\":\"Regex representing service ports allowed in Kubernetes cluster. E.g. Regex for allowing ports 443,446 is ^(443|446)$\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"ServiceAllowedPorts\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/service-allowed-ports/limited-preview/gatekeeperpolicy.rego\",\"policyParameters\":{\"allowedServicePortsRegex\":\"[parameters('allowedServicePortsRegex')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/25dee3db-6ce0-4c02-ab5d-245887b24077\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"25dee3db-6ce0-4c02-ab5d-245887b24077\"},{\"properties\":{\"displayName\":\"[Deprecated]: Enforce HTTPS ingress in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy enforces HTTPS ingress in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"HttpsIngressOnly\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/ingress-https-only/limited-preview/gatekeeperpolicy.rego\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2fbff515-eecc-4b7e-9b63-fcc7138b7dc3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2fbff515-eecc-4b7e-9b63-fcc7138b7dc3\"},{\"properties\":{\"displayName\":\"[Preview]: Configure an approval endpoint called prior to jobs running for specified Azure Machine Learning computes\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.MachineLearningServices.Data\",\"description\":\"This policy helps configure an approval endpoint called prior to jobs running for specified Azure Machine Learning computes and can be assigned at the workspace. For more information. For more information, visit https://aka.ms/amlpolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Machine Learning\",\"preview\":true},\"parameters\":{\"computeNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Compute names where Azure ML jobs run\",\"description\":\"List of compute names where this policy should be applied. Ex. cpu-cluster;gpu-cluster. If no value is provided to this parameter then policy is applicable to all computes.\"},\"defaultValue\":[]},\"approvalEndpoint\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Approval endpoint\",\"description\":\"Approval endpoint that needs to be called before an Azure ML job is run. Ex. http://amlrunapproval/approve\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy.\"},\"allowedValues\":[\"enforceSetting\",\"disabled\"],\"defaultValue\":\"enforceSetting\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"field\":\"Microsoft.MachineLearningServices.Data/workspaces/computes/name\",\"in\":\"[parameters('computeNames')]\"},{\"value\":\"[length(parameters('computeNames'))]\",\"equals\":0}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"setting\":{\"name\":\"approvalEndpoint\",\"value\":\"[parameters('approvalEndpoint')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3948394e-63de-11ea-bc55-0242ac130003\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3948394e-63de-11ea-bc55-0242ac130003\"},{\"properties\":{\"displayName\":\"[Preview]: Enforce internal load balancers in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy enforces load balancers do not have public IPs in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/load-balancer-no-public-ips/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/load-balancer-no-public-ips/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3fc4dc25-5baf-40d8-9b05-7fe74c1bc64e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3fc4dc25-5baf-40d8-9b05-7fe74c1bc64e\"},{\"properties\":{\"displayName\":\"[Preview]: Ensure containers listen only on allowed ports in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy enforces containers to listen only on allowed ports in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"allowedContainerPortsList\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed container ports list\",\"description\":\"The list of container ports allowed in a Kubernetes cluster.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-allowed-ports/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-allowed-ports/constraint.yaml\",\"values\":{\"allowedContainerPorts\":\"[parameters('allowedContainerPortsList')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/440b515e-a580-421e-abeb-b159a61ddcbc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"440b515e-a580-421e-abeb-b159a61ddcbc\"},{\"properties\":{\"displayName\":\"[Preview]: Enforce labels on pods in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy enforces the specified labels are provided for pods in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"labelsList\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: List of labels\",\"description\":\"The list of labels to be specified on Pods in a Kubernetes cluster.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/pod-enforce-labels/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/pod-enforce-labels/constraint.yaml\",\"values\":{\"labels\":\"[parameters('labelsList')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/46592696-4c7b-4bf3-9e45-6c2763bdc0a6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"46592696-4c7b-4bf3-9e45-6c2763bdc0a6\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should not share host process ID or host IPC namespace\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy blocks pod containers from sharing the host process ID namespace and host IPC namespace in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc/.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/block-host-namespace/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/block-host-namespace/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/47a1ee2f-2a2a-4576-bf2a-e0e36709c2b8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"47a1ee2f-2a2a-4576-bf2a-e0e36709c2b8\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should only use allowed AppArmor profiles\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures containers only use allowed AppArmor profiles in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedProfiles\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed AppArmor profiles\",\"description\":\"The list of AppArmor profiles that containers are allowed to use. E.g. 'runtime/default;docker/default'. Provide empty list as input to block everything.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/enforce-apparmor-profile/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/enforce-apparmor-profile/constraint.yaml\",\"values\":{\"allowedProfiles\":\"[parameters('allowedProfiles')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/511f5417-5d12-434d-ab2e-816901e72a5e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"511f5417-5d12-434d-ab2e-816901e72a5e\"},{\"properties\":{\"displayName\":\"[Preview]: Configure allowed module authors for specified Azure Machine Learning computes\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.MachineLearningServices.Data\",\"description\":\"This policy helps provide allowed module authors in specified Azure Machine Learning computes and can be assigned at the workspace. For more information, visit https://aka.ms/amlpolicydoc.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Machine Learning\",\"preview\":true},\"parameters\":{\"computeNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Compute names where Azure ML jobs run\",\"description\":\"List of compute names where this policy should be applied. Ex. cpu-cluster;gpu-cluster. If no value is provided to this parameter then policy is applicable to all computes.\"},\"defaultValue\":[]},\"allowedModuleAuthors\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed module authors\",\"description\":\"List of allowed module authors.\"},\"defaultValue\":[]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy.\"},\"allowedValues\":[\"enforceSetting\",\"disabled\"],\"defaultValue\":\"enforceSetting\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"field\":\"Microsoft.MachineLearningServices.Data/workspaces/computes/name\",\"in\":\"[parameters('computeNames')]\"},{\"value\":\"[length(parameters('computeNames'))]\",\"equals\":0}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"setting\":{\"name\":\"allowedModuleAuthors\",\"value\":\"[parameters('allowedModuleAuthors')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/53c70b02-63dd-11ea-bc55-0242ac130003\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"53c70b02-63dd-11ea-bc55-0242ac130003\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should not use forbidden sysctl interfaces\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures containers do not use forbidden sysctl interfaces in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"forbiddenSysctls\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Forbidden sysctls\",\"description\":\"The list of plain sysctl names or sysctl patterns which end with *. The string * matches all sysctls. For more information, visit https://aka.ms/k8s-policy-sysctl-interfaces.\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/forbidden-sysctl-interfaces/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/forbidden-sysctl-interfaces/constraint.yaml\",\"values\":{\"forbiddenSysctls\":\"[parameters('forbiddenSysctls')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/56d0a13f-712f-466b-8416-56fb354fb823\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"56d0a13f-712f-466b-8416-56fb354fb823\"},{\"properties\":{\"displayName\":\"[Preview]: Configure allowed registries for specified Azure Machine Learning computes\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.MachineLearningServices.Data\",\"description\":\"This policy helps provide registries that are allowed in specified Azure Machine Learning computes and can be assigned at the workspace. For more information, visit https://aka.ms/amlpolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Machine Learning\",\"preview\":true},\"parameters\":{\"computeNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Compute names where Azure ML jobs run\",\"description\":\"List of compute names where this policy should be applied. Ex. cpu-cluster;gpu-cluster. If no value is provided to this parameter then policy is applicable to all computes.\"},\"defaultValue\":[]},\"allowedACRs\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Azure Container Registries\",\"description\":\"List of Azure Container Registries that can be used with Azure ML. Ex. amlrepo.azurecr.io;amlrepo.azurecr.io/foo\"},\"defaultValue\":[]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy.\"},\"allowedValues\":[\"enforceSetting\",\"disabled\"],\"defaultValue\":\"enforceSetting\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"field\":\"Microsoft.MachineLearningServices.Data/workspaces/computes/name\",\"in\":\"[parameters('computeNames')]\"},{\"value\":\"[length(parameters('computeNames'))]\",\"equals\":0}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"setting\":{\"name\":\"allowedACRs\",\"value\":\"[parameters('allowedACRs')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5853517a-63de-11ea-bc55-0242ac130003\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5853517a-63de-11ea-bc55-0242ac130003\"},{\"properties\":{\"displayName\":\"[Deprecated]: Ensure only allowed container images in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy ensures only allowed container images are running in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"allowedContainerImagesRegex\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Allowed container images regex\",\"description\":\"Regex representing container images allowed in Kubernetes cluster. E.g. Regex of azure container registry images is ^.+azurecr.io/.+$\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"ContainerAllowedImages\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/container-allowed-images/limited-preview/gatekeeperpolicy.rego\",\"policyParameters\":{\"allowedContainerImagesRegex\":\"[parameters('allowedContainerImagesRegex')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5f86cb6e-c4da-441b-807c-44bd0cc14e66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5f86cb6e-c4da-441b-807c-44bd0cc14e66\"},{\"properties\":{\"displayName\":\"[Preview]: Configure code signing for training code for specified Azure Machine Learning computes\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.MachineLearningServices.Data\",\"description\":\"This policy helps provide code signing for training code in specified Azure Machine Learning computes and can be assigned at the workspace. For more information, visit https://aka.ms/amlpolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Machine Learning\",\"preview\":true},\"parameters\":{\"computeNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Compute names where Azure Machine Learning jobs run\",\"description\":\"List of compute names where this policy should be applied. Example: 'cpu-cluster;gpu-cluster'. If no value is provided to this parameter, policy is applicable to all computes.\"},\"defaultValue\":[]},\"signingKey\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: PGP public key\",\"description\":\"Public key text in PGP public key format, with newline characters encoded as string literals \\\"\\\\r\\\" and \\\"\\\\n\\\".\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy.\"},\"allowedValues\":[\"enforceSetting\",\"disabled\"],\"defaultValue\":\"enforceSetting\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"field\":\"Microsoft.MachineLearningServices.Data/workspaces/computes/name\",\"in\":\"[parameters('computeNames')]\"},{\"value\":\"[length(parameters('computeNames'))]\",\"equals\":0}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"setting\":{\"name\":\"signingKey\",\"value\":\"[parameters('signingKey')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6a6f7384-63de-11ea-bc55-0242ac130003\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6a6f7384-63de-11ea-bc55-0242ac130003\"},{\"properties\":{\"displayName\":\"[Preview]: Configure allowed Python packages for specified Azure Machine Learning computes\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.MachineLearningServices.Data\",\"description\":\" This policy helps provide allowed Python packages in specified Azure Machine Learning computes and can be assigned at the workspace. For more information, visit https://aka.ms/amlpolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Machine Learning\",\"preview\":true},\"parameters\":{\"computeNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Compute names where Azure ML jobs run\",\"description\":\"List of compute names where this policy should be applied. Ex. cpu-cluster;gpu-cluster. If no value is provided to this parameter then policy is applicable to all computes.\"},\"defaultValue\":[]},\"allowedPythonPackageChannels\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed Python package indexes\",\"description\":\"List of allowed Python package indexes. Ex. http://somepythonindex.org \"},\"defaultValue\":[]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy.\"},\"allowedValues\":[\"enforceSetting\",\"disabled\"],\"defaultValue\":\"enforceSetting\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"field\":\"Microsoft.MachineLearningServices.Data/workspaces/computes/name\",\"in\":\"[parameters('computeNames')]\"},{\"value\":\"[length(parameters('computeNames'))]\",\"equals\":0}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"setting\":{\"name\":\"allowedPythonPackageChannels\",\"value\":\"[parameters('allowedPythonPackageChannels')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/77eeea86-7e81-4a7d-9067-de844d096752\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"77eeea86-7e81-4a7d-9067-de844d096752\"},{\"properties\":{\"displayName\":\"[Deprecated]: Do not allow privileged containers in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy does not allow privileged containers creation in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"ContainerNoPrivilege\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/container-no-privilege/limited-preview/gatekeeperpolicy.rego\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7ce7ac02-a5c6-45d6-8d1b-844feb1c1531\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7ce7ac02-a5c6-45d6-8d1b-844feb1c1531\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster pods should only use approved host network and port range\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy controls pod access to the host network and the allowable host port range in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowHostNetwork\":{\"type\":\"Boolean\",\"metadata\":{\"displayName\":\"[Preview]: Allow host network usage\",\"description\":\"Set this value to true if pod is allowed to use host network otherwise false.\"},\"defaultValue\":false},\"minPort\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: Min host port\",\"description\":\"The minimum value in the allowable host port range that pods can use in the host network namespace.\"},\"defaultValue\":0},\"maxPort\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: Max host port\",\"description\":\"The maximum value in the allowable host port range that pods can use in the host network namespace.\"},\"defaultValue\":0}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/host-network-ports/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/host-network-ports/constraint.yaml\",\"values\":{\"allowHostNetwork\":\"[parameters('allowHostNetwork')]\",\"minPort\":\"[parameters('minPort')]\",\"maxPort\":\"[parameters('maxPort')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/82985f06-dc18-4a48-bc1c-b9f4f0098cfe\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"82985f06-dc18-4a48-bc1c-b9f4f0098cfe\"},{\"properties\":{\"displayName\":\"[Preview]: Manage certificates issued by an integrated CA\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages certificates are issued by a specified key vault integrated Certificate Authority.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"allowedCAs\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed Azure Key Vault Supported CAs\",\"description\":\"The list of allowed certificate authorities supported by Azure Key Vault.\"},\"allowedValues\":[\"DigiCert\",\"GlobalSign\"],\"defaultValue\":[\"DigiCert\",\"GlobalSign\"]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/issuer.name\",\"notIn\":\"[parameters('allowedCAs')]\"},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8e826246-c976-48f6-b03e-619bb92b3d82\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8e826246-c976-48f6-b03e-619bb92b3d82\"},{\"properties\":{\"displayName\":\"[Preview]: Do not allow privileged containers in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy does not allow privileged containers creation in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-no-privilege/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-no-privilege/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/95edb821-ddaf-4404-9732-666045e056b4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"95edb821-ddaf-4404-9732-666045e056b4\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should only use allowed seccomp profiles\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures containers only use allowed seccomp profiles in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedProfiles\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed seccomp profiles\",\"description\":\"The list of seccomp profiles that containers are allowed to use. E.g. 'runtime/default;docker/default'. Provide empty list as input to block everything.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-seccomp-profiles/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-seccomp-profiles/constraint.yaml\",\"values\":{\"allowedProfiles\":\"[parameters('allowedProfiles')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/975ce327-682c-4f2e-aa46-b9598289b86c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"975ce327-682c-4f2e-aa46-b9598289b86c\"},{\"properties\":{\"displayName\":\"[Preview]: Manage certificates issued by a non-integrated CA\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages certificates are issued by a specified non-integrated Certificate Authority.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"caCommonName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: The common name of the certificate authority\",\"description\":\"The common name (CN) of the Certificate Authority (CA) provider. For example, for an issuer CN = Contoso, OU = .., DC = .., you can specify Contoso\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/issuer.commonName\",\"notContains\":\"[parameters('caCommonName')]\"},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a22f4a40-01d3-4c7d-8071-da157eeff341\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a22f4a40-01d3-4c7d-8071-da157eeff341\"},{\"properties\":{\"displayName\":\"[Deprecated]: Ensure CPU and memory resource limits defined on containers in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy ensures CPU and memory resource limits are defined on containers in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"ContainerResourceLimits\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/container-resource-limits/limited-preview/gatekeeperpolicy.rego\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a2d3ed81-8d11-4079-80a5-1faadc0024f4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a2d3ed81-8d11-4079-80a5-1faadc0024f4\"},{\"properties\":{\"displayName\":\"[Deprecated]: Enforce internal load balancers in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy enforces load balancers do not have public IPs in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"LoadBalancersInternal\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/loadbalancer-no-publicips/limited-preview/gatekeeperpolicy.rego\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a74d8f00-2fd9-4ce4-968e-0ee1eb821698\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a74d8f00-2fd9-4ce4-968e-0ee1eb821698\"},{\"properties\":{\"displayName\":\"[Deprecated]: Enforce unique ingress hostnames across namespaces in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy enforces unique ingress hostnames across namespaces in a Kubernetes cluster. For instructions on using this policy, please go to https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"3.0.1-deprecated\",\"category\":\"Kubernetes\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Deprecated]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/ingress-hostnames-conflict/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/ingress-hostnames-conflict/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b2fd3e59-6390-4f2b-8247-ea676bd03e2d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b2fd3e59-6390-4f2b-8247-ea676bd03e2d\"},{\"properties\":{\"displayName\":\"[Preview]: Manage allowed curve names for elliptic curve cryptography certificates\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages the allowed elliptic curve names for elliptic curve cryptography certificates.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"allowedECNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed elliptic curve names\",\"description\":\"The list of allowed curve names for elliptic curve cryptography certificates.\"},\"allowedValues\":[\"P-256\",\"P-256K\",\"P-384\",\"P-521\"],\"defaultValue\":[\"P-256\",\"P-256K\",\"P-384\",\"P-521\"]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/keyProperties.keyType\",\"in\":[\"EC\",\"EC-HSM\"]},{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/keyProperties.ellipticCurveName\",\"notIn\":\"[parameters('allowedECNames')]\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bd78111f-4953-4367-9fd5-7e08808b54bf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bd78111f-4953-4367-9fd5-7e08808b54bf\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should only use allowed capabilities\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures containers only use allowed capabilities in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedCapabilities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed capabilities\",\"description\":\"The list of capabilities that are allowed to be added to a container. Provide empty list as input to block everything.\"},\"defaultValue\":[]},\"requiredDropCapabilities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Required drop capabilities\",\"description\":\"The list of capabilities that must be dropped by a container.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-allowed-capabilities/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-allowed-capabilities/constraint.yaml\",\"values\":{\"allowedCapabilities\":\"[parameters('allowedCapabilities')]\",\"requiredDropCapabilities\":\"[parameters('requiredDropCapabilities')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c26596ff-4d70-4e6a-9a30-c2506bd2f80c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c26596ff-4d70-4e6a-9a30-c2506bd2f80c\"},{\"properties\":{\"displayName\":\"[Preview]: Manage minimum key size for RSA certificates\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages the minimum key size for RSA certificates.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"minimumRSAKeySize\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: Minimum RSA key size\",\"description\":\"The minimum key size for RSA certificates.\"},\"allowedValues\":[2048,3072,4096]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/keyProperties.keyType\",\"in\":[\"RSA\",\"RSA-HSM\"]},{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/keyProperties.keySize\",\"less\":\"[parameters('minimumRSAKeySize')]\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cee51871-e572-4576-855c-047c820360f0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cee51871-e572-4576-855c-047c820360f0\"},{\"properties\":{\"displayName\":\"[Deprecated]: Enforce unique ingress hostnames across namespaces in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy enforces unique ingress hostnames across namespaces in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"UniqueIngressHostnames\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/ingress-hostnames-conflict/limited-preview/gatekeeperpolicy.rego\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d011d9f7-ba32-4005-b727-b3d09371ca60\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d011d9f7-ba32-4005-b727-b3d09371ca60\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should run with a read only root file system\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures containers run with a read only root file system in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc/.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/read-only-root-filesystem/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/read-only-root-filesystem/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/df49d893-a74c-421d-bc95-c663042e5b80\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"df49d893-a74c-421d-bc95-c663042e5b80\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster pods and containers should only use allowed SELinux options\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures pods and containers only use allowed SELinux options in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedSELinuxOptions\":{\"type\":\"Object\",\"metadata\":{\"displayName\":\"[Preview]: Allowed SELinux options\",\"description\":\"The allowed configurations for pod and container level SELinux Options. Provide empty options list as input to block everything.\",\"schema\":{\"type\":\"object\",\"properties\":{\"options\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"string\"},\"role\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}}},\"required\":[\"options\"],\"additionalProperties\":false}},\"defaultValue\":{\"options\":[]}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/selinux/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/selinux/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\",\"allowedSELinuxOptions\":\"[parameters('allowedSELinuxOptions').options]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e1e6c427-07d9-46ab-9689-bfa85431e636\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e1e6c427-07d9-46ab-9689-bfa85431e636\"},{\"properties\":{\"displayName\":\"[Preview]: Ensure container CPU and memory resource limits do not exceed the specified limits in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures container CPU and memory resource limits are defined and do not exceed the specified limits in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"cpuLimit\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Max allowed CPU units\",\"description\":\"The maximum CPU units allowed for a container. E.g. 200m. For more information, please refer https://aka.ms/k8s-policy-pod-limits\"}},\"memoryLimit\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Max allowed memory bytes\",\"description\":\"The maximum memory bytes allowed for a container. E.g. 1Gi. For more information, please refer https://aka.ms/k8s-policy-pod-limits\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-resource-limits/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-resource-limits/constraint.yaml\",\"values\":{\"cpuLimit\":\"[parameters('cpuLimit')]\",\"memoryLimit\":\"[parameters('memoryLimit')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e345eecc-fa47-480f-9e88-67dcc122b164\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e345eecc-fa47-480f-9e88-67dcc122b164\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster pods and containers should only run with approved user and group IDs\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy controls the user, primary group, supplemental group and file system group IDs that pods and containers can use to run in a Kubernetes Cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"runAsUserRule\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Run as user rule\",\"description\":\"The 'RunAsUser' rule that containers are allowed to run with.\"},\"allowedValues\":[\"MustRunAs\",\"MustRunAsNonRoot\",\"RunAsAny\"],\"defaultValue\":\"MustRunAsNonRoot\"},\"runAsUserRanges\":{\"type\":\"Object\",\"metadata\":{\"displayName\":\"[Preview]: Allowed user ID ranges\",\"description\":\"The user ID ranges that are allowed for containers to use.\",\"schema\":{\"type\":\"object\",\"properties\":{\"ranges\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"min\":{\"type\":\"integer\"},\"max\":{\"type\":\"integer\"}},\"required\":[\"min\",\"max\"],\"additionalProperties\":false}}},\"required\":[\"ranges\"],\"additionalProperties\":false}},\"defaultValue\":{\"ranges\":[]}},\"runAsGroupRule\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Run as group rule\",\"description\":\"The 'RunAsGroup' rule that containers are allowed to run with.\"},\"allowedValues\":[\"MustRunAs\",\"MayRunAs\",\"RunAsAny\"],\"defaultValue\":\"RunAsAny\"},\"runAsGroupRanges\":{\"type\":\"Object\",\"metadata\":{\"displayName\":\"[Preview]: Allowed group ID ranges\",\"description\":\"The group ID ranges that are allowed for containers to use.\",\"schema\":{\"type\":\"object\",\"properties\":{\"ranges\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"min\":{\"type\":\"integer\"},\"max\":{\"type\":\"integer\"}},\"required\":[\"min\",\"max\"],\"additionalProperties\":false}}},\"required\":[\"ranges\"],\"additionalProperties\":false}},\"defaultValue\":{\"ranges\":[]}},\"supplementalGroupsRule\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Supplemental group rule\",\"description\":\"The 'SupplementalGroups' rule that containers are allowed to run with.\"},\"allowedValues\":[\"MustRunAs\",\"MayRunAs\",\"RunAsAny\"],\"defaultValue\":\"RunAsAny\"},\"supplementalGroupsRanges\":{\"type\":\"Object\",\"metadata\":{\"displayName\":\"[Preview]: Allowed supplemental group ID ranges\",\"description\":\"The supplemental group ID ranges that are allowed for containers to use.\",\"schema\":{\"type\":\"object\",\"properties\":{\"ranges\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"min\":{\"type\":\"integer\"},\"max\":{\"type\":\"integer\"}},\"required\":[\"min\",\"max\"],\"additionalProperties\":false}}},\"required\":[\"ranges\"],\"additionalProperties\":false}},\"defaultValue\":{\"ranges\":[]}},\"fsGroupRule\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: File system group rule\",\"description\":\"The 'FSGroup' rule that containers are allowed to run with.\"},\"allowedValues\":[\"MustRunAs\",\"MayRunAs\",\"RunAsAny\"],\"defaultValue\":\"RunAsAny\"},\"fsGroupRanges\":{\"type\":\"Object\",\"metadata\":{\"displayName\":\"[Preview]: Allowed file system group ID ranges\",\"description\":\"The file system group ranges that are allowed for pods to use.\",\"schema\":{\"type\":\"object\",\"properties\":{\"ranges\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"min\":{\"type\":\"integer\"},\"max\":{\"type\":\"integer\"}},\"required\":[\"min\",\"max\"],\"additionalProperties\":false}}},\"required\":[\"ranges\"],\"additionalProperties\":false}},\"defaultValue\":{\"ranges\":[]}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-users-groups/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-users-groups/constraint.yaml\",\"values\":{\"runAsUser\":{\"rule\":\"[parameters('runAsUserRule')]\",\"ranges\":\"[parameters('runAsUserRanges').ranges]\"},\"runAsGroup\":{\"rule\":\"[parameters('runAsGroupRule')]\",\"ranges\":\"[parameters('runAsGroupRanges').ranges]\"},\"supplementalGroups\":{\"rule\":\"[parameters('supplementalGroupsRule')]\",\"ranges\":\"[parameters('supplementalGroupsRanges').ranges]\"},\"fsGroup\":{\"rule\":\"[parameters('fsGroupRule')]\",\"ranges\":\"[parameters('fsGroupRanges').ranges]\"},\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f06ddb64-5fa3-4b77-b166-acb36f7f6042\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f06ddb64-5fa3-4b77-b166-acb36f7f6042\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster pod FlexVolume volumes should only use allowed drivers\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures pod FlexVolume volumes only use allowed drivers in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedFlexVolumeDrivers\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed FlexVolume drivers\",\"description\":\"The list of drivers that FlexVolume volumes are allowed to use. Provide empty list as input to block everything.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/flexvolume-drivers/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/flexvolume-drivers/constraint.yaml\",\"values\":{\"allowedFlexVolumeDrivers\":\"[parameters('allowedFlexVolumeDrivers')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f4a8fce0-2dd5-4c21-9a36-8f0ec809d663\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f4a8fce0-2dd5-4c21-9a36-8f0ec809d663\"},{\"properties\":{\"displayName\":\"[Preview]: Manage certificates that are within a specified number of days of expiration\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages certificates that are within a specified number of days to their expiration date.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"daysToExpire\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: Days to expire\",\"description\":\"The number of days for a certificate to expire.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/attributes.expiresOn\",\"lessOrEquals\":\"[addDays(utcNow(), parameters('daysToExpire'))]\"},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f772fb64-8e40-40ad-87bc-7706e1949427\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f772fb64-8e40-40ad-87bc-7706e1949427\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should only use allowed ProcMountType\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures containers only use allowed ProcMountType in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"procMountType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: ProcMountType\",\"description\":\"The ProcMountType that containers are allowed to use in the cluster.\"},\"allowedValues\":[\"Unmasked\",\"Default\"],\"defaultValue\":\"Default\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-proc-mount-types/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-proc-mount-types/constraint.yaml\",\"values\":{\"procMount\":\"[parameters('procMountType')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f85eb0dd-92ee-40e9-8a76-db25a507d6d3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f85eb0dd-92ee-40e9-8a76-db25a507d6d3\"},{\"properties\":{\"displayName\":\"[Preview]: Ensure only allowed container images in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures only allowed container images are running in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"allowedContainerImagesRegex\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Allowed container images regex\",\"description\":\"The RegEx rule used to match allowed container images in a Kubernetes cluster. For example, to allow any Azure Container Registry image by matching partial path: ^.+azurecr.io/.+$\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-allowed-images/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-allowed-images/constraint.yaml\",\"values\":{\"allowedContainerImagesRegex\":\"[parameters('allowedContainerImagesRegex')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/febd0533-8e55-448f-b837-bd0e06f16469\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"febd0533-8e55-448f-b837-bd0e06f16469\"},{\"properties\":{\"displayName\":\"mypolicy89612f\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:02.0814009Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy0dd04515\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy0dd04515\"},{\"properties\":{\"displayName\":\"mypolicy30923f\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:02.1425381Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy5e873449\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy5e873449\"},{\"properties\":{\"displayName\":\"mypolicy82169f\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-04-28T08:54:49.5003837Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy8be16327\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy8be16327\"},{\"properties\":{\"displayName\":\"mypolicy81329b\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-03-10T02:20:34.3774568Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policyc7224351\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policyc7224351\"},{\"properties\":{\"displayName\":\"mypolicy97203d\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"9c776d20-14a6-4ede-b35d-bdf4b5e2bd75\",\"createdOn\":\"2020-05-13T04:45:01.7136345Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policyde274257\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policyde274257\"},{\"properties\":{\"displayName\":\"mypolicy12287f\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"9c776d20-14a6-4ede-b35d-bdf4b5e2bd75\",\"createdOn\":\"2020-05-13T04:39:55.2215544Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policye7470801\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policye7470801\"},{\"properties\":{\"displayName\":\"mypolicy360728\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"9c776d20-14a6-4ede-b35d-bdf4b5e2bd75\",\"createdOn\":\"2020-03-23T07:15:32.8766378Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policyf7360322\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policyf7360322\"},{\"properties\":{\"displayName\":\"mypolicy168409\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-03-10T02:23:51.5343789Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policyf8001090\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policyf8001090\"},{\"properties\":{\"displayName\":\"mypolicy612512\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-03-09T09:05:28.2288632Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policyfab16899\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policyfab16899\"},{\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:24:01.1484325Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HDInsight/clusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HDInsight/clusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/11094169db59074f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"11094169db59074f\"},{\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:32:57.4990001Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HDInsight/clusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"tags['NRMSVNetIntException']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['NRMSVNetIntException']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"not\":{\"field\":\"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HDInsight/clusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/1b0f9cd579f5f04a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1b0f9cd579f5f04a\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack append policy for vmss_1.2\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-23T19:35:01.9059556Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname1\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"resourcegrouptagname2\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname1')]]\",\"equals\":\"\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname2')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/virtualMachineProfile\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].type\",\"notEquals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].type\",\"notEquals\":\"VirtualMachineRuntimeService\"},{\"not\":{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.provisionVMAgent\",\"equals\":\"false\"}}]},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*]\",\"value\":{\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{}}}}]}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/1b5a57eabcce7d7d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1b5a57eabcce7d7d\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-102_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:23.2021003Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/21f42d11eb755867\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"21f42d11eb755867\"},{\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:57.6004986Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.ContainerService/managedClusters/networkProfile.networkPlugin\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.ContainerService/managedClusters/networkProfile.networkPlugin\",\"equals\":\"azure\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/26db8d27b6fa91aa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"26db8d27b6fa91aa\"},{\"properties\":{\"displayName\":\"audit ssh auth on existing resources_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMs use password-only authentication for SSH on existing resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-12-06T21:04:41.4787743Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"notEquals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"True\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/28b685eba93cc71f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"28b685eba93cc71f\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-101_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:14.0863618Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/34612a1acdd0093\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34612a1acdd0093\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-103_1.4\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:27:38.9264536Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/3c07197392ad62f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3c07197392ad62f\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-105_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:18.4394851Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/40879463350508de\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"40879463350508de\"},{\"properties\":{\"displayName\":\"audit ssh auth on new vmss_1.4\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMSSs use password-only authentication for SSH on new resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-05-12T23:41:52.0436302Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyof\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"exists\":\"False\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/408b8964022134ba\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"408b8964022134ba\"},{\"properties\":{\"displayName\":\"sqlads-auditifnotexists-vulnerability assessment should be enabled on your sql servers_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:37.034264Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the SQL Server\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('tagname')]]\",\"equals\":\"\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/vulnerabilityAssessments\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/vulnerabilityAssessments/recurringScans.isEnabled\",\"equals\":\"True\"}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/410c2966a1e1856e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"410c2966a1e1856e\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-103_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:16.1955196Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/42c70bae0daee0b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"42c70bae0daee0b3\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-108_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:59.0487626Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/532396f35af78946\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"532396f35af78946\"},{\"properties\":{\"displayName\":\"audit ssh auth on new vms_1.4\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMs use password-only authentication for SSH on new resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-05-12T23:41:56.0529781Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"anyof\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"exists\":\"False\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/566405fe94cbf731\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"566405fe94cbf731\"},{\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_2.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:32:58.4608022Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts/pools\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"tags['NRMSVNetIntException']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['NRMSVNetIntException']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"anyOf\":[{\"field\":\"Microsoft.Batch/batchAccounts/pools/networkConfiguration.subnetId\",\"exists\":\"false\"},{\"field\":\"Microsoft.Batch/batchAccounts/pools/networkConfiguration.subnetId\",\"in\":[\"null\",\"\"]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/5aac1290d24c772d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5aac1290d24c772d\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-101_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:18.6642999Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/5d9c8a259a63a29b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5d9c8a259a63a29b\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack append policy for vmss_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-12T00:29:53.2880644Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/virtualMachineProfile\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].type\",\"notEquals\":\"GenevaMonitoring\"}]},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*]\",\"value\":{\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{}}}}]}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/5e6e7d4c3e34256b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5e6e7d4c3e34256b\"},{\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-06-26T21:23:29.4182093Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"priorities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Rule Priority\",\"description\":\"List of Rule Priority Numbers reserved for Security\"}},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups/securityRules\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"In\":\"[parameters('priorities')]\"},{\"field\":\"location\",\"In\":\"[parameters('allowedLocations')]\"},{\"allOf\":[{\"not\":{\"field\":\"name\",\"contains\":\"Cleanuptool\"}},{\"not\":{\"field\":\"name\",\"contains\":\"NRMS-Rule-\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/6221d088cd1bcdc3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6221d088cd1bcdc3\"},{\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:33:58.9010954Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"priorities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Rule Priority\",\"description\":\"List of Rule Priority Numbers reserved for Security\"}},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups/securityRules\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"In\":\"[parameters('priorities')]\"},{\"field\":\"location\",\"In\":\"[parameters('allowedLocations')]\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"allOf\":[{\"not\":{\"field\":\"name\",\"contains\":\"Cleanuptool\"}},{\"not\":{\"field\":\"name\",\"contains\":\"NRMS-Rule-\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/686f7311dc548f32\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"686f7311dc548f32\"},{\"properties\":{\"displayName\":\"deny creation of new linux vmss with ssh password auth_1.5\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMSSs use password-only authentication for SSH on new resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-07-14T00:05:22.7366216Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyof\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"exists\":\"False\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/6e87f6ee1518ae1d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6e87f6ee1518ae1d\"},{\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:59.788546Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.Batch/batchAccounts/poolAllocationMode\",\"notIn\":[\"batchservice\",\"null\",\"\"]}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/74c98b59a6341488\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"74c98b59a6341488\"},{\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:34:01.1631389Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"tags['SkipNRMSNSG']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSNSG']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"not\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"exists\":\"false\"}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/789cfec91f9e1858\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"789cfec91f9e1858\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-102_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:28.7454992Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/7c066e9166289efb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7c066e9166289efb\"},{\"properties\":{\"displayName\":\"nrms-nsg-subnet_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:27:19.9099766Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"resourceGroupExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Resource Groups Excluded\",\"description\":\"Any VNet in a resource group in this list will be ignored.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"},{\"value\":\"[resourceGroup().name]\",\"notIn\":\"[parameters('resourceGroupExclusions')]\"},{\"field\":\"name\",\"notContains\":\"GatewaySubnet\"},{\"field\":\"tags['SkipNRMSNSG']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSNSG']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"anyOf\":[{\"not\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"notIn\":[\"null\",\"\"]}},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"DoesNotExistBecauseThisIsToCauseDeployment\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\"contentVersion\":\"1.0.0.1\",\"parameters\":{\"fullSubnetName\":{\"type\":\"String\"},\"allowedLocations\":{\"type\":\"Array\"}},\"variables\":{\"vnetName\":\"[first(split(parameters('fullSubnetName'),'/'))]\",\"subnetName\":\"[last(split(parameters('fullSubnetName'),'/'))]\",\"rawNsgName\":\"[concat(variables('vnetName'),'-', variables('subnetName'), '-NRMS')]\",\"nsgName\":\"[if(greater(length(variables('rawNsgName')),75),substring(variables('rawNsgName'),0,75),variables('rawNsgName'))]\",\"nsgUpdateJson\":{\"networkSecurityGroup\":{\"id\":\"[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]\"}}},\"resources\":[{\"condition\":\"[contains(parameters('allowedLocations'), resourceGroup().location)]\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"name\":\"[variables('nsgName')]\",\"apiVersion\":\"2018-03-01\",\"location\":\"[resourceGroup().location]\",\"tags\":{\"Creator\":\"Automatically added by NRMS Azure Policy\",\"NRMS-Info\":\"http://aka.ms/nrms\",\"NRMS-Version\":\"2019-03-20\"},\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"NRMS-Update-Subnet-Without-NSG\",\"apiVersion\":\"2018-05-01\",\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"resources\":[{\"apiVersion\":\"2018-11-01\",\"type\":\"Microsoft.Network/virtualNetworks/subnets\",\"name\":\"[parameters('fullSubnetName')]\",\"location\":\"[resourceGroup().location]\",\"properties\":\"[union(reference(resourceId('Microsoft.Network/virtualNetworks/subnets', variables('vnetName'), variables('subnetName')), '2018-11-01'), variables('nsgUpdateJson'))]\"}]}},\"dependsOn\":[\"[variables('nsgName')]\"]}]},\"parameters\":{\"fullSubnetName\":{\"value\":\"[field('fullName')]\"},\"allowedLocations\":{\"value\":\"[parameters('allowedLocations')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/852aeb0ee2c0a3a5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"852aeb0ee2c0a3a5\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-109_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:26.3856504Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/8657a5b3e83f5307\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8657a5b3e83f5307\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack autoupdate policy for vmss_2.2\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-23T19:35:03.2379239Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname1\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"resourcegrouptagname2\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname1')]]\",\"equals\":\"\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname2')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.provisionVMAgent\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Geneva\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/enableAutomaticUpgrade\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"VirtualMachineRuntimeService\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Compute\"}]}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmssName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2018-10-01\",\"name\":\"[concat(parameters('vmssName'), '/Microsoft.Azure.Geneva.GenevaMonitoring')]\",\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}]},\"parameters\":{\"vmssName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/884fc572e38f5fe9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"884fc572e38f5fe9\"},{\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-06-26T21:23:24.5730438Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.ContainerService/managedClusters/networkProfile.networkPlugin\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.ContainerService/managedClusters/networkProfile.networkPlugin\",\"equals\":\"azure\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/88adc7594e846097\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"88adc7594e846097\"},{\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-06-26T21:23:23.3819739Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.Batch/batchAccounts/poolAllocationMode\",\"notIn\":[\"batchservice\",\"null\",\"\"]}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/891d9369d047f6ac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"891d9369d047f6ac\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-104_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:15.9708014Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/8d69d8ee570b639\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8d69d8ee570b639\"},{\"properties\":{\"displayName\":\"sqlads-auditifnotexists-auditing should be enabled on advanced data security settings on sql server_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:36.9468814Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the SQL Server\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"setting\":{\"type\":\"String\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('tagname')]]\",\"equals\":\"\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/auditingSettings\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/auditingSettings.state\",\"equals\":\"[parameters('setting')]\"}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/8fce770def99399\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8fce770def99399\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-106_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:28.0710497Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/8fdec1516a77bbd6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8fdec1516a77bbd6\"},{\"properties\":{\"displayName\":\"audit ssh auth on existing vmss_1.4\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMSSs use password-only authentication for SSH on existing resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-05-12T23:41:53.0207896Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration\",\"exists\":\"True\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9135d7012c4033cb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9135d7012c4033cb\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-105_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:42.3856221Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/91f42c0ca66ff7dd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"91f42c0ca66ff7dd\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack append policy for vmss_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-08-13T21:33:05.8939153Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/virtualMachineProfile\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].type\",\"notEquals\":\"GenevaMonitoring\"},{\"not\":{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.provisionVMAgent\",\"equals\":\"false\"}}]},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*]\",\"value\":{\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{}}}}]}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9534973cc57db387\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9534973cc57db387\"},{\"properties\":{\"displayName\":\"nrms-nsg-subnet_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:09.005562Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"resourceGroupExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Resource Groups Excluded\",\"description\":\"Any VNet in a resource group in this list will be ignored.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"},{\"value\":\"[resourceGroup().name]\",\"notIn\":\"[parameters('resourceGroupExclusions')]\"},{\"field\":\"name\",\"notContains\":\"GatewaySubnet\"},{\"field\":\"tags['SkipNRMSNSG']\",\"exists\":\"false\"},{\"anyOf\":[{\"not\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"notIn\":[\"null\",\"\"]}},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"DoesNotExistBecauseThisIsToCauseDeployment\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\"contentVersion\":\"1.0.0.1\",\"parameters\":{\"fullSubnetName\":{\"type\":\"String\"},\"allowedLocations\":{\"type\":\"Array\"}},\"variables\":{\"vnetName\":\"[first(split(parameters('fullSubnetName'),'/'))]\",\"subnetName\":\"[last(split(parameters('fullSubnetName'),'/'))]\",\"rawNsgName\":\"[concat(variables('vnetName'),'-', variables('subnetName'), '-NRMS')]\",\"nsgName\":\"[if(greater(length(variables('rawNsgName')),75),substring(variables('rawNsgName'),0,75),variables('rawNsgName'))]\",\"nsgUpdateJson\":{\"networkSecurityGroup\":{\"id\":\"[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]\"}}},\"resources\":[{\"condition\":\"[contains(parameters('allowedLocations'), resourceGroup().location)]\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"name\":\"[variables('nsgName')]\",\"apiVersion\":\"2018-03-01\",\"location\":\"[resourceGroup().location]\",\"tags\":{\"Creator\":\"Automatically added by NRMS Azure Policy\",\"NRMS-Info\":\"http://aka.ms/nrms\",\"NRMS-Version\":\"2019-03-20\"},\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"NRMS-Update-Subnet-Without-NSG\",\"apiVersion\":\"2018-05-01\",\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"resources\":[{\"apiVersion\":\"2018-11-01\",\"type\":\"Microsoft.Network/virtualNetworks/subnets\",\"name\":\"[parameters('fullSubnetName')]\",\"location\":\"[resourceGroup().location]\",\"properties\":\"[union(reference(resourceId('Microsoft.Network/virtualNetworks/subnets', variables('vnetName'), variables('subnetName')), '2018-11-01'), variables('nsgUpdateJson'))]\"}]}},\"dependsOn\":[\"[variables('nsgName')]\"]}]},\"parameters\":{\"fullSubnetName\":{\"value\":\"[field('fullName')]\"},\"allowedLocations\":{\"value\":\"[parameters('allowedLocations')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9644d220df7c67a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9644d220df7c67a\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-105_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:26.1317211Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9aca16db50fb914c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9aca16db50fb914c\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-106_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:49.8100037Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9b8d76c443040b08\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9b8d76c443040b08\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-101_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:02.8942844Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9d78e6174e6e69be\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d78e6174e6e69be\"},{\"properties\":{\"displayName\":\"audit ssh auth on existing vms_1.4\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMs use password-only authentication for SSH on existing resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-05-12T23:41:51.7770777Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"True\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9f778de970219a8a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9f778de970219a8a\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack autoupdate policy for vmss_2.1\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-08-13T21:33:07.7274256Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"not\":{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.provisionVMAgent\",\"equals\":\"false\"}}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Geneva\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/enableAutomaticUpgrade\",\"equals\":\"true\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmssName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2018-10-01\",\"name\":\"[concat(parameters('vmssName'), '/Microsoft.Azure.Geneva.GenevaMonitoring')]\",\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}]},\"parameters\":{\"vmssName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/a646ce8cd06eac96\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a646ce8cd06eac96\"},{\"properties\":{\"displayName\":\"sqlads-auditifnotexists-atp types should be set to 'all' in sql server advanced data security settings_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:40.6774801Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the SQL Server\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('tagname')]]\",\"equals\":\"\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/securityAlertPolicies/disabledAlerts[*]\",\"equals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/ac3fc8ad361a9985\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ac3fc8ad361a9985\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack autoupdate policy for iaas_1.0\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-12T00:29:57.8179024Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Geneva\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/enableAutomaticUpgrade\",\"equals\":\"true\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2018-10-01\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.Azure.Geneva.GenevaMonitoring')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{},\"protectedSettings\":{}}}]},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b1d9e961d02c54d5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b1d9e961d02c54d5\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-106_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:22.7538641Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b4482f205fb6bbc1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b4482f205fb6bbc1\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack autoupdate policy for iaas_1.1\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-08-13T21:33:07.0355992Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"not\":{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.provisionVMAgent\",\"equals\":\"false\"}}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Geneva\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/enableAutomaticUpgrade\",\"equals\":\"true\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2018-10-01\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.Azure.Geneva.GenevaMonitoring')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{},\"protectedSettings\":{}}}]},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b70c6f621534db23\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b70c6f621534db23\"},{\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-06-26T21:23:22.8439408Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HDInsight/clusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HDInsight/clusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b7a0969ff954eaf7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b7a0969ff954eaf7\"},{\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:24:01.4784818Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"not\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"exists\":\"false\"}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b8f1faa61cb41f92\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b8f1faa61cb41f92\"},{\"properties\":{\"displayName\":\"audit ssh auth on new vms_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMs use password-only authentication for SSH on new resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-25T22:01:41.9137032Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyof\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"exists\":\"False\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b9c65c79770e8c51\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b9c65c79770e8c51\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-104_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:20.3270264Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/bac0fb65020410a4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bac0fb65020410a4\"},{\"properties\":{\"displayName\":\"deny creation of new linux vms with ssh password auth_1.5\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy denied the creation of Linux VMs which use password-only authentication for SSH.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-07-14T00:05:21.8198103Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"anyof\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"exists\":\"False\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/bfa798085e63e6b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bfa798085e63e6b3\"},{\"properties\":{\"displayName\":\"audit ssh auth on existing vms_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMs use password-only authentication for SSH on existing resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-25T22:01:38.4305071Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"True\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/c2f5d119c894ce34\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c2f5d119c894ce34\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-107_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:32.278708Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/c4184f404efb2fe5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c4184f404efb2fe5\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack autoupdate policy for iaas_1.2\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-23T19:35:05.015959Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname1\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"resourcegrouptagname2\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname1')]]\",\"equals\":\"\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname2')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"not\":{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.provisionVMAgent\",\"equals\":\"false\"}}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Geneva\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/enableAutomaticUpgrade\",\"equals\":\"true\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2018-10-01\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.Azure.Geneva.GenevaMonitoring')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{},\"protectedSettings\":{}}}]},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/c6cc0ff730a1cb3c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c6cc0ff730a1cb3c\"},{\"properties\":{\"displayName\":\"audit ssh auth on new vmss_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMSSs use password-only authentication for SSH on new resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-25T22:01:43.9041265Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyof\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"exists\":\"False\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/c901e756f9e2e56e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c901e756f9e2e56e\"},{\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:33:00.4442389Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"tags['NRMSVNetIntException']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['NRMSVNetIntException']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"not\":{\"field\":\"Microsoft.ContainerService/managedClusters/networkProfile.networkPlugin\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.ContainerService/managedClusters/networkProfile.networkPlugin\",\"equals\":\"azure\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/cb9c916fd4b6c323\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cb9c916fd4b6c323\"},{\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_2.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-08-08T22:25:06.8419431Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts/pools\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"anyOf\":[{\"field\":\"Microsoft.Batch/batchAccounts/pools/networkConfiguration.subnetId\",\"exists\":\"false\"},{\"field\":\"Microsoft.Batch/batchAccounts/pools/networkConfiguration.subnetId\",\"in\":[\"null\",\"\"]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/cdd4d274005fb67b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cdd4d274005fb67b\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-108_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:25.3178329Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/ce4b13eba037b5cc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ce4b13eba037b5cc\"},{\"properties\":{\"displayName\":\"audit ssh auth on existing vmss_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMSSs use password-only authentication for SSH on existing resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-25T22:01:41.6737137Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration\",\"exists\":\"True\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/d950db6f06d4cd0c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d950db6f06d4cd0c\"},{\"properties\":{\"displayName\":\"audit ssh auth on new resources_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMs use password-only authentication for SSH on new resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-12-06T21:04:41.4948364Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"notEquals\":\"\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.adminPassword\",\"exists\":\"True\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/d974fab8daefe230\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d974fab8daefe230\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack autoupdate policy for vmss_2.0\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-12T00:29:56.9604539Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Geneva\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/enableAutomaticUpgrade\",\"equals\":\"true\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmssName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2018-10-01\",\"name\":\"[concat(parameters('vmssName'), '/Microsoft.Azure.Geneva.GenevaMonitoring')]\",\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}]},\"parameters\":{\"vmssName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/dac4e4f8ad529fe5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dac4e4f8ad529fe5\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-109_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:52.5486159Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e0bc08af3bd773ff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e0bc08af3bd773ff\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-103_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:24.0068177Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e24b2791c9576d86\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e24b2791c9576d86\"},{\"properties\":{\"displayName\":\"sqlads-auditifnotexists-advanced data security should be enabled on your sql servers_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:35.0244464Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the SQL Server\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('tagname')]]\",\"equals\":\"\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"Default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/securityAlertPolicies/state\",\"equals\":\"Enabled\"}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e3cff6e23ce4018a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e3cff6e23ce4018a\"},{\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:58.9310187Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"priorities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Rule Priority\",\"description\":\"List of Rule Priority Numbers reserved for Security\"}},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups/securityRules\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"In\":\"[parameters('priorities')]\"},{\"field\":\"location\",\"In\":\"[parameters('allowedLocations')]\"},{\"allOf\":[{\"not\":{\"field\":\"name\",\"contains\":\"Cleanuptool\"}},{\"not\":{\"field\":\"name\",\"contains\":\"NRMS-Rule-\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e695de0794b757d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e695de0794b757d\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-102_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:16.2005161Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e788a85b5ac6ce0f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e788a85b5ac6ce0f\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-109_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:36.1193587Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/eb9b3ba85853f934\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb9b3ba85853f934\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-104_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:24.2401173Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/eed6a81371f5e28b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eed6a81371f5e28b\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-107_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:24.6068273Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/f0e3de3e84e21226\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f0e3de3e84e21226\"},{\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-06-26T21:23:26.5935651Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"not\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"exists\":\"false\"}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/f828e370e4aad7e8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f828e370e4aad7e8\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-107_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:08.0100184Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/fb6de85c9e746cf1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fb6de85c9e746cf1\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-108_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:32.8982907Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/fc84f507da5fe442\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fc84f507da5fe442\"}]}" - } + "Date" : "Tue, 11 Aug 2020 09:58:34 GMT", + "x-ms-correlation-request-id" : "f6cf06f5-8204-4268-8a7b-3ef3aec5972f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095835Z:f6cf06f5-8204-4268-8a7b-3ef3aec5972f", + "Vary" : "Accept-Encoding", + "Expires" : "-1", + "Content-Length" : "2874440", + "x-ms-request-id" : "southeastasia:d159e27e-7c13-420e-9fc1-ee605847d5e7", + "Body" : "{\"value\":[{\"properties\":{\"displayName\":\"Microsoft Managed Control 1599 - Developer Configuration Management | Software / Firmware Integrity Verification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1599\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0004bbf0-5099-4179-869e-e9ffe5fb0945\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0004bbf0-5099-4179-869e-e9ffe5fb0945\"},{\"properties\":{\"displayName\":\"Audit virtual machines without disaster recovery configured\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit virtual machines which do not have disaster recovery configured. To learn more about disaster recovery, visit https://aka.ms/asr-doc.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.Resources/links\",\"existenceCondition\":{\"field\":\"name\",\"like\":\"ASR-Protect-*\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0015ea4d-51ff-4ce3-8d8c-f3f8f0179a56\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0015ea4d-51ff-4ce3-8d8c-f3f8f0179a56\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Sockets state for a Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"The Web Sockets protocol is vulnerable to different types of security threats. Use of Web Sockets within an Function app must be carefully reviewed.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"functionapp\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"DisableWebSockets\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/001802d1-4969-4c82-a700-c29c6c6f9bbd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"001802d1-4969-4c82-a700-c29c6c6f9bbd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1375 - Incident Response Assistance | Automation Support For Availability Of Information / Support\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1375\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/00379355-8932-4b52-b63a-3bc6daf3451a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"00379355-8932-4b52-b63a-3bc6daf3451a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1605 - Developer Security Testing And Evaluation | Static Code Analysis\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1605\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0062eb8b-dc75-4718-8ea5-9bb4a9606655\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0062eb8b-dc75-4718-8ea5-9bb4a9606655\"},{\"properties\":{\"displayName\":\"Azure Backup should be enabled for Virtual Machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy helps audit if Azure Backup service is enabled for all Virtual machines. Azure Backup is a cost-effective, one-click backup solution simplifies data recovery and is easier to enable than other cloud backup services.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Backup\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.RecoveryServices/backupprotecteditems\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/013e242c-8828-4970-87b3-ab247555486d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"013e242c-8828-4970-87b3-ab247555486d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1142 - Security Assessment And Authorization Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1142\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/01524fa8-4555-48ce-ba5f-c3b8dcef5147\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"01524fa8-4555-48ce-ba5f-c3b8dcef5147\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1099 - Security Training Records\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1099\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/01910bab-8639-4bd0-84ef-cc53b24d79ba\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"01910bab-8639-4bd0-84ef-cc53b24d79ba\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1285 - Telecommunications Services | Provider Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1285\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/01f7726b-db54-45c2-bcb5-9bd7a43796ee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"01f7726b-db54-45c2-bcb5-9bd7a43796ee\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1709 - Security Function Verification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1709\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/025992d6-7fee-4137-9bbf-2ffc39c0686c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"025992d6-7fee-4137-9bbf-2ffc39c0686c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1052 - Session Lock\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1052\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/027cae1c-ec3e-4492-9036-4168d540c42a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"027cae1c-ec3e-4492-9036-4168d540c42a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1034 - Least Privilege\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1034\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/02a5ed00-6d2e-4e97-9a98-46c32c057329\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"02a5ed00-6d2e-4e97-9a98-46c32c057329\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs on which the remote host connection status does not match the specified one\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines on which the remote host connection status does not match the specified one. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsRemoteConnection\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/02a84be7-c304-421f-9bb7-5d2c26af54ad\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"02a84be7-c304-421f-9bb7-5d2c26af54ad\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1623 - Boundary Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1623\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/02ce1b22-412a-4528-8630-c42146f917ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"02ce1b22-412a-4528-8630-c42146f917ed\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1515 - Personnel Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1515\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/02dd141a-a2b2-49a7-bcbd-ca31142f6211\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"02dd141a-a2b2-49a7-bcbd-ca31142f6211\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1327 - Authenticator Management | Password-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1327\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/03188d8f-1ae5-4fe1-974d-2d7d32ef937d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"03188d8f-1ae5-4fe1-974d-2d7d32ef937d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1229 - Information System Component Inventory | No Duplicate Accounting Of Components\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1229\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/03752212-103c-4ab8-a306-7e813022ca9d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"03752212-103c-4ab8-a306-7e813022ca9d\"},{\"properties\":{\"displayName\":\"Cognitive Services accounts should restrict network access\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Network access to Cognitive Services accounts should be restricted. Configure network rules so only applications from allowed networks can access the Cognitive Services account. To allow connections from specific internet or on-premises clients, access can be granted to traffic from specific Azure virtual networks or to public internet IP address ranges.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cognitive Services\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.CognitiveServices/accounts\"},{\"field\":\"Microsoft.CognitiveServices/accounts/networkAcls.defaultAction\",\"notEquals\":\"Deny\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/037eea7a-bd0a-46c5-9a66-03aea78705d3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"037eea7a-bd0a-46c5-9a66-03aea78705d3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1123 - Audit Review, Analysis, And Reporting | Audit Level Adjustment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1123\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/03996055-37a4-45a5-8b70-3f1caa45f87d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"03996055-37a4-45a5-8b70-3f1caa45f87d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1474 - Emergency Power | Long-Term Alternate Power Supply - Minimal Operational Capability\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1474\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/03ad326e-d7a1-44b1-9a76-e17492efc9e4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"03ad326e-d7a1-44b1-9a76-e17492efc9e4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1227 - Information System Component Inventory | Automated Unauthorized Component Detection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1227\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/03b78f5e-4877-4303-b0f4-eb6583f25768\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"03b78f5e-4877-4303-b0f4-eb6583f25768\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1361 - Incident Handling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1361\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/03ed3be1-7276-4452-9a5d-e4168565ac67\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"03ed3be1-7276-4452-9a5d-e4168565ac67\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1594 - Developer Configuration Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1594\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/042ba2a1-8bb8-45f4-b080-c78cf62b90e9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"042ba2a1-8bb8-45f4-b080-c78cf62b90e9\"},{\"properties\":{\"displayName\":\"Azure Cosmos DB allowed locations\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables you to restrict the locations your organization can specify when deploying Azure Cosmos DB resources. Use to enforce your geo-compliance requirements.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cosmos DB\"},\"parameters\":{\"listOfAllowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying Azure Cosmos DB resources.\",\"strongType\":\"location\"}},\"policyEffect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Policy Effect\",\"description\":\"The desired effect of the policy.\"},\"allowedValues\":[\"deny\",\"audit\",\"disabled\"],\"defaultValue\":\"deny\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DocumentDB/databaseAccounts\"},{\"count\":{\"field\":\"Microsoft.DocumentDB/databaseAccounts/Locations[*]\",\"where\":{\"value\":\"[replace(toLower(first(field('Microsoft.DocumentDB/databaseAccounts/Locations[*].locationName'))), ' ', '')]\",\"in\":\"[parameters('listOfAllowedLocations')]\"}},\"notEquals\":\"[length(field('Microsoft.DocumentDB/databaseAccounts/Locations[*]'))]\"}]},\"then\":{\"effect\":\"[parameters('policyEffect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0473574d-2d43-4217-aefe-941fcdf7e684\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0473574d-2d43-4217-aefe-941fcdf7e684\"},{\"properties\":{\"displayName\":\"SQL Managed Instance TDE protector should be encrypted with your own key\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Transparent Data Encryption (TDE) with your own key support provides increased transparency and control over the TDE Protector, increased security with an HSM-backed external service, and promotion of separation of duties.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/managedInstances/encryptionProtector\",\"name\":\"current\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Sql/managedInstances/encryptionProtector/serverKeyType\",\"equals\":\"AzureKeyVault\"},{\"field\":\"Microsoft.Sql/managedInstances/encryptionProtector/uri\",\"notEquals\":\"\"},{\"field\":\"Microsoft.Sql/managedInstances/encryptionProtector/uri\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/048248b0-55cd-46da-b1ff-39efd52db260\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"048248b0-55cd-46da-b1ff-39efd52db260\"},{\"properties\":{\"displayName\":\"[Preview]: Network traffic data collection agent should be installed on Linux virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Security Center uses the Microsoft Dependency agent to collect network traffic data from your Azure virtual machines to enable advanced network protection features such as traffic visualization on the network map, network hardening recommendations and specific network threats.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Monitoring\",\"preview\":\"true\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable Dependency Agent for Linux VMs monitoring\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"14.04.0-LTS\",\"14.04.1-LTS\",\"14.04.5-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"16.04-LTS\",\"16.04.0-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"18.04-LTS\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"12-SP2\",\"12-SP3\",\"12-SP4\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"DependencyAgentLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/04c4380f-3fae-46e8-96c9-30193528f602\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"04c4380f-3fae-46e8-96c9-30193528f602\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Service Bus to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Service Bus to stream to a regional Log Analytics workspace when any Service Bus which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ServiceBus/namespaces\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.ServiceBus/namespaces/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"OperationalLogs\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/04d53d87-841c-4f23-8a5b-21564380b55e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"04d53d87-841c-4f23-8a5b-21564380b55e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1572 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1572\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/04f5fb00-80bb-48a9-a75b-4cb4d4c97c36\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"04f5fb00-80bb-48a9-a75b-4cb4d4c97c36\"},{\"properties\":{\"displayName\":\"Deploy Log Analytics agent for Linux VMs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Log Analytics agent for Linux VMs if the VM Image (OS) is in the list defined and the agent is not installed.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"12*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"14.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"16.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"18.04*LTS\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7.*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"OmsAgentForLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"MMAExtension\",\"vmExtensionPublisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"vmExtensionType\":\"OmsAgentForLinux\",\"vmExtensionTypeHandlerVersion\":\"1.7\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2018-06-01\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\",\"stopOnMultipleConnections\":\"true\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/053d3325-282c-4e5c-b944-24faffd30d77\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"053d3325-282c-4e5c-b944-24faffd30d77\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1331 - Authenticator Management | Password-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1331\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/05460fe2-301f-4ed1-8174-d62c8bb92ff4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"05460fe2-301f-4ed1-8174-d62c8bb92ff4\"},{\"properties\":{\"displayName\":\"Web Application Firewall (WAF) should be enabled for Azure Front Door Service\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Requires Web Application Firewall (WAF) on any Azure Front Door Service. A Web Application Firewall provides greater security for your other Azure resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/frontdoors\"},{\"field\":\"Microsoft.Network/frontdoors/frontendEndpoints[*].webApplicationFirewallPolicyLink.id\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/055aa869-bc98-4af8-bafc-23f1ab6ffe2c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"055aa869-bc98-4af8-bafc-23f1ab6ffe2c\"},{\"properties\":{\"displayName\":\"Private endpoint should be enabled for PostgreSQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits PostgreSQL servers not configured to use a private endpoint. For more details, visit https://aka.ms/pgprivatelink.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/privateEndpointConnections\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/privateEndpointConnections/privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0564d078-92f5-4f97-8398-b9f58a51f70b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0564d078-92f5-4f97-8398-b9f58a51f70b\"},{\"properties\":{\"displayName\":\"Vulnerability Assessment settings for SQL server should contain an email address to receive scan reports\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Ensure that an email address is provided for the 'Send scan reports to' field in the Vulnerability Assessment settings. This email address receives scan result summary after a periodic scan runs on SQL servers.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/vulnerabilityAssessments\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/vulnerabilityAssessments/default.recurringScans.emails[*]\",\"notEquals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/057d6cfe-9c4f-4a6d-bc60-14420ea1f1a9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"057d6cfe-9c4f-4a6d-bc60-14420ea1f1a9\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Azure Data Lake Store should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Data Lake\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeStore/accounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/057ef27e-665e-4328-8ea3-04b3122bd9fb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"057ef27e-665e-4328-8ea3-04b3122bd9fb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1132 - Protection Of Audit Information | Audit Backup On Separate Physical Systems / Components\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1132\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/05938e10-cdbd-4a54-9b2b-1cbcfc141ad0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"05938e10-cdbd-4a54-9b2b-1cbcfc141ad0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1223 - Information System Component Inventory\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1223\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/05a1bb01-ad5a-49c1-aad3-b0c893b2ec3a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"05a1bb01-ad5a-49c1-aad3-b0c893b2ec3a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1640 - Transmission Confidentiality And Integrity\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1640\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/05a289ce-6a20-4b75-a0f3-dc8601b6acd0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"05a289ce-6a20-4b75-a0f3-dc8601b6acd0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1420 - Maintenance Personnel\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1420\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/05ae08cc-a282-413b-90c7-21a2c60b8404\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"05ae08cc-a282-413b-90c7-21a2c60b8404\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1658 - Secure Name / Address Resolution Service (Recursive Or Caching Resolver)\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1658\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/063b540e-4bdc-4e7a-a569-3a42ddf22098\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"063b540e-4bdc-4e7a-a569-3a42ddf22098\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1688 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1688\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/063c3f09-e0f0-4587-8fd5-f4276fae675f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"063c3f09-e0f0-4587-8fd5-f4276fae675f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1332 - Authenticator Management | Password-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1332\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/068260be-a5e6-4b0a-a430-cd27071c226a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"068260be-a5e6-4b0a-a430-cd27071c226a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1455 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1455\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/068a88d4-e520-434e-baf0-9005a8164e6a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"068a88d4-e520-434e-baf0-9005a8164e6a\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit SQL DB Level Audit Setting\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit DB level audit setting for SQL databases\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"setting\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Audit Setting\"},\"allowedValues\":[\"enabled\",\"disabled\"]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers/databases\"},{\"field\":\"name\",\"notEquals\":\"master\"}]},\"then\":{\"effect\":\"AuditIfNotExists\",\"details\":{\"type\":\"Microsoft.Sql/servers/databases/auditingSettings\",\"name\":\"default\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Sql/auditingSettings.state\",\"equals\":\"[parameters('setting')]\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/06a78e20-9358-41c9-923c-fb736d382a12\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"06a78e20-9358-41c9-923c-fb736d382a12\"},{\"properties\":{\"displayName\":\"Audit VMs that do not use managed disks\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits VMs that do not use managed disks\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/virtualMachines/osDisk.uri\",\"exists\":\"True\"}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/VirtualMachineScaleSets\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osDisk.vhdContainers\",\"exists\":\"True\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osdisk.imageUrl\",\"exists\":\"True\"}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/06a78e20-9358-41c9-923c-fb736d382a4d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"06a78e20-9358-41c9-923c-fb736d382a4d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1366 - Incident Handling | Information Correlation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1366\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/06c45c30-ae44-4f0f-82be-41331da911cc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"06c45c30-ae44-4f0f-82be-41331da911cc\"},{\"properties\":{\"displayName\":\"Public network access should be disabled for Cognitive Services accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Cognitive Services account in your environment with public network access enabled. Public network access should be disabled so that only connections from private endpoints are allowed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cognitive Services\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.CognitiveServices/accounts\"},{\"field\":\"Microsoft.CognitiveServices/accounts/publicNetworkAccess\",\"notEquals\":\"Disabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0725b4dd-7e76-479c-a735-68e7ee23d5ca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0725b4dd-7e76-479c-a735-68e7ee23d5ca\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1633 - Boundary Protection | Route Traffic To Authenticated Proxy Servers\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1633\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/07557aa0-e02f-4460-9a81-8ecd2fed601a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"07557aa0-e02f-4460-9a81-8ecd2fed601a\"},{\"properties\":{\"displayName\":\"CORS should not allow every resource to access your Function Apps\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Cross-Origin Resource Sharing (CORS) should not allow all domains to access your Function app. Allow only required domains to interact with your Function app.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.cors.allowedOrigins[*]\",\"notEquals\":\"*\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0820b7b9-23aa-4725-a1ce-ae4558f718e5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0820b7b9-23aa-4725-a1ce-ae4558f718e5\"},{\"properties\":{\"displayName\":\"Deploy Log Analytics agent for Windows VMs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Log Analytics agent for Windows VMs if the VM Image (OS) is in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example values: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"MicrosoftMonitoringAgent\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"MMAExtension\",\"vmExtensionPublisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"vmExtensionType\":\"MicrosoftMonitoringAgent\",\"vmExtensionTypeHandlerVersion\":\"1.0\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2018-06-01\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\",\"stopOnMultipleConnections\":\"true\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0868462e-646c-4fe3-9ced-a733534b6a2c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0868462e-646c-4fe3-9ced-a733534b6a2c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1583 - Information System Documentation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1583\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0882d488-8e80-4466-bc0f-0cd15b6cb66d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0882d488-8e80-4466-bc0f-0cd15b6cb66d\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Applications that are not using latest supported PHP Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported PHP version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestPHP\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/08b17839-76c6-4015-90e0-33d9d54d219c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"08b17839-76c6-4015-90e0-33d9d54d219c\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Search Services to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Search Services to stream to a regional Log Analytics workspace when any Search Services which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Search/searchServices\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Search/searchServices/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"OperationLogs\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/08ba64b8-738f-4918-9686-730d2ed79c7d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"08ba64b8-738f-4918-9686-730d2ed79c7d\"},{\"properties\":{\"displayName\":\"Adaptive Network Hardening recommendations should be applied on internet facing virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Azure Security Center analyzes the traffic patterns of Internet facing virtual machines and provides Network Security Group rule recommendations that reduce the potential attack surface\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"adaptiveNetworkHardenings\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/08e6af2d-db70-460a-bfe9-d5bd474ba9d6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"08e6af2d-db70-460a-bfe9-d5bd474ba9d6\"},{\"properties\":{\"displayName\":\"There should be more than one owner assigned to your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"It is recommended to designate more than one subscription owner in order to have administrator access redundancy.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"DesignateMoreThanOneOwner\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/09024ccc-0c5f-475e-9457-b7c0d9ed487b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"09024ccc-0c5f-475e-9457-b7c0d9ed487b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1159 - Security Authorization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1159\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0925f098-7877-450b-8ba4-d1e55f2d8795\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0925f098-7877-450b-8ba4-d1e55f2d8795\"},{\"properties\":{\"displayName\":\"Disk encryption should be applied on virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Virtual machines without an enabled disk encryption will be monitored by Azure Security Center as recommendations.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"encryption\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0961003e-5a0a-4549-abde-af6a37f2724d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0961003e-5a0a-4549-abde-af6a37f2724d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1302 - Identification And Authentication (Org. Users) | Network Access To Non-Privileged Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1302\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/09828c65-e323-422b-9774-9d5c646124da\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"09828c65-e323-422b-9774-9d5c646124da\"},{\"properties\":{\"displayName\":\"Configure backup on VMs of a location to an existing central Vault in the same location\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy configures Azure Backup protection on VMs in a given location to an existing central vault in the same location. It applies to only those VMs that are not already configured for backup. It is recommended that this policy is assigned to not more than 200 VMs. If the policy is assigned for more than 200 VMs, it can result in the backup getting triggered a few hours beyond the defined schedule. This policy will be enhanced to support more VM images.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Backup\"},\"parameters\":{\"vaultLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Location (Specify the location of the VMs that you want to protect)\",\"description\":\"Specify the location of the VMs that you want to protect. VMs should be backed up to a vault in the same location.\\nFor example - southeastasia\",\"strongType\":\"location\"}},\"backupPolicyId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Backup Policy (of type Azure VM from a vault in the location chosen above)\",\"description\":\"Specify the id of the Azure backup policy to configure backup of the virtual machines. The selected Azure backup policy should be of type Azure virtual machine. This policy needs to be in a vault that is present in the location chosen above.\\nFor example - /subscriptions//resourceGroups//providers/Microsoft.RecoveryServices/vaults//backupPolicies/\",\"strongType\":\"Microsoft.RecoveryServices/vaults/backupPolicies\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"deployIfNotExists\",\"auditIfNotExists\",\"disabled\"],\"defaultValue\":\"deployIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"location\",\"equals\":\"[parameters('vaultLocation')]\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"12*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"14.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"16.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"18.04*LTS\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7.*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\"/providers/microsoft.authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\"],\"type\":\"Microsoft.RecoveryServices/backupprotecteditems\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"backupPolicyId\":{\"type\":\"String\"},\"fabricName\":{\"type\":\"String\"},\"protectionContainers\":{\"type\":\"String\"},\"protectedItems\":{\"type\":\"String\"},\"sourceResourceId\":{\"type\":\"String\"}},\"resources\":[{\"apiVersion\":\"2017-05-10\",\"name\":\"[concat('DeployProtection-',uniqueString(parameters('protectedItems')))]\",\"type\":\"Microsoft.Resources/deployments\",\"resourceGroup\":\"[first(skip(split(parameters('backupPolicyId'), '/'), 4))]\",\"subscriptionId\":\"[first(skip(split(parameters('backupPolicyId'), '/'), 2))]\",\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"backupPolicyId\":{\"type\":\"String\"},\"fabricName\":{\"type\":\"String\"},\"protectionContainers\":{\"type\":\"String\"},\"protectedItems\":{\"type\":\"String\"},\"sourceResourceId\":{\"type\":\"String\"}},\"resources\":[{\"type\":\"Microsoft.RecoveryServices/vaults/backupFabrics/protectionContainers/protectedItems\",\"name\":\"[concat(first(skip(split(parameters('backupPolicyId'), '/'), 8)), '/', parameters('fabricName'), '/',parameters('protectionContainers'), '/', parameters('protectedItems'))]\",\"apiVersion\":\"2016-06-01\",\"properties\":{\"protectedItemType\":\"Microsoft.Compute/virtualMachines\",\"policyId\":\"[parameters('backupPolicyId')]\",\"sourceResourceId\":\"[parameters('sourceResourceId')]\"}}]},\"parameters\":{\"backupPolicyId\":{\"value\":\"[parameters('backupPolicyId')]\"},\"fabricName\":{\"value\":\"[parameters('fabricName')]\"},\"protectionContainers\":{\"value\":\"[parameters('protectionContainers')]\"},\"protectedItems\":{\"value\":\"[parameters('protectedItems')]\"},\"sourceResourceId\":{\"value\":\"[parameters('sourceResourceId')]\"}}}}]},\"parameters\":{\"backupPolicyId\":{\"value\":\"[parameters('backupPolicyId')]\"},\"fabricName\":{\"value\":\"Azure\"},\"protectionContainers\":{\"value\":\"[concat('iaasvmcontainer;iaasvmcontainerv2;', resourceGroup().name, ';' ,field('name'))]\"},\"protectedItems\":{\"value\":\"[concat('vm;iaasvmcontainerv2;', resourceGroup().name, ';' ,field('name'))]\"},\"sourceResourceId\":{\"value\":\"[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', resourceGroup().name, '/providers/Microsoft.Compute/virtualMachines/',field('name'))]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/09ce66bc-1220-4153-8104-e3f51c936913\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"09ce66bc-1220-4153-8104-e3f51c936913\"},{\"properties\":{\"displayName\":\"Private endpoint should be enabled for MariaDB servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MariaDB servers not configured to use a private endpoint. For more details, visit https://aka.ms/mariadbprivatelink.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforMariaDB/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforMariaDB/servers/privateEndpointConnections\",\"existenceCondition\":{\"field\":\"Microsoft.DBforMariaDB/servers/privateEndpointConnections/privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a1302fb-a631-4106-9753-f3d494733990\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a1302fb-a631-4106-9753-f3d494733990\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes Management Policy add-on should be installed and enabled on your clusters\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Azure Kubernetes Management Policy add-on extends Gatekeeper v3, an admission controller webhook for Open Policy Agent (OPA), to apply at-scale enforcements and safeguards on your clusters in a centralized, consistent manner.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"anyOf\":[{\"field\":\"Microsoft.ContainerService/managedClusters/addonProfiles.azurePolicy.enabled\",\"exists\":\"false\"},{\"field\":\"Microsoft.ContainerService/managedClusters/addonProfiles.azurePolicy.enabled\",\"equals\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a15ec92-a229-4763-bb14-0ea34a568f8d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a15ec92-a229-4763-bb14-0ea34a568f8d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1654 - Voice Over Internet Protocol\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1654\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a2ee16e-ab1f-414a-800b-d1608835862b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a2ee16e-ab1f-414a-800b-d1608835862b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1402 - Controlled Maintenance | Automated Maintenance Activities\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1402\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a560d32-8075-4fec-9615-9f7c853f4ea9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a560d32-8075-4fec-9615-9f7c853f4ea9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1428 - Media Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1428\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a77fcc7-b8d8-451a-ab52-56197913c0c7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a77fcc7-b8d8-451a-ab52-56197913c0c7\"},{\"properties\":{\"displayName\":\"Audit resource location matches resource group location\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit that the resource location matches its resource group location\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"General\"},\"policyRule\":{\"if\":{\"field\":\"location\",\"notIn\":[\"[resourcegroup().location]\",\"global\"]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a914e76-4921-4c19-b460-a2d36003525a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a914e76-4921-4c19-b460-a2d36003525a\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Account Management'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Account Management'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesAccountManagement\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesAccountManagement\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a9991e6-21be-49f9-8916-a06d934bcf29\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a9991e6-21be-49f9-8916-a06d934bcf29\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1044 - Unsuccessful Logon Attempts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1044\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0abbac52-57cf-450d-8408-1208d0dd9e90\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0abbac52-57cf-450d-8408-1208d0dd9e90\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1253 - Contingency Plan | Resume Essential Missions / Business Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1253\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0afce0b3-dd9f-42bb-af28-1e4284ba8311\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0afce0b3-dd9f-42bb-af28-1e4284ba8311\"},{\"properties\":{\"displayName\":\"Email notification to subscription owner for high severity alerts should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable emailing security alerts to the subscription owner, in order to have them receive security alert emails from Microsoft. This ensures that they are aware of any potential security issues and can mitigate the risk in a timely fashion\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/securityContacts\",\"existenceCondition\":{\"field\":\"Microsoft.Security/securityContacts/alertsToAdmins\",\"notEquals\":\"Off\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0b15565f-aa9e-48ba-8619-45960f2c314d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0b15565f-aa9e-48ba-8619-45960f2c314d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1046 - Automatic Account Lock | Purge / Wipe Mobile Device\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1046\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0b1aa965-7502-41f9-92be-3e2fe7cc392a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0b1aa965-7502-41f9-92be-3e2fe7cc392a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1020 - Account Management | Role-Based Schemes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1020\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0b291ee8-3140-4cad-beb7-568c077c78ce\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0b291ee8-3140-4cad-beb7-568c077c78ce\"},{\"properties\":{\"displayName\":\"Key Vault objects should be recoverable\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits if key vault objects are not recoverable. Soft Delete feature helps to effectively hold the resources for a given retention period (90 days) even after a DELETE operation, while giving the appearance that the object is deleted. When 'Purge protection' is on, a vault or an object in deleted state cannot be purged until the retention period of 90 days has passed. These vaults and objects can still be recovered, assuring customers that the retention policy will be followed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Key Vault\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.KeyVault/vaults\"},{\"anyOf\":[{\"field\":\"Microsoft.KeyVault/vaults/enableSoftDelete\",\"exists\":\"false\"},{\"field\":\"Microsoft.KeyVault/vaults/enablePurgeProtection\",\"exists\":\"false\"},{\"field\":\"Microsoft.KeyVault/vaults/enableSoftDelete\",\"equals\":\"false\"},{\"field\":\"Microsoft.KeyVault/vaults/enablePurgeProtection\",\"equals\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0b60c0b2-2dc2-4e1c-b5c9-abbed971de53\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0b60c0b2-2dc2-4e1c-b5c9-abbed971de53\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1115 - Audit Review, Analysis, And Reporting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1115\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0b653845-2ad9-4e09-a4f3-5a7c1d78353d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0b653845-2ad9-4e09-a4f3-5a7c1d78353d\"},{\"properties\":{\"displayName\":\"Azure Cosmos DB throughput should be limited\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy enables you to restrict the maximum throughput your organization can specify when creating Azure Cosmos DB databases and containers through the resource provider. It blocks the creation of autoscale resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cosmos DB\"},\"parameters\":{\"throughputMax\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"Max RUs\",\"description\":\"The maximum throughput (RU/s) that can be assigned to a container via the Resource Provider during create or update.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Policy Effect\",\"description\":\"The desired effect of the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"anyOf\":[{\"field\":\"type\",\"like\":\"Microsoft.DocumentDB/databaseAccounts/*/throughputSettings\"},{\"field\":\"type\",\"in\":[\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases\",\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers\",\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases\",\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections\",\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases\",\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs\",\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces\",\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables\",\"Microsoft.DocumentDB/databaseAccounts/tables\"]}]},{\"anyOf\":[{\"value\":\"[requestContext().apiVersion]\",\"less\":\"2019-08-01\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/sqlDatabases/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/sqlDatabases/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/sqlDatabases/containers/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/cassandraKeyspaces/tables/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/gremlinDatabases/graphs/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/mongodbDatabases/collections/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"},{\"value\":\"[if(equals(field('Microsoft.DocumentDB/databaseAccounts/tables/options.throughput'), ''), 0, int(field('Microsoft.DocumentDB/databaseAccounts/tables/options.throughput')))]\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/tables/options\",\"containsKey\":\"ProvisionedThroughputSettings\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings/default.resource.throughput\",\"greater\":\"[parameters('throughputMax')]\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/tables/throughputSettings/default.resource.provisionedThroughputSettings\",\"exists\":\"true\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0b7ef78e-a035-4f23-b9bd-aff122a1b1cf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0b7ef78e-a035-4f23-b9bd-aff122a1b1cf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1239 - User-Installed Software\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1239\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0be51298-f643-4556-88af-d7db90794879\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0be51298-f643-4556-88af-d7db90794879\"},{\"properties\":{\"displayName\":\"Ensure API app has 'Client Certificates (Incoming client certificates)' set to 'On'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Client certificates allow for the app to request a certificate for incoming requests. Only clients that have a valid certificate will be able to reach the app.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"},{\"field\":\"Microsoft.Web/sites/clientCertEnabled\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0c192fe8-9cbb-4516-85b3-0ade8bd03886\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0c192fe8-9cbb-4516-85b3-0ade8bd03886\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1496 - System Security Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1496\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0ca96127-2f87-46ab-a4fc-0d2a786df1c8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0ca96127-2f87-46ab-a4fc-0d2a786df1c8\"},{\"properties\":{\"displayName\":\"SQL server TDE protector should be encrypted with your own key\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Transparent Data Encryption (TDE) with your own key support provides increased transparency and control over the TDE Protector, increased security with an HSM-backed external service, and promotion of separation of duties.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/encryptionProtector\",\"name\":\"current\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Sql/servers/encryptionProtector/serverKeyType\",\"equals\":\"AzureKeyVault\"},{\"field\":\"Microsoft.Sql/servers/encryptionProtector/uri\",\"notEquals\":\"\"},{\"field\":\"Microsoft.Sql/servers/encryptionProtector/uri\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0d134df8-db83-46fb-ad72-fe0c9428c8dd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0d134df8-db83-46fb-ad72-fe0c9428c8dd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1518 - Personnel Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1518\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0d58f734-c052-40e9-8b2f-a1c2bff0b815\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0d58f734-c052-40e9-8b2f-a1c2bff0b815\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1713 - Software, Firmware, And Information Integrity | Integrity Checks\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1713\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0d87c70b-5012-48e9-994b-e70dd4b8def0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0d87c70b-5012-48e9-994b-e70dd4b8def0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1466 - Visitor Access Records\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1466\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0d943a9c-a6f1-401f-a792-740cdb09c451\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0d943a9c-a6f1-401f-a792-740cdb09c451\"},{\"properties\":{\"displayName\":\"[Deprecated]: Show audit results from Windows VMs on which Windows Defender Exploit Guard is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines on which Windows Defender Exploit Guard is not enabled. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Guest Configuration\",\"deprecated\":true},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDefenderExploitGuard\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0d9b45ff-9ddd-43fc-bf59-fbd1c8423053\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0d9b45ff-9ddd-43fc-bf59-fbd1c8423053\"},{\"properties\":{\"displayName\":\"Managed identity should be used in your Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use a managed identity for enhanced authentication security\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/managedServiceIdentityId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0da106f2-4ca3-48e8-bc85-c638fe6aea8f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0da106f2-4ca3-48e8-bc85-c638fe6aea8f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1718 - Software, Firmware, And Information Integrity | Binary Or Machine Executable Code\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1718\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0dced7ab-9ce5-4137-93aa-14c13e06ab17\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0dced7ab-9ce5-4137-93aa-14c13e06ab17\"},{\"properties\":{\"displayName\":\"[Preview]: Authorized IP ranges should be defined on Kubernetes Services\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Restrict access to the Kubernetes Service Management API by granting API access only to IP addresses in specific ranges. It is recommended to limit access to authorized IP ranges to ensure that only applications from allowed networks can access the cluster.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Security Center\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"Microsoft.ContainerService/managedClusters/apiServerAccessProfile.authorizedIPRanges\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0e246bcf-5f6f-4f87-bc6f-775d4712c7ea\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0e246bcf-5f6f-4f87-bc6f-775d4712c7ea\"},{\"properties\":{\"displayName\":\"Remote debugging should be turned off for Function Apps\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Remote debugging requires inbound ports to be opened on function apps. Remote debugging should be turned off.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.remoteDebuggingEnabled\",\"equals\":\"false\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0e60b895-3786-45da-8377-9c6b4b6ac5f9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0e60b895-3786-45da-8377-9c6b4b6ac5f9\"},{\"properties\":{\"displayName\":\"Advanced threat protection should be enabled on Azure Key Vault vaults\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced threat protection provides an additional layer of protection of security intelligence by detecting unusual and potentially harmful attempts to access or exploit key vault accounts.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"KeyVaults\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0e6763cc-5078-4e64-889d-ff4d9a839047\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0e6763cc-5078-4e64-889d-ff4d9a839047\"},{\"properties\":{\"displayName\":\"Geo-redundant backup should be enabled for Azure Database for MariaDB\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Azure Database for MariaDB with geo-redundant backup not enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforMariaDB/servers\"},{\"field\":\"Microsoft.DBforMariaDB/servers/storageProfile.geoRedundantBackup\",\"notEquals\":\"Enabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0ec47710-77ff-4a3d-9181-6aa50af424d0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0ec47710-77ff-4a3d-9181-6aa50af424d0\"},{\"properties\":{\"displayName\":\"[Deprecated]: Deploy prerequisites to enable Guest Configuration Policy on Windows VMs.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a system-assigned managed identity and deploys the VM extension for Guest Configuration on Windows VMs. This is a prerequisite for Guest Configuration Policy and must be assigned to the scope before using any Guest Configuration policy. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.2.0-deprecated\",\"deprecated\":true,\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"AzurePolicyforWindows\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.GuestConfiguration\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"ConfigurationforWindows\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0ecd903d-91e7-4726-83d3-a229d7f2e293\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0ecd903d-91e7-4726-83d3-a229d7f2e293\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1601 - Developer Security Testing And Evaluation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1601\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0ee79a0c-addf-4ce9-9b3c-d9576ed5e20e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0ee79a0c-addf-4ce9-9b3c-d9576ed5e20e\"},{\"properties\":{\"displayName\":\"[Preview]: Audit Azure Spring Cloud instances where distributed tracing is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Distributed tracing tools in Azure Spring Cloud allow debugging and monitoring the complex interconnections between microservices in an application. Distributed tracing tools should be enabled and in a healthy state.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"App Platform\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.AppPlatform/Spring\"},{\"anyOf\":[{\"field\":\"Microsoft.AppPlatform/Spring/trace.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.AppPlatform/Spring/trace.state\",\"notEquals\":\"Succeeded\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0f2d8593-4667-4932-acca-6a9f187af109\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0f2d8593-4667-4932-acca-6a9f187af109\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1476 - Fire Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1476\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0f3c4ac2-3e35-4906-a80b-473b12a622d7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0f3c4ac2-3e35-4906-a80b-473b12a622d7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1204 - Access Restrictions For Change | Review System Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1204\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0f4f6750-d1ab-4a4c-8dfd-af3237682665\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0f4f6750-d1ab-4a4c-8dfd-af3237682665\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1430 - Media Marking\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1430\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0f559588-5e53-4b14-a7c4-85d28ebc2234\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0f559588-5e53-4b14-a7c4-85d28ebc2234\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1574 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1574\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0f935dab-83d6-47b8-85ef-68b8584161b9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0f935dab-83d6-47b8-85ef-68b8584161b9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1164 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1164\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0fb8d3ce-9e96-481c-9c68-88d4e3019310\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0fb8d3ce-9e96-481c-9c68-88d4e3019310\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1017 - Account Management | Inactivity Logout\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1017\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0fc3db37-e59a-48c1-84e9-1780cedb409e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0fc3db37-e59a-48c1-84e9-1780cedb409e\"},{\"properties\":{\"displayName\":\"CORS should not allow every domain to access your API for FHIR\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Cross-Origin Resource Sharing (CORS) should not allow all domains to access your API for FHIR. To protect your API for FHIR, remove access for all domains and explicitly define the domains allowed to connect.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"API for FHIR\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"audit\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HealthcareApis/services\"},{\"not\":{\"field\":\"Microsoft.HealthcareApis/services/corsConfiguration.origins[*]\",\"notEquals\":\"*\"}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0fea8f8a-4169-495d-8307-30ec335f387d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0fea8f8a-4169-495d-8307-30ec335f387d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1087 - Security Awareness And Training Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1087\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/100c82ba-42e9-4d44-a2ba-94b209248583\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"100c82ba-42e9-4d44-a2ba-94b209248583\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not contain the specified certificates in Trusted Root\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows VMs that do not contain the specified certificates in the Trusted Root Certification Authorities certificate store (Cert:\\\\LocalMachine\\\\Root). It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"CertificateThumbprints\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Certificate thumbprints\",\"description\":\"A semicolon-separated list of certificate thumbprints that should exist under the Trusted Root certificate store (Cert:\\\\LocalMachine\\\\Root). e.g. THUMBPRINT1;THUMBPRINT2;THUMBPRINT3\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsCertificateInTrustedRoot\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[CertificateStore]CertificateStore1;CertificateThumbprintsToInclude', '=', parameters('CertificateThumbprints')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsCertificateInTrustedRoot\"},\"CertificateThumbprints\":{\"value\":\"[parameters('CertificateThumbprints')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"CertificateThumbprints\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[CertificateStore]CertificateStore1;CertificateThumbprintsToInclude\",\"value\":\"[parameters('CertificateThumbprints')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[CertificateStore]CertificateStore1;CertificateThumbprintsToInclude\",\"value\":\"[parameters('CertificateThumbprints')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/106ccbe4-a791-4f33-a44a-06796944b8d5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"106ccbe4-a791-4f33-a44a-06796944b8d5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1554 - Vulnerability Scanning | Discoverable Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1554\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/10984b4e-c93e-48d7-bf20-9c03b04e9eca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"10984b4e-c93e-48d7-bf20-9c03b04e9eca\"},{\"properties\":{\"displayName\":\"Ensure that '.NET Framework' version is the latest, if used as a part of the Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for .NET Framework software either due to security flaws or to include additional functionality. Using the latest .NET framework version for web apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.netFrameworkVersion\",\"in\":[\"v3.0\",\"v4.0\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/10c1859c-e1a7-4df3-ab97-a487fa8059f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"10c1859c-e1a7-4df3-ab97-a487fa8059f6\"},{\"properties\":{\"displayName\":\"Custom subscription owner roles should not exist\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy ensures that no custom subscription owner roles exist.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"General\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Authorization/roleDefinitions\"},{\"field\":\"Microsoft.Authorization/roleDefinitions/type\",\"equals\":\"CustomRole\"},{\"anyOf\":[{\"not\":{\"field\":\"Microsoft.Authorization/roleDefinitions/permissions[*].actions[*]\",\"notEquals\":\"*\"}},{\"not\":{\"field\":\"Microsoft.Authorization/roleDefinitions/permissions.actions[*]\",\"notEquals\":\"*\"}}]},{\"anyOf\":[{\"not\":{\"field\":\"Microsoft.Authorization/roleDefinitions/assignableScopes[*]\",\"notIn\":[\"[concat(subscription().id,'/')]\",\"[subscription().id]\",\"/\"]}},{\"not\":{\"field\":\"Microsoft.Authorization/roleDefinitions/assignableScopes[*]\",\"notLike\":\"/providers/Microsoft.Management/*\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/10ee2ea2-fb4d-45b8-a7e9-a2e770044cd9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"10ee2ea2-fb4d-45b8-a7e9-a2e770044cd9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1230 - Configuration Management Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1230\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/11158848-f679-4e9b-aa7b-9fb07d945071\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"11158848-f679-4e9b-aa7b-9fb07d945071\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1432 - Media Storage\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1432\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1140e542-b80d-4048-af45-3f7245be274b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1140e542-b80d-4048-af45-3f7245be274b\"},{\"properties\":{\"displayName\":\"Cognitive Services accounts should use customer owned storage or enable data encryption.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Cognitive Services account not using customer owned storage nor data encryption. For each Cognitive Services account with storage, use either customer owned storage or enable data encryption.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cognitive Services\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.CognitiveServices/accounts\"},{\"count\":{\"field\":\"Microsoft.CognitiveServices/accounts/userOwnedStorage[*]\"},\"less\":1},{\"field\":\"Microsoft.CognitiveServices/accounts/encryption.keySource\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/11566b39-f7f7-4b82-ab06-68d8700eb0a4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"11566b39-f7f7-4b82-ab06-68d8700eb0a4\"},{\"properties\":{\"displayName\":\"Audit Dependency agent deployment - VM Image (OS) unlisted\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Reports VMs as non-compliant if the VM Image (OS) is not in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude_windows\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]},\"listOfImageIdToInclude_linux\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"not\":{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_windows')]\"},{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_linux')]\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"12-SP2\",\"12-SP3\",\"12-SP4\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"14.04.0-LTS\",\"14.04.1-LTS\",\"14.04.5-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"16.04-LTS\",\"16.04.0-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"18.04-LTS\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Centos\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/11ac78e3-31bc-4f0c-8434-37ab963cea07\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"11ac78e3-31bc-4f0c-8434-37ab963cea07\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1655 - Voice Over Internet Protocol\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1655\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/121eab72-390e-4629-a7e2-6d6184f57c6b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"121eab72-390e-4629-a7e2-6d6184f57c6b\"},{\"properties\":{\"displayName\":\"Allowlist rules in your adaptive application control policy should be updated\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Monitor for changes in behavior on groups of machines configured for auditing by Azure Security Center's adaptive application controls. Security Center uses machine learning to analyze the running processes on your machines and suggest a list of known-safe applications. These are presented as recommended apps to allow in adaptive application control policies.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"applicationWhitelistingUpdate\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/123a3936-f020-408a-ba0c-47873faf1534\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"123a3936-f020-408a-ba0c-47873faf1534\"},{\"properties\":{\"displayName\":\"Web Application Firewall (WAF) should use the specified mode for Application Gateway\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Mandates the use of 'Detection' or 'Prevention' mode to be active on all Web Application Firewall policies for Application Gateway.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"modeRequirement\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Mode Requirement\",\"description\":\"Mode required for all WAF policies\"},\"allowedValues\":[\"Prevention\",\"Detection\"],\"defaultValue\":\"Detection\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies\"},{\"field\":\"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/policySettings.mode\",\"notEquals\":\"[parameters('modeRequirement')]\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/12430be1-6cc8-4527-a9a8-e3d38f250096\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"12430be1-6cc8-4527-a9a8-e3d38f250096\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1681 - Malicious Code Protection | Automatic Updates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1681\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/12623e7e-4736-4b2e-b776-c1600f35f93a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"12623e7e-4736-4b2e-b776-c1600f35f93a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1240 - User-Installed Software\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1240\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/129eb39f-d79a-4503-84cd-92f036b5e429\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"129eb39f-d79a-4503-84cd-92f036b5e429\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - System objects'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - System objects'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsSystemobjects\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsSystemobjects\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/12ae2d24-3805-4b37-9fa9-465968bfbcfa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"12ae2d24-3805-4b37-9fa9-465968bfbcfa\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1666 - System And Information Integrity Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1666\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/12e30ee3-61e6-4509-8302-a871e8ebb91e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"12e30ee3-61e6-4509-8302-a871e8ebb91e\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not have the specified applications installed. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"installedApplication\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Application names (supports wildcards)\",\"description\":\"A semicolon-separated list of the names of the applications that should be installed. e.g. 'Microsoft SQL Server 2014 (64-bit); Microsoft Visual Studio Code' or 'Microsoft SQL Server 2014*' (to match any application starting with 'Microsoft SQL Server 2014')\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WhitelistedApplication\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[InstalledApplication]bwhitelistedapp;Name', '=', parameters('installedApplication')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WhitelistedApplication\"},\"installedApplication\":{\"value\":\"[parameters('installedApplication')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"installedApplication\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[InstalledApplication]bwhitelistedapp;Name\",\"value\":\"[parameters('installedApplication')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[InstalledApplication]bwhitelistedapp;Name\",\"value\":\"[parameters('installedApplication')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/12f7e5d0-42a7-4630-80d8-54fb7cff9bd6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"12f7e5d0-42a7-4630-80d8-54fb7cff9bd6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1347 - Identification And Authentication (Non-Org. Users) | Acceptance Of PIV Creds. From Other Agys.\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1347\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/131a2706-61e9-4916-a164-00e052056462\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"131a2706-61e9-4916-a164-00e052056462\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1450 - Physical Access Authorizations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1450\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/134d7a13-ba3e-41e2-b236-91bfcfa24e01\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"134d7a13-ba3e-41e2-b236-91bfcfa24e01\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1184 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1184\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/13579d0e-0ab0-4b26-b0fb-d586f6d7ed20\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"13579d0e-0ab0-4b26-b0fb-d586f6d7ed20\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1085 - Publicly Accessible Content\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1085\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/13d117e0-38b0-4bbb-aaab-563be5dd10ba\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"13d117e0-38b0-4bbb-aaab-563be5dd10ba\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1404 - Maintenance Tools\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1404\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/13d8f903-0cd6-449f-a172-50f6579c182b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"13d8f903-0cd6-449f-a172-50f6579c182b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1695 - Information System Monitoring | Wireless Intrusion Detection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1695\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/13fcf812-ec82-4eda-9b89-498de9efd620\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"13fcf812-ec82-4eda-9b89-498de9efd620\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs in which the Administrators group contains any of the specified members\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines in which the Administrators group contains any of the specified members. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"MembersToExclude\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Members to exclude\",\"description\":\"A semicolon-separated list of members that should be excluded in the Administrators local group. Ex: Administrator; myUser1; myUser2\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AdministratorsGroupMembersToExclude\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[LocalGroup]AdministratorsGroup;MembersToExclude', '=', parameters('MembersToExclude')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AdministratorsGroupMembersToExclude\"},\"MembersToExclude\":{\"value\":\"[parameters('MembersToExclude')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"MembersToExclude\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LocalGroup]AdministratorsGroup;MembersToExclude\",\"value\":\"[parameters('MembersToExclude')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LocalGroup]AdministratorsGroup;MembersToExclude\",\"value\":\"[parameters('MembersToExclude')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/144f1397-32f9-4598-8c88-118decc3ccba\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"144f1397-32f9-4598-8c88-118decc3ccba\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1157 - Plan Of Action And Milestones\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1157\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/15495367-cf68-464c-bbc3-f53ca5227b7a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"15495367-cf68-464c-bbc3-f53ca5227b7a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1491 - Security Planning Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1491\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1571dd40-dafc-4ef4-8f55-16eba27efc7b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1571dd40-dafc-4ef4-8f55-16eba27efc7b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1564 - System Development Life Cycle\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1564\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/157f0ef9-143f-496d-b8f9-f8c8eeaad801\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"157f0ef9-143f-496d-b8f9-f8c8eeaad801\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not have a minimum password age of 1 day\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not have a minimum password age of 1 day. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MinimumPasswordAge\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"MinimumPasswordAge\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/16390df4-2f73-4b42-af13-c801066763df\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"16390df4-2f73-4b42-af13-c801066763df\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1662 - Fail In Known State\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1662\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/165cb91f-7ea8-4ab7-beaf-8636b98c9d15\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"165cb91f-7ea8-4ab7-beaf-8636b98c9d15\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1684 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1684\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/16bfdb59-db38-47a5-88a9-2e9371a638cf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"16bfdb59-db38-47a5-88a9-2e9371a638cf\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not have the specified Windows PowerShell modules installed\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not have the specified Windows PowerShell modules installed. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsPowerShellModules\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/16f9b37c-4408-4c30-bc17-254958f2e2d6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"16f9b37c-4408-4c30-bc17-254958f2e2d6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1103 - Audit Events\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1103\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/16feeb31-6377-437e-bbab-d7f73911896d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"16feeb31-6377-437e-bbab-d7f73911896d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1007 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1007\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/17200329-bf6c-46d8-ac6d-abf4641c2add\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"17200329-bf6c-46d8-ac6d-abf4641c2add\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1349 - Identification And Authentication (Non-Org. Users) | Use Of FICAM-Approved Products\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1349\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/17641f70-94cd-4a5d-a613-3d1143e20e34\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"17641f70-94cd-4a5d-a613-3d1143e20e34\"},{\"properties\":{\"displayName\":\"Deploy associations for a managed application\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys an association resource that associates selected resource types to the specified managed application. This policy deployment does not support nested resource types.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Managed Application\"},\"parameters\":{\"targetManagedApplicationId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Managed application ID\",\"description\":\"Resource ID of the managed application to which resources need to be associated.\"}},\"resourceTypesToAssociate\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Resource types to associate\",\"description\":\"The list of resource types to be associated to the managed application.\",\"strongType\":\"resourceTypes\"}},\"associationNamePrefix\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Association name prefix\",\"description\":\"Prefix to be added to the name of the association resource being created.\"},\"defaultValue\":\"DeployedByPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":\"[parameters('resourceTypesToAssociate')]\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.CustomProviders/Associations\",\"name\":\"[concat(parameters('associationNamePrefix'), '-', uniqueString(parameters('targetManagedApplicationId')))]\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"associatedResourceName\":{\"type\":\"string\"},\"resourceTypesToAssociate\":{\"type\":\"string\"},\"targetManagedApplicationId\":{\"type\":\"string\"},\"associationNamePrefix\":{\"type\":\"string\"}},\"variables\":{\"resourceType\":\"[concat(parameters('resourceTypesToAssociate'), '/providers/associations')]\",\"resourceName\":\"[concat(parameters('associatedResourceName'), '/microsoft.customproviders/', parameters('associationNamePrefix'), '-', uniqueString(parameters('targetManagedApplicationId')))]\"},\"resources\":[{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2017-05-10\",\"name\":\"[concat(deployment().Name, '-2')]\",\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"resources\":[{\"type\":\"[variables('resourceType')]\",\"name\":\"[variables('resourceName')]\",\"apiVersion\":\"2018-09-01-preview\",\"properties\":{\"targetResourceId\":\"[parameters('targetManagedApplicationId')]\"}}]}}}]},\"parameters\":{\"resourceTypesToAssociate\":{\"value\":\"[field('type')]\"},\"associatedResourceName\":{\"value\":\"[field('name')]\"},\"targetManagedApplicationId\":{\"value\":\"[parameters('targetManagedApplicationId')]\"},\"associationNamePrefix\":{\"value\":\"[parameters('associationNamePrefix')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/17763ad9-70c0-4794-9397-53d765932634\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"17763ad9-70c0-4794-9397-53d765932634\"},{\"properties\":{\"displayName\":\"Transparent Data Encryption on SQL databases should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Transparent data encryption should be enabled to protect data-at-rest and meet compliance requirements\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers/databases\"},{\"field\":\"name\",\"notEquals\":\"master\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/databases/transparentDataEncryption\",\"name\":\"current\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Sql/transparentDataEncryption.status\",\"equals\":\"enabled\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/17k78e20-9358-41c9-923c-fb736d382a12\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"17k78e20-9358-41c9-923c-fb736d382a12\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1325 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1325\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1845796a-7581-49b2-ae20-443121538e19\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1845796a-7581-49b2-ae20-443121538e19\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1480 - Temperature And Humidity Controls\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1480\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/18a767cc-1947-4338-a240-bc058c81164f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"18a767cc-1947-4338-a240-bc058c81164f\"},{\"properties\":{\"displayName\":\"Bring your own key data protection should be enabled for PostgreSQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits PostgreSQL servers in your environment without bring your own key data protection enabled. For more details, visit https://aka.ms/postgresqlbyok.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/keys\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.DBforPostgreSQL/servers/keys/serverKeyType\",\"equals\":\"AzureKeyVault\"},{\"field\":\"Microsoft.DBforPostgreSQL/servers/keys/uri\",\"notEquals\":\"\"},{\"field\":\"Microsoft.DBforPostgreSQL/servers/keys/uri\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/18adea5e-f416-4d0f-8aa8-d24321e3e274\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"18adea5e-f416-4d0f-8aa8-d24321e3e274\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1369 - Incident Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1369\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/18cc35ed-a429-486d-8d59-cb47e87304ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"18cc35ed-a429-486d-8d59-cb47e87304ed\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1269 - Alternate Storage Site | Separation From Primary Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1269\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/19b9439d-865d-4474-b17d-97d2702fdb66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"19b9439d-865d-4474-b17d-97d2702fdb66\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1071 - Wireless Access | Restrict Configurations By Users\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1071\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1a437f5b-9ad6-4f28-8861-de404d511ae4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1a437f5b-9ad6-4f28-8861-de404d511ae4\"},{\"properties\":{\"displayName\":\"Azure Monitor log profile should collect logs for categories 'write,' 'delete,' and 'action'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy ensures that a log profile collects logs for categories 'write,' 'delete,' and 'action'\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/logprofiles\",\"existenceCondition\":{\"allOf\":[{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/categories[*]\",\"notEquals\":\"Write\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/categories[*]\",\"notEquals\":\"Delete\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/categories[*]\",\"notEquals\":\"Action\"}}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1a4e592a-6a6e-44a5-9814-e36264ca96e7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1a4e592a-6a6e-44a5-9814-e36264ca96e7\"},{\"properties\":{\"displayName\":\"[Deprecated]: Access to App Services should be restricted\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Azure security center has discovered that the networking configuration of some of your app services are overly permissive and allow inbound traffic from ranges that are too broad\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"restrictAccessToAppServices\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1a833ff1-d297-4a0f-9944-888428f8e0ff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1a833ff1-d297-4a0f-9944-888428f8e0ff\"},{\"properties\":{\"displayName\":\"Vulnerability assessment should be enabled on SQL Managed Instance\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit each SQL Managed Instance which doesn't have recurring vulnerability assessment scans enabled. Vulnerability assessment can discover, track, and help you remediate potential database vulnerabilities.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/managedInstances/vulnerabilityAssessments\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/managedInstances/vulnerabilityAssessments/recurringScans.isEnabled\",\"equals\":\"True\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1b7aa243-30e4-4c9e-bca8-d0d3022b634a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1b7aa243-30e4-4c9e-bca8-d0d3022b634a\"},{\"properties\":{\"displayName\":\"Public network access on Azure SQL Database should be disabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Disabling the public network access property improves security by ensuring your Azure SQL Database can only be accessed from a private endpoint. This configuration denies all logins that match IP or virtual network based firewall rules.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"field\":\"Microsoft.Sql/servers/publicNetworkAccess\",\"notEquals\":\"Disabled\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1b8ca024-1d5c-4dec-8995-b1a932b41780\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1b8ca024-1d5c-4dec-8995-b1a932b41780\"},{\"properties\":{\"displayName\":\"Ensure that 'PHP version' is the latest, if used as a part of the Api app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for PHP software either due to security flaws or to include additional functionality. Using the latest PHP version for API apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"PHPLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Latest PHP version\",\"description\":\"Latest supported PHP version for App Services\"},\"defaultValue\":\"7.3\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"PHP\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"[concat('PHP|', parameters('PHPLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"[parameters('PHPLatestVersion')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1bc1795e-d44a-4d48-9b3b-6fff0fd5f9ba\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1bc1795e-d44a-4d48-9b3b-6fff0fd5f9ba\"},{\"properties\":{\"displayName\":\"Deploy Dependency agent for Windows virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Dependency agent for Windows virtual machines if the VM Image (OS) is in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated.\",\"metadata\":{\"version\":\"1.1.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"DependencyAgentWindows\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"DependencyAgent\",\"vmExtensionPublisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"vmExtensionType\":\"DependencyAgentWindows\",\"vmExtensionTypeHandlerVersion\":\"9.6\"},\"resources\":[{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"apiVersion\":\"2019-12-01\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1c210e94-a481-4beb-95fa-1571b434fb04\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1c210e94-a481-4beb-95fa-1571b434fb04\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1072 - Wireless Access | Antennas / Transmission Power Levels\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1072\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1ca29e41-34ec-4e70-aba9-6248aca18c31\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1ca29e41-34ec-4e70-aba9-6248aca18c31\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1656 - Secure Name / Address Resolution Service (Authoritative Source)\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1656\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1cb067d5-c8b5-4113-a7ee-0a493633924b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1cb067d5-c8b5-4113-a7ee-0a493633924b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1592 - External Information System Services | Consistent Interests Of Consumers And Providers\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1592\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1d01ba6c-289f-42fd-a408-494b355b6222\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1d01ba6c-289f-42fd-a408-494b355b6222\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1088 - Security Awareness And Training Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1088\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1d50f99d-1356-49c0-934a-45f742ba7783\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1d50f99d-1356-49c0-934a-45f742ba7783\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy GitOps to Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy deploys a 'sourceControlConfiguration' to Kubernetes clusters to assure that the clusters get their source of truth from the defined git repo. For instructions on using this policy, visit https://aka.ms/K8sGitOpsPolicy.\",\"metadata\":{\"preview\":true,\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\"},\"parameters\":{\"configurationResourceName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Configuration resource name\",\"description\":\"The name for the sourceControlConfiguration. Learn more about setting up GitOps configuration: https://aka.ms/AzureArcK8sUsingGitOps.\"}},\"operatorInstanceName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Operator instance name\",\"description\":\"The name of the operator associated with this configuration. The instance name can contain up to 353 lower-case alphanumeric characters, hyphen, or period. If enableHelmOperator is true, then operatorInstanceName + operatorNamespace strings cannot exceed 47 characters combined.\"}},\"operatorNamespace\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Operator namespace\",\"description\":\"The namespace to use for the configuration operator. The namespace can contain up to 353 lower-case alphanumeric characters, hyphen, or period. If enableHelmOperator is true, then operatorInstanceName + operatorNamespace strings cannot exceed 47 characters combined.\"}},\"operatorScope\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Operator scope\",\"description\":\"The permission scope for the operator. Possible values are 'cluster' (full access) or 'namespace' (restricted access).\"},\"allowedValues\":[\"cluster\",\"namespace\"],\"defaultValue\":\"namespace\"},\"operatorType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Operator type\",\"description\":\"The type of operator to install. Currently, 'Flux' is supported.\"},\"allowedValues\":[\"Flux\"],\"defaultValue\":\"Flux\"},\"operatorParams\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Operator parameters\",\"description\":\"Parameters to set on the Flux operator, separated by spaces. For example, --git-readonly --git-path=namespaces,workloads. Learn more: http://aka.ms/AzureArcK8sFluxOperatorParams.\"},\"defaultValue\":\"\"},\"repositoryUrl\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Repository Url\",\"description\":\"The URL for the source control repository. Private repo: git@github.com:Contoso/cluster-config\"}},\"enableHelmOperator\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Enable Helm\",\"description\":\"Indicate whether to enable Helm for this instance of Flux. Learn more: http://aka.ms/AzureArcK8sGitOpsWithHelm.\"},\"allowedValues\":[\"true\",\"false\"],\"defaultValue\":\"true\"},\"chartVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Helm chart version for installing Flux Helm\",\"description\":\"The version of the Helm chart for installing Flux Helm. For example, 0.6.0\"},\"defaultValue\":\"0.6.0\"},\"chartValues\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Helm chart parameters for installing Flux Helm\",\"description\":\"Parameters for the Helm chart for installing Flux Helm, separated by spaces.\"},\"defaultValue\":\"\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations\",\"name\":\"[parameters('configurationResourceName')]\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deploymentScope\":\"ResourceGroup\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations/operatorParams\",\"in\":[\"--git-readonly\",\"[parameters('operatorParams')]\",\"[concat('--git-readonly ',parameters('operatorParams'))]\"]},{\"field\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations/repositoryUrl\",\"equals\":\"[parameters('repositoryUrl')]\"},{\"anyOf\":[{\"field\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations/enableHelmOperator\",\"equals\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations/enableHelmOperator\",\"equals\":\"true\"},{\"field\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations/helmOperatorProperties.chartVersion\",\"equals\":\"[parameters('chartVersion')]\"},{\"field\":\"Microsoft.KubernetesConfiguration/sourceControlConfigurations/helmOperatorProperties.chartValues\",\"equals\":\"[parameters('chartValues')]\"}]}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"configurationResourceName\":{\"type\":\"string\"},\"clusterLocation\":{\"type\":\"string\"},\"clusterName\":{\"type\":\"string\"},\"operatorInstanceName\":{\"type\":\"string\"},\"operatorNamespace\":{\"type\":\"string\"},\"operatorScope\":{\"type\":\"string\"},\"operatorType\":{\"type\":\"string\"},\"operatorParams\":{\"type\":\"string\"},\"repositoryUrl\":{\"type\":\"string\"},\"enableHelmOperator\":{\"type\":\"string\"},\"chartVersion\":{\"type\":\"string\"},\"chartValues\":{\"type\":\"string\"},\"clusterResourceType\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[contains(parameters('clusterResourceType'), 'connectedclusters')]\",\"type\":\"Microsoft.Kubernetes/connectedClusters/providers/sourceControlConfigurations\",\"name\":\"[concat(parameters('clusterName'), '/Microsoft.KubernetesConfiguration/', parameters('configurationResourceName'))]\",\"apiVersion\":\"2019-11-01-preview\",\"properties\":{\"operatorInstanceName\":\"[parameters('operatorInstanceName')]\",\"operatorNamespace\":\"[parameters('operatorNamespace')]\",\"operatorScope\":\"[parameters('operatorScope')]\",\"operatorType\":\"[parameters('operatorType')]\",\"operatorParams\":\"[parameters('operatorParams')]\",\"repositoryUrl\":\"[parameters('repositoryUrl')]\",\"enableHelmOperator\":\"[parameters('enableHelmOperator')]\",\"helmOperatorProperties\":{\"chartVersion\":\"[parameters('chartVersion')]\",\"chartValues\":\"[parameters('chartValues')]\"}}},{\"condition\":\"[contains(parameters('clusterResourceType'), 'managedclusters')]\",\"type\":\"Microsoft.ContainerService/managedClusters/providers/sourceControlConfigurations\",\"name\":\"[concat(parameters('clusterName'), '/Microsoft.KubernetesConfiguration/', parameters('configurationResourceName'))]\",\"apiVersion\":\"2019-11-01-preview\",\"properties\":{\"operatorInstanceName\":\"[parameters('operatorInstanceName')]\",\"operatorNamespace\":\"[parameters('operatorNamespace')]\",\"operatorScope\":\"[parameters('operatorScope')]\",\"operatorType\":\"[parameters('operatorType')]\",\"operatorParams\":\"[parameters('operatorParams')]\",\"repositoryUrl\":\"[parameters('repositoryUrl')]\",\"enableHelmOperator\":\"[parameters('enableHelmOperator')]\",\"helmOperatorProperties\":{\"chartVersion\":\"[parameters('chartVersion')]\",\"chartValues\":\"[parameters('chartValues')]\"}}}]},\"parameters\":{\"clusterLocation\":{\"value\":\"[field('location')]\"},\"clusterName\":{\"value\":\"[field('name')]\"},\"configurationResourceName\":{\"value\":\"[parameters('configurationResourceName')]\"},\"operatorInstanceName\":{\"value\":\"[parameters('operatorInstanceName')]\"},\"operatorNamespace\":{\"value\":\"[parameters('operatorNamespace')]\"},\"operatorScope\":{\"value\":\"[parameters('operatorScope')]\"},\"operatorType\":{\"value\":\"[parameters('operatorType')]\"},\"operatorParams\":{\"value\":\"[parameters('operatorParams')]\"},\"repositoryUrl\":{\"value\":\"[parameters('repositoryUrl')]\"},\"enableHelmOperator\":{\"value\":\"[parameters('enableHelmOperator')]\"},\"chartVersion\":{\"value\":\"[parameters('chartVersion')]\"},\"chartValues\":{\"value\":\"[parameters('chartValues')]\"},\"clusterResourceType\":{\"value\":\"[field('type')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1d61c4d2-aef2-432b-87fc-7f96b019b7e1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1d61c4d2-aef2-432b-87fc-7f96b019b7e1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1538 - Security Categorization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1538\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1d7658b2-e827-49c3-a2ae-6d2bd0b45874\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1d7658b2-e827-49c3-a2ae-6d2bd0b45874\"},{\"properties\":{\"displayName\":\"Virtual machines should be migrated to new Azure Resource Manager resources\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use new Azure Resource Manager for your virtual machines to provide security enhancements such as: stronger access control (RBAC), better auditing, Azure Resource Manager based deployment and governance, access to managed identities, access to key vault for secrets, Azure AD-based authentication and support for tags and resource groups for easier security management\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.ClassicCompute/virtualMachines\",\"Microsoft.Compute/virtualMachines\"]},{\"value\":\"[field('type')]\",\"equals\":\"Microsoft.ClassicCompute/virtualMachines\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1d84d5fb-01f6-4d12-ba4f-4a26081d403d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1d84d5fb-01f6-4d12-ba4f-4a26081d403d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1298 - Identification And Authentication Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1298\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1dc784b5-4895-4d27-9d40-a06b032bd1ee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1dc784b5-4895-4d27-9d40-a06b032bd1ee\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit API Applications that are not using latest supported .NET Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported .NET Framework version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestDotNet\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1de7b11d-1870-41a5-8181-507e7c663cfb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1de7b11d-1870-41a5-8181-507e7c663cfb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1595 - Developer Configuration Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1595\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1e0414e7-6ef5-4182-8076-aa82fbb53341\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1e0414e7-6ef5-4182-8076-aa82fbb53341\"},{\"properties\":{\"displayName\":\"Require a tag and its value on resources\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Enforces a required tag and its value. Does not apply to resource groups.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"not\":{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"equals\":\"[parameters('tagValue')]\"}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1e30110a-5ceb-460c-a204-c1c3969c6d62\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1e30110a-5ceb-460c-a204-c1c3969c6d62\"},{\"properties\":{\"displayName\":\"An Azure Active Directory administrator should be provisioned for SQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit provisioning of an Azure Active Directory administrator for your SQL server to enable Azure AD authentication. Azure AD authentication enables simplified permission management and centralized identity management of database users and other Microsoft services\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/administrators\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1f314764-cb73-4fc9-b863-8eca98ac36e9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1f314764-cb73-4fc9-b863-8eca98ac36e9\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Event Hub to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Event Hub to stream to a regional Log Analytics workspace when any Event Hub which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.EventHub/namespaces\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.EventHub/namespaces/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"ArchiveLogs\",\"enabled\":true,\"retentionPolicy\":{\"enabled\":false,\"days\":0}},{\"category\":\"OperationalLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"AutoScaleLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"KafkaCoordinatorLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"EventHubVNetConnectionEvent\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"CustomerManagedKeyUserLogs\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1f6e93e8-6b31-41b1-83f6-36e449a42579\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1f6e93e8-6b31-41b1-83f6-36e449a42579\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Shutdown'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Shutdown'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Shutdown: Allow system to be shut down without having to log on\",\"description\":\"Specifies whether a computer can be shut down when a user is not logged on. If this policy setting is enabled, the shutdown command is available on the Windows logon screen.\"},\"defaultValue\":\"0\"},\"ShutdownClearVirtualMemoryPagefile\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Shutdown: Clear virtual memory pagefile\",\"description\":\"Specifies whether the virtual memory pagefile is cleared when the system is shut down. When this policy setting is enabled, the system pagefile is cleared each time that the system shuts down properly. For systems with large amounts of RAM, this could result in substantial time needed to complete the shutdown.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsShutdown\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Shutdown: Allow system to be shut down without having to log on;ExpectedValue', '=', parameters('ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn'), ',', 'Shutdown: Clear virtual memory pagefile;ExpectedValue', '=', parameters('ShutdownClearVirtualMemoryPagefile')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsShutdown\"},\"ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn\":{\"value\":\"[parameters('ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn')]\"},\"ShutdownClearVirtualMemoryPagefile\":{\"value\":\"[parameters('ShutdownClearVirtualMemoryPagefile')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn\":{\"type\":\"string\"},\"ShutdownClearVirtualMemoryPagefile\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Shutdown: Allow system to be shut down without having to log on;ExpectedValue\",\"value\":\"[parameters('ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn')]\"},{\"name\":\"Shutdown: Clear virtual memory pagefile;ExpectedValue\",\"value\":\"[parameters('ShutdownClearVirtualMemoryPagefile')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Shutdown: Allow system to be shut down without having to log on;ExpectedValue\",\"value\":\"[parameters('ShutdownAllowSystemToBeShutDownWithoutHavingToLogOn')]\"},{\"name\":\"Shutdown: Clear virtual memory pagefile;ExpectedValue\",\"value\":\"[parameters('ShutdownClearVirtualMemoryPagefile')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1f8c20ce-3414-4496-8b26-0e902a1541da\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1f8c20ce-3414-4496-8b26-0e902a1541da\"},{\"properties\":{\"displayName\":\"Azure Cosmos DB account should use customer-managed keys to encrypt data at rest\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use customer-managed keys to control the encryption at rest of the data stored in Azure Cosmos DB when this is a regulatory or compliance requirement. Customer-managed keys also deliver double encryption by adding a second layer of encryption on top of the default one done with service-managed keys. See https://aka.ms/cosmosdb-cmk\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cosmos DB\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The desired effect of the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"Microsoft.DocumentDB/databaseAccounts/keyVaultKeyUri\",\"exists\":false},{\"field\":\"type\",\"equals\":\"Microsoft.DocumentDB/databaseAccounts\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1f905d99-2ab7-462c-a6b0-f709acca6c8f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1f905d99-2ab7-462c-a6b0-f709acca6c8f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1616 - System And Communications Protection Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1616\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2006457a-48b3-4f7b-8d2e-1532287f9929\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2006457a-48b3-4f7b-8d2e-1532287f9929\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1650 - Public Key Infrastructure Certificates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1650\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/201d3740-bd16-4baf-b4b8-7cda352228b7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"201d3740-bd16-4baf-b4b8-7cda352228b7\"},{\"properties\":{\"displayName\":\"[Deprecated]: Web ports should be restricted on Network Security Groups associated to your VM\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Azure security center has discovered that some of your virtual machines are running web applications, and the NSGs associated to these virtual machines are overly permissive with regards to the web application ports\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"unprotectedWebApplication\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/201ea587-7c90-41c3-910f-c280ae01cfd6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"201ea587-7c90-41c3-910f-c280ae01cfd6\"},{\"properties\":{\"displayName\":\"VM Image Builder templates should use private link\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit VM Image Builder templates that do not have a virtual network configured. When a virtual network is not configured, a public IP is created and used instead which may expose resources directly to the internet and increase the potential attack surface.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"VM Image Builder\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.VirtualMachineImages/imageTemplates\"},{\"field\":\"Microsoft.VirtualMachineImages/imageTemplates/vmProfile.vnetConfig\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2154edb9-244f-4741-9970-660785bccdaa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2154edb9-244f-4741-9970-660785bccdaa\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1181 - Baseline Configuration | Retention Of Previous Configurations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1181\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/21839937-d241-4fa5-95c6-b669253d9ab9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"21839937-d241-4fa5-95c6-b669253d9ab9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1111 - Response To Audit Processing Failures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1111\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/21de687c-f15e-4e51-bf8d-f35c8619965b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"21de687c-f15e-4e51-bf8d-f35c8619965b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1596 - Developer Configuration Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1596\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/21e25e01-0ae0-41be-919e-04ce92b8e8b8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"21e25e01-0ae0-41be-919e-04ce92b8e8b8\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Audit'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Audit'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsAudit\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/21e2995e-683e-497a-9e81-2f42ad07050a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"21e2995e-683e-497a-9e81-2f42ad07050a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1426 - Media Protection Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1426\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/21f639bc-f42b-46b1-8f40-7a2a389c291a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"21f639bc-f42b-46b1-8f40-7a2a389c291a\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit API Apps that are not using custom domains\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use of custom domains protects a API app from common attacks such as phishing and other DNS-related attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UsedCustomDomains\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/224da9fe-0d38-4e79-adb3-0a6e2af942ac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"224da9fe-0d38-4e79-adb3-0a6e2af942ac\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1399 - Controlled Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1399\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2256e638-eb23-480f-9e15-6cf1af0a76b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2256e638-eb23-480f-9e15-6cf1af0a76b3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1221 - Least Functionality | Authorized Software / Whitelisting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1221\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/22589a07-0007-486a-86ca-95355081ae2a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"22589a07-0007-486a-86ca-95355081ae2a\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Account Management'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Account Management'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesAccountManagement\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/225e937e-d32e-4713-ab74-13ce95b3519a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"225e937e-d32e-4713-ab74-13ce95b3519a\"},{\"properties\":{\"displayName\":\"Management ports should be closed on your virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Open remote management ports are exposing your VM to a high level of risk from Internet-based attacks. These attacks attempt to brute force credentials to gain admin access to the machine.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"restrictAccessToManagementPorts\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/22730e10-96f6-4aac-ad84-9383d35b5917\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"22730e10-96f6-4aac-ad84-9383d35b5917\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1493 - System Security Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1493\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/22b469b3-fccf-42da-aa3b-a28e6fb113ce\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"22b469b3-fccf-42da-aa3b-a28e6fb113ce\"},{\"properties\":{\"displayName\":\"Only secure connections to your Azure Cache for Redis should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of only connections via SSL to Azure Cache for Redis. Use of secure connections ensures authentication between the server and the service and protects data in transit from network layer attacks such as man-in-the-middle, eavesdropping, and session-hijacking\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cache\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Cache/redis\"},{\"field\":\"Microsoft.Cache/Redis/enableNonSslPort\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/22bee202-a82f-4305-9a2a-6d7f44d4dedb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"22bee202-a82f-4305-9a2a-6d7f44d4dedb\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not restrict the minimum password length to 14 characters\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not restrict the minimum password length to 14 characters. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MinimumPasswordLength\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"MinimumPasswordLength\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/23020aa6-1135-4be2-bae2-149982b06eca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"23020aa6-1135-4be2-bae2-149982b06eca\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1256 - Contingency Plan | Identify Critical Assets\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1256\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/232ab24b-810b-4640-9019-74a7d0d6a980\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"232ab24b-810b-4640-9019-74a7d0d6a980\"},{\"properties\":{\"displayName\":\"Service Bus should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Service Bus not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ServiceBus/namespaces\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.ServiceBus/namespaces/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.ServiceBus/namespaces/virtualNetworkRules/virtualNetworkSubnetId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/235359c5-7c52-4b82-9055-01c75cf9f60e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"235359c5-7c52-4b82-9055-01c75cf9f60e\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Stream Analytics to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Stream Analytics to stream to a regional Log Analytics workspace when any Stream Analytics which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.StreamAnalytics/streamingjobs\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.StreamAnalytics/streamingjobs/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"Execution\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Authoring\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/237e0f7e-b0e8-4ec4-ad46-8c12cb66d673\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"237e0f7e-b0e8-4ec4-ad46-8c12cb66d673\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1268 - Alternate Storage Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1268\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/23f6e984-3053-4dfc-ab48-543b764781f5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"23f6e984-3053-4dfc-ab48-543b764781f5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1122 - Audit Review, Analysis, And Reporting | Permitted Actions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1122\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/243ec95e-800c-49d4-ba52-1fdd9f6b8b57\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"243ec95e-800c-49d4-ba52-1fdd9f6b8b57\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1231 - Configuration Management Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1231\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/244e0c05-cc45-4fe7-bf36-42dcf01f457d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"244e0c05-cc45-4fe7-bf36-42dcf01f457d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1082 - Information Sharing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1082\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/24d480ef-11a0-4b1b-8e70-4e023bf2be23\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"24d480ef-11a0-4b1b-8e70-4e023bf2be23\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not have a maximum password age of 70 days\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not have a maximum password age of 70 days. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MaximumPasswordAge\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/24dde96d-f0b1-425e-884f-4a1421e2dcdc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"24dde96d-f0b1-425e-884f-4a1421e2dcdc\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Data Lake Storage Gen1 to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Data Lake Storage Gen1 to stream to a regional Log Analytics workspace when any Data Lake Storage Gen1 which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeStore/accounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.DataLakeStore/accounts/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"Audit\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Requests\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/25763a0a-5783-4f14-969e-79d4933eb74b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"25763a0a-5783-4f14-969e-79d4933eb74b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1372 - Incident Reporting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1372\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/25b96717-c912-4c00-9143-4e487f411726\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"25b96717-c912-4c00-9143-4e487f411726\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1038 - Least Privilege | Privileged Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1038\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/26692e88-71b7-4a5f-a8ac-9f31dd05bd8e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"26692e88-71b7-4a5f-a8ac-9f31dd05bd8e\"},{\"properties\":{\"displayName\":\"Endpoint protection solution should be installed on virtual machine scale sets\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit the existence and health of an endpoint protection solution on your virtual machines scale sets, to protect them from threats and vulnerabilities.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"EndpointProtection\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/26a828e1-e88f-464e-bbb3-c134a282b9de\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"26a828e1-e88f-464e-bbb3-c134a282b9de\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1649 - Collaborative Computing Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1649\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/26d292cc-b0b8-4c29-9337-68abc758bf7b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"26d292cc-b0b8-4c29-9337-68abc758bf7b\"},{\"properties\":{\"displayName\":\"Metric alert rules should be configured on Batch accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit configuration of metric alert rules on Batch account to enable the required metric\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Batch\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"metricName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Metric name\",\"description\":\"The metric name that an alert rule must be enabled on\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/alertRules\",\"existenceScope\":\"Subscription\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/alertRules/isEnabled\",\"equals\":\"true\"},{\"field\":\"Microsoft.Insights/alertRules/condition.dataSource.metricName\",\"equals\":\"[parameters('metricName')]\"},{\"field\":\"Microsoft.Insights/alertRules/condition.dataSource.resourceUri\",\"equals\":\"[concat('/subscriptions/', subscription().subscriptionId, '/resourcegroups/', resourceGroup().name, '/providers/Microsoft.Batch/batchAccounts/', field('name'))]\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/26ee67a2-f81a-4ba8-b9ce-8550bd5ee1a7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"26ee67a2-f81a-4ba8-b9ce-8550bd5ee1a7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1396 - Controlled Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1396\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/276af98f-4ff9-4e69-99fb-c9b2452fb85f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"276af98f-4ff9-4e69-99fb-c9b2452fb85f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1074 - Access Control For Mobile Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1074\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/27a69937-af92-4198-9b86-08d355c7e59a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"27a69937-af92-4198-9b86-08d355c7e59a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1527 - Access Agreements\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1527\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2823de66-332f-4bfd-94a3-3eb036cd3b67\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2823de66-332f-4bfd-94a3-3eb036cd3b67\"},{\"properties\":{\"displayName\":\"Deploy default Microsoft IaaSAntimalware extension for Windows Server\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys a Microsoft IaaSAntimalware extension with a default configuration when a VM is not configured with the antimalware extension.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\"]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"IaaSAntimalware\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Security\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"ExclusionsPaths\":{\"type\":\"string\",\"defaultValue\":\"\",\"metadata\":{\"description\":\"Semicolon delimited list of file paths or locations to exclude from scanning\"}},\"ExclusionsExtensions\":{\"type\":\"string\",\"defaultValue\":\"\",\"metadata\":{\"description\":\"Semicolon delimited list of file extensions to exclude from scanning\"}},\"ExclusionsProcesses\":{\"type\":\"string\",\"defaultValue\":\"\",\"metadata\":{\"description\":\"Semicolon delimited list of process names to exclude from scanning\"}},\"RealtimeProtectionEnabled\":{\"type\":\"string\",\"defaultValue\":\"true\",\"metadata\":{\"description\":\"Indicates whether or not real time protection is enabled (default is true)\"}},\"ScheduledScanSettingsIsEnabled\":{\"type\":\"string\",\"defaultValue\":\"false\",\"metadata\":{\"description\":\"Indicates whether or not custom scheduled scan settings are enabled (default is false)\"}},\"ScheduledScanSettingsScanType\":{\"type\":\"string\",\"defaultValue\":\"Quick\",\"metadata\":{\"description\":\"Indicates whether scheduled scan setting type is set to Quick or Full (default is Quick)\"}},\"ScheduledScanSettingsDay\":{\"type\":\"string\",\"defaultValue\":\"7\",\"metadata\":{\"description\":\"Day of the week for scheduled scan (1-Sunday, 2-Monday, ..., 7-Saturday)\"}},\"ScheduledScanSettingsTime\":{\"type\":\"string\",\"defaultValue\":\"120\",\"metadata\":{\"description\":\"When to perform the scheduled scan, measured in minutes from midnight (0-1440). For example: 0 = 12AM, 60 = 1AM, 120 = 2AM.\"}}},\"resources\":[{\"name\":\"[concat(parameters('vmName'),'/IaaSAntimalware')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2017-12-01\",\"properties\":{\"publisher\":\"Microsoft.Azure.Security\",\"type\":\"IaaSAntimalware\",\"typeHandlerVersion\":\"1.3\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"AntimalwareEnabled\":true,\"RealtimeProtectionEnabled\":\"[parameters('RealtimeProtectionEnabled')]\",\"ScheduledScanSettings\":{\"isEnabled\":\"[parameters('ScheduledScanSettingsIsEnabled')]\",\"day\":\"[parameters('ScheduledScanSettingsDay')]\",\"time\":\"[parameters('ScheduledScanSettingsTime')]\",\"scanType\":\"[parameters('ScheduledScanSettingsScanType')]\"},\"Exclusions\":{\"Extensions\":\"[parameters('ExclusionsExtensions')]\",\"Paths\":\"[parameters('ExclusionsPaths')]\",\"Processes\":\"[parameters('ExclusionsProcesses')]\"}}}}]},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"RealtimeProtectionEnabled\":{\"value\":\"true\"},\"ScheduledScanSettingsIsEnabled\":{\"value\":\"true\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2835b622-407b-4114-9198-6f7064cbe0dc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2835b622-407b-4114-9198-6f7064cbe0dc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1342 - Authenticator Management | Hardware Token-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1342\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/283a4e29-69d5-4c94-b99e-29acf003c899\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"283a4e29-69d5-4c94-b99e-29acf003c899\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1436 - Media Transport\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1436\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/28aab8b4-74fd-4b7c-9080-5a7be525d574\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"28aab8b4-74fd-4b7c-9080-5a7be525d574\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1224 - Information System Component Inventory | Updates During Installations / Removals\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1224\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/28cfa30b-7f72-47ce-ba3b-eed26c8d2c82\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"28cfa30b-7f72-47ce-ba3b-eed26c8d2c82\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1148 - Security Assessments | Independent Assessors\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1148\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/28e62650-c7c2-4786-bdfa-17edc1673902\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"28e62650-c7c2-4786-bdfa-17edc1673902\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1418 - Nonlocal Maintenance | Comparable Security / Sanitization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1418\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/28e633fd-284e-4ea7-88b4-02ca157ed713\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"28e633fd-284e-4ea7-88b4-02ca157ed713\"},{\"properties\":{\"displayName\":\"Advanced threat protection should be enabled on Azure App Service plans\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced threat protection leverages the scale of the cloud, and the visibility that Azure has as a cloud provider, to monitor for common web app attacks.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"AppServices\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2913021d-f2fd-4f3d-b958-22354e2bdbcb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2913021d-f2fd-4f3d-b958-22354e2bdbcb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1634 - Boundary Protection | Prevent Unauthorized Exfiltration\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1634\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/292a7c44-37fa-4c68-af7c-9d836955ded2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"292a7c44-37fa-4c68-af7c-9d836955ded2\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - User Account Control'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - User Account Control'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsUserAccountControl\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/29829ec2-489d-4925-81b7-bda06b1718e0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"29829ec2-489d-4925-81b7-bda06b1718e0\"},{\"properties\":{\"displayName\":\"Append a tag and its value to resources\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Appends the specified tag and value when any resource which is missing this tag is created or updated. Does not modify the tags of resources created before this policy was applied until those resources are changed. Does not apply to resource groups. New 'modify' effect policies are available that support remediation of tags on existing resources (see https://aka.ms/modifydoc).\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[parameters('tagValue')]\"}]}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2a0e14a6-b0a6-4fab-991a-187a4f81c498\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2a0e14a6-b0a6-4fab-991a-187a4f81c498\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1219 - Least Functionality | Authorized Software / Whitelisting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1219\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2a39ac75-622b-4c88-9a3f-45b7373f7ef7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2a39ac75-622b-4c88-9a3f-45b7373f7ef7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1274 - Alternate Processing Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1274\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2aee175f-cd16-4825-939a-a85349d96210\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2aee175f-cd16-4825-939a-a85349d96210\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1603 - Developer Security Testing And Evaluation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1603\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2b909c26-162f-47ce-8e15-0c1f55632eac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2b909c26-162f-47ce-8e15-0c1f55632eac\"},{\"properties\":{\"displayName\":\"Managed identity should be used in your Web App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use a managed identity for enhanced authentication security\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/managedServiceIdentityId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2b9ad585-36bc-4615-b300-fd4435808332\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2b9ad585-36bc-4615-b300-fd4435808332\"},{\"properties\":{\"displayName\":\"Cognitive Services accounts should enable data encryption\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Cognitive Services account not using data encryption. For each Cognitive Services account with storage, should enable data encryption with either customer managed or Microsoft managed key.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cognitive Services\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.CognitiveServices/accounts\"},{\"field\":\"Microsoft.CognitiveServices/accounts/encryption.keySource\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2bdd0062-9d75-436e-89df-487dd8e4b3c7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2bdd0062-9d75-436e-89df-487dd8e4b3c7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1434 - Media Transport\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1434\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2c18f06b-a68d-41c3-8863-b8cd3acb5f8f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2c18f06b-a68d-41c3-8863-b8cd3acb5f8f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1343 - Authenticator Management | Expiration Of Cached Authenticators\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1343\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2c251a55-31eb-4e53-99c6-e9c43c393ac2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2c251a55-31eb-4e53-99c6-e9c43c393ac2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1388 - Information Spillage Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1388\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2c7c575a-d4c5-4f6f-bd49-dee97a8cba55\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2c7c575a-d4c5-4f6f-bd49-dee97a8cba55\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1344 - Authenticator Feedback\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1344\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2c895fe7-2d8e-43a2-838c-3a533a5b355e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2c895fe7-2d8e-43a2-838c-3a533a5b355e\"},{\"properties\":{\"displayName\":\"SSH access from the Internet should be blocked\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits any network security rule that allows SSH access from Internet\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups/securityRules\"},{\"allOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Allow\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"},{\"anyOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange\",\"equals\":\"*\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange\",\"equals\":\"22\"},{\"value\":\"[if(and(not(empty(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'))), contains(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'),'-')), and(lessOrEquals(int(first(split(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'), '-'))),22),greaterOrEquals(int(last(split(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'), '-'))),22)), 'false')]\",\"equals\":\"true\"},{\"count\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\"where\":{\"value\":\"[if(and(not(empty(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')))), contains(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')),'-')), and(lessOrEquals(int(first(split(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')), '-'))),22),greaterOrEquals(int(last(split(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')), '-'))),22)) , 'false')]\",\"equals\":\"true\"}},\"greater\":0},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\"notEquals\":\"*\"}},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\"notEquals\":\"22\"}}]},{\"anyOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"*\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Internet\"},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefixes[*]\",\"notEquals\":\"*\"}},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefixes[*]\",\"notEquals\":\"Internet\"}}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2c89a2e5-7285-40fe-afe0-ae8654b92fab\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2c89a2e5-7285-40fe-afe0-ae8654b92fab\"},{\"properties\":{\"displayName\":\"Unattached disks should be encrypted\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any unattached disk without encryption enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/disks\"},{\"field\":\"Microsoft.Compute/disks/diskState\",\"equals\":\"Unattached\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/disks/encryptionSettingsCollection.enabled\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/disks/encryptionSettingsCollection.enabled\",\"equals\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2c89a2e5-7285-40fe-afe0-ae8654b92fb2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2c89a2e5-7285-40fe-afe0-ae8654b92fb2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1593 - External Information System Services | Processing, Storage, And Service Location\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1593\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2cd0a426-b5f5-4fe0-9539-a6043cdbc6fa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2cd0a426-b5f5-4fe0-9539-a6043cdbc6fa\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1546 - Vulnerability Scanning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1546\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2ce1ea7e-4038-4e53-82f4-63e8859333c1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2ce1ea7e-4038-4e53-82f4-63e8859333c1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1414 - Nonlocal Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1414\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2ce63a52-e47b-4ae2-adbb-6e40d967f9e6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2ce63a52-e47b-4ae2-adbb-6e40d967f9e6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1679 - Malicious Code Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1679\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2cf42a28-193e-41c5-98df-7688e7ef0a88\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2cf42a28-193e-41c5-98df-7688e7ef0a88\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1068 - Wireless Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1068\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2d045bca-a0fd-452e-9f41-4ec33769717c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2d045bca-a0fd-452e-9f41-4ec33769717c\"},{\"properties\":{\"displayName\":\"App Service should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any App Service not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/virtualNetworkConnections\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/virtualnetworkconnections/vnetResourceId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2d21331d-a4c2-4def-a9ad-ee4e1e023beb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2d21331d-a4c2-4def-a9ad-ee4e1e023beb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1704 - Security Alerts, Advisories, And Directives\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1704\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2d44b6fa-1134-4ea6-ad4e-9edb68f65429\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2d44b6fa-1134-4ea6-ad4e-9edb68f65429\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not store passwords using reversible encryption\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not store passwords using reversible encryption. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"StorePasswordsUsingReversibleEncryption\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2d60d3b7-aa10-454c-88a8-de39d99d17c6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2d60d3b7-aa10-454c-88a8-de39d99d17c6\"},{\"properties\":{\"displayName\":\"Show audit results from Linux VMs that allow remote connections from accounts without passwords\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Linux virtual machines that allow remote connections from accounts without passwords. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordPolicy_msid110\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2d67222d-05fd-4526-a171-2ee132ad9e83\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2d67222d-05fd-4526-a171-2ee132ad9e83\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1077 - Use Of External Information Systems\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1077\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2dad3668-797a-412e-a798-07d3849a7a79\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2dad3668-797a-412e-a798-07d3849a7a79\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1149 - Security Assessments | Specialized Assessments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1149\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2e1b855b-a013-481a-aeeb-2bcb129fd35d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2e1b855b-a013-481a-aeeb-2bcb129fd35d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1497 - System Security Plan | Plan / Coordinate With Other Organizational Entities\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1497\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2e3c5583-1729-4d36-8771-59c32f090a22\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2e3c5583-1729-4d36-8771-59c32f090a22\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1000 - Access Control Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1000\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2ef3cc79-733e-48ed-ab6f-7bf439e9b406\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2ef3cc79-733e-48ed-ab6f-7bf439e9b406\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1519 - Personnel Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1519\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2f13915a-324c-4ab8-b45c-2eefeeefb098\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2f13915a-324c-4ab8-b45c-2eefeeefb098\"},{\"properties\":{\"displayName\":\"[Preview]: Network traffic data collection agent should be installed on Windows virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Security Center uses the Microsoft Dependency agent to collect network traffic data from your Azure virtual machines to enable advanced network protection features such as traffic visualization on the network map, network hardening recommendations and specific network threats.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Monitoring\",\"preview\":\"true\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable Dependency Agent for Windows VMs monitoring\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"DependencyAgentWindows\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2f2ee1de-44aa-4762-b6bd-0893fc3f306d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2f2ee1de-44aa-4762-b6bd-0893fc3f306d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1144 - Security Assessments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1144\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2fa15ff1-a693-4ee4-b094-324818dc9a51\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2fa15ff1-a693-4ee4-b094-324818dc9a51\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1090 - Security Awareness Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1090\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2fb740e5-cbc7-4d10-8686-d1bf826652b1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2fb740e5-cbc7-4d10-8686-d1bf826652b1\"},{\"properties\":{\"displayName\":\"[Deprecated]: Web Application should only be accessible over HTTPS\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use of HTTPS ensures server/service authentication and protects data in transit from network layer eavesdropping attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"OnlyHttpsForWebApplication\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2fde8a98-6892-426a-83ba-050e640c0ce0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2fde8a98-6892-426a-83ba-050e640c0ce0\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Network Access'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Network Access'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsNetworkAccess\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/30040dab-4e75-4456-8273-14b8f75d91d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"30040dab-4e75-4456-8273-14b8f75d91d9\"},{\"properties\":{\"displayName\":\"Advanced threat protection should be enabled on Azure Storage accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced threat protection provides detections of unusual and potentially harmful attempts to access or exploit Storage accounts.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"StorageAccounts\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/308fbb08-4ab8-4e67-9b29-592e93fb94fa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"308fbb08-4ab8-4e67-9b29-592e93fb94fa\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that are not joined to the specified domain\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that are not joined to the specified domain. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"DomainName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Domain Name (FQDN)\",\"description\":\"The fully qualified domain name (FQDN) that the Windows VMs should be joined to\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDomainMembership\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[DomainMembership]WindowsDomainMembership;DomainName', '=', parameters('DomainName')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsDomainMembership\"},\"DomainName\":{\"value\":\"[parameters('DomainName')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"DomainName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[DomainMembership]WindowsDomainMembership;DomainName\",\"value\":\"[parameters('DomainName')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[DomainMembership]WindowsDomainMembership;DomainName\",\"value\":\"[parameters('DomainName')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/315c850a-272d-4502-8935-b79010405970\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"315c850a-272d-4502-8935-b79010405970\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1042 - Least Privilege | Auditing Use Of Privileged Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1042\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/319dc4f0-0fed-4ac9-8fc3-7aeddee82c07\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"319dc4f0-0fed-4ac9-8fc3-7aeddee82c07\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1698 - Information System Monitoring | Individuals Posing Greater Risk\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1698\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/31b752c1-05a9-432a-8fce-c39b56550119\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"31b752c1-05a9-432a-8fce-c39b56550119\"},{\"properties\":{\"displayName\":\"[Preview]: Audit Log Analytics Agent Deployment - VM Image (OS) unlisted\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Reports VMs as non-compliant if the VM Image (OS) is not in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Monitoring\",\"preview\":true},\"parameters\":{\"listOfImageIdToInclude_windows\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]},\"listOfImageIdToInclude_linux\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"not\":{\"anyOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_windows')]\"},{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_linux')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"12*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"14.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"16.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"18.04*LTS\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7.*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/32133ab0-ee4b-4b44-98d6-042180979d50\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"32133ab0-ee4b-4b44-98d6-042180979d50\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1587 - External Information System Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1587\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/32820956-9c6d-4376-934c-05cd8525be7c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"32820956-9c6d-4376-934c-05cd8525be7c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1333 - Authenticator Management | Pki-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1333\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3298d6bf-4bc6-4278-a95d-f7ef3ac6e594\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3298d6bf-4bc6-4278-a95d-f7ef3ac6e594\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs on which the specified services are not installed and 'Running'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines on which the specified services are not installed and 'Running'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"ServiceName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Service names (supports wildcards)\",\"description\":\"A semicolon-separated list of the names of the services that should be installed and 'Running'. e.g. 'WinRm;Wi*'\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsServiceStatus\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsServiceStatus]WindowsServiceStatus1;ServiceName', '=', parameters('ServiceName')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsServiceStatus\"},\"ServiceName\":{\"value\":\"[parameters('ServiceName')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"ServiceName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsServiceStatus]WindowsServiceStatus1;ServiceName\",\"value\":\"[parameters('ServiceName')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsServiceStatus]WindowsServiceStatus1;ServiceName\",\"value\":\"[parameters('ServiceName')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/32b1e4d4-6cd5-47b4-a935-169da8a5c262\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"32b1e4d4-6cd5-47b4-a935-169da8a5c262\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1445 - Physical And Environmental Protection Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1445\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/32d07d59-2716-4972-b37b-214a67ac4a37\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"32d07d59-2716-4972-b37b-214a67ac4a37\"},{\"properties\":{\"displayName\":\"Azure SQL Database should have the minimal TLS version of 1.2\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Setting minimal TLS version to 1.2 improves security by ensuring your Azure SQL Database can only be accessed from clients using TLS 1.2. Using versions of TLS less than 1.2 is not reccomended since they have well documented security vunerabilities.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"anyOf\":[{\"field\":\"Microsoft.Sql/servers/minimalTlsVersion\",\"exists\":false},{\"field\":\"Microsoft.Sql/servers/minimalTlsVersion\",\"notEquals\":\"1.2\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/32e6bbec-16b6-44c2-be37-c5b672d103cf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"32e6bbec-16b6-44c2-be37-c5b672d103cf\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy the Linux Guest Configuration extension to enable Guest Configuration assignments on Linux VMs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Linux Guest Configuration extension to Linux virtual machines hosted in Azure that are supported by Guest Configuration. The Linux Guest Configuration extension is a prerequisite for all Linux Guest Configuration assignments and must deployed to machines before using any Linux Guest Configuration policy definition. For more information on Guest Configuration, visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.0.0-preview\",\"preview\":true},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"AzurePolicyforLinux\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.GuestConfiguration\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"ConfigurationforLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/331e8ea8-378a-410f-a2e5-ae22f38bb0da\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"331e8ea8-378a-410f-a2e5-ae22f38bb0da\"},{\"properties\":{\"displayName\":\"MySQL server should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MySQL servers not configured to use a virtual network service endpoint. For more details, visit https://aka.ms/mysqlvnet.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforMySQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforMySQL/servers/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.DBforMySQL/servers/virtualNetworkRules/virtualNetworkSubnetId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3375856c-3824-4e0e-ae6a-79e011dd4c47\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3375856c-3824-4e0e-ae6a-79e011dd4c47\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1282 - Telecommunications Services | Single Points Of Failure\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1282\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/34042a97-ec6d-4263-93d2-8c1c46823b2a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34042a97-ec6d-4263-93d2-8c1c46823b2a\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Linux VMs that have accounts without passwords\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Linux virtual machines that have accounts without passwords. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordPolicy_msid232\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"PasswordPolicy_msid232\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3470477a-b35a-49db-aca5-1073d04524fe\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3470477a-b35a-49db-aca5-1073d04524fe\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1151 - System Interconnections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1151\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/347e3b69-7fb7-47df-a8ef-71a1a7b44bca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"347e3b69-7fb7-47df-a8ef-71a1a7b44bca\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1412 - Nonlocal Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1412\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3492d949-0dbb-4589-88b3-7b59601cc764\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3492d949-0dbb-4589-88b3-7b59601cc764\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1475 - Emergency Lighting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1475\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/34a63848-30cf-4081-937e-ce1a1c885501\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34a63848-30cf-4081-937e-ce1a1c885501\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1060 - Remote Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1060\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/34a987fd-2003-45de-a120-014956581f2b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34a987fd-2003-45de-a120-014956581f2b\"},{\"properties\":{\"displayName\":\"Storage accounts should restrict network access\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Network access to storage accounts should be restricted. Configure network rules so only applications from allowed networks can access the storage account. To allow connections from specific internet or on-premise clients, access can be granted to traffic from specific Azure virtual networks or to public internet IP address ranges\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Storage\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"field\":\"Microsoft.Storage/storageAccounts/networkAcls.defaultAction\",\"notEquals\":\"Deny\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/34c877ad-507e-4c82-993e-3452a6e0ad3c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34c877ad-507e-4c82-993e-3452a6e0ad3c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1341 - Authenticator Management | Multiple Information System Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1341\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/34cb7e92-fe4c-4826-b51e-8cd203fa5d35\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34cb7e92-fe4c-4826-b51e-8cd203fa5d35\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Logic Apps should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Logic Apps\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Logic/workflows\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/34f95f76-5386-4de7-b824-0d8478470c9d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34f95f76-5386-4de7-b824-0d8478470c9d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1210 - Configuration Settings\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1210\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3502c968-c490-4570-8167-1476f955e9b8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3502c968-c490-4570-8167-1476f955e9b8\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not have a maximum password age of 70 days\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not have a maximum password age of 70 days. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MaximumPasswordAge\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"MaximumPasswordAge\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/356a906e-05e5-4625-8729-90771e0ee934\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"356a906e-05e5-4625-8729-90771e0ee934\"},{\"properties\":{\"displayName\":\"CORS should not allow every resource to access your API App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Cross-Origin Resource Sharing (CORS) should not allow all domains to access your API app. Allow only required domains to interact with your API app.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.cors.allowedOrigins[*]\",\"notEquals\":\"*\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/358c20a6-3f9e-4f0e-97ff-c6ce485e2aac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"358c20a6-3f9e-4f0e-97ff-c6ce485e2aac\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1659 - Architecture And Provisioning For Name / Address Resolution Service\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1659\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/35a4102f-a778-4a2e-98c2-971056288df8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"35a4102f-a778-4a2e-98c2-971056288df8\"},{\"properties\":{\"displayName\":\"Gateway subnets should not be configured with a network security group\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy denies if a gateway subnet is configured with a network security group. Assigning a network security group to a gateway subnet will cause the gateway to stop functioning.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"field\":\"name\",\"equals\":\"GatewaySubnet\"},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"exists\":\"true\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/35f9c03a-cc27-418e-9c0c-539ff999d010\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"35f9c03a-cc27-418e-9c0c-539ff999d010\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1043 - Least Privilege | Prohibit Non-Privileged Users From Executing Privileged Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1043\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/361a77f6-0f9c-4748-8eec-bc13aaaa2455\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"361a77f6-0f9c-4748-8eec-bc13aaaa2455\"},{\"properties\":{\"displayName\":\"Deploy Advanced Threat Protection on Storage Accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables Advanced Threat Protection on Storage Accounts.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Storage\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/advancedThreatProtectionSettings\",\"name\":\"current\",\"existenceCondition\":{\"field\":\"Microsoft.Security/advancedThreatProtectionSettings/isEnabled\",\"equals\":\"true\"},\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"storageAccountName\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2019-01-01\",\"type\":\"Microsoft.Storage/storageAccounts/providers/advancedThreatProtectionSettings\",\"name\":\"[concat(parameters('storageAccountName'), '/Microsoft.Security/current')]\",\"properties\":{\"isEnabled\":true}}]},\"parameters\":{\"storageAccountName\":{\"value\":\"[field('name')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/361c2074-3595-4e5d-8cab-4f21dffc835c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"361c2074-3595-4e5d-8cab-4f21dffc835c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1313 - Identifier Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1313\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/36220f5b-79a1-4cdb-8c74-2d2449f9a510\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"36220f5b-79a1-4cdb-8c74-2d2449f9a510\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1630 - Boundary Protection | External Telecommunications Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1630\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3643717a-3897-4bfd-8530-c7c96b26b2a0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3643717a-3897-4bfd-8530-c7c96b26b2a0\"},{\"properties\":{\"displayName\":\"Automation account variables should be encrypted\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"It is important to enable encryption of Automation account variable assets when storing sensitive data\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Automation\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Automation/automationAccounts/variables\"},{\"field\":\"Microsoft.Automation/automationAccounts/variables/isEncrypted\",\"notEquals\":\"true\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3657f5a0-770e-44a3-b44e-9431ba1e9735\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3657f5a0-770e-44a3-b44e-9431ba1e9735\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1339 - Authenticator Management | Protection Of Authenticators\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1339\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/367ae386-db7f-4167-b672-984ff86277c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"367ae386-db7f-4167-b672-984ff86277c0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1685 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1685\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/36b0ef30-366f-4b1b-8652-a3511df11f53\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"36b0ef30-366f-4b1b-8652-a3511df11f53\"},{\"properties\":{\"displayName\":\"Deploy Threat Detection on SQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy ensures that Threat Detection is enabled on SQL Servers.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"Default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/securityAlertPolicies.state\",\"equals\":\"Enabled\"},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"serverName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"name\":\"[concat(parameters('serverName'), '/Default')]\",\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"apiVersion\":\"2017-03-01-preview\",\"properties\":{\"state\":\"Enabled\",\"emailAccountAdmins\":true}}]},\"parameters\":{\"serverName\":{\"value\":\"[field('name')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/36d49e87-48c4-4f2e-beed-ba4ed02b71f5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"36d49e87-48c4-4f2e-beed-ba4ed02b71f5\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Network Security'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Network Security'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"NetworkSecurityConfigureEncryptionTypesAllowedForKerberos\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network Security: Configure encryption types allowed for Kerberos\",\"description\":\"Specifies the encryption types that Kerberos is allowed to use.\"},\"defaultValue\":\"2147483644\"},\"NetworkSecurityLANManagerAuthenticationLevel\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network security: LAN Manager authentication level\",\"description\":\"Specify which challenge-response authentication protocol is used for network logons. This choice affects the level of authentication protocol used by clients, the level of session security negotiated, and the level of authentication accepted by servers.\"},\"defaultValue\":\"5\"},\"NetworkSecurityLDAPClientSigningRequirements\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network security: LDAP client signing requirements\",\"description\":\"Specify the level of data signing that is requested on behalf of clients that issue LDAP BIND requests.\"},\"defaultValue\":\"1\"},\"NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network security: Minimum session security for NTLM SSP based (including secure RPC) clients\",\"description\":\"Specifies which behaviors are allowed by clients for applications using the NTLM Security Support Provider (SSP). The SSP Interface (SSPI) is used by applications that need authentication services. See https://docs.microsoft.com/en-us/windows/security/threat-protection/security-policy-settings/network-security-minimum-session-security-for-ntlm-ssp-based-including-secure-rpc-servers for more information.\"},\"defaultValue\":\"537395200\"},\"NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network security: Minimum session security for NTLM SSP based (including secure RPC) servers\",\"description\":\"Specifies which behaviors are allowed by servers for applications using the NTLM Security Support Provider (SSP). The SSP Interface (SSPI) is used by applications that need authentication services.\"},\"defaultValue\":\"537395200\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsNetworkSecurity\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Network Security: Configure encryption types allowed for Kerberos;ExpectedValue', '=', parameters('NetworkSecurityConfigureEncryptionTypesAllowedForKerberos'), ',', 'Network security: LAN Manager authentication level;ExpectedValue', '=', parameters('NetworkSecurityLANManagerAuthenticationLevel'), ',', 'Network security: LDAP client signing requirements;ExpectedValue', '=', parameters('NetworkSecurityLDAPClientSigningRequirements'), ',', 'Network security: Minimum session security for NTLM SSP based (including secure RPC) clients;ExpectedValue', '=', parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients'), ',', 'Network security: Minimum session security for NTLM SSP based (including secure RPC) servers;ExpectedValue', '=', parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsNetworkSecurity\"},\"NetworkSecurityConfigureEncryptionTypesAllowedForKerberos\":{\"value\":\"[parameters('NetworkSecurityConfigureEncryptionTypesAllowedForKerberos')]\"},\"NetworkSecurityLANManagerAuthenticationLevel\":{\"value\":\"[parameters('NetworkSecurityLANManagerAuthenticationLevel')]\"},\"NetworkSecurityLDAPClientSigningRequirements\":{\"value\":\"[parameters('NetworkSecurityLDAPClientSigningRequirements')]\"},\"NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients\":{\"value\":\"[parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients')]\"},\"NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers\":{\"value\":\"[parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"NetworkSecurityConfigureEncryptionTypesAllowedForKerberos\":{\"type\":\"string\"},\"NetworkSecurityLANManagerAuthenticationLevel\":{\"type\":\"string\"},\"NetworkSecurityLDAPClientSigningRequirements\":{\"type\":\"string\"},\"NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients\":{\"type\":\"string\"},\"NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Network Security: Configure encryption types allowed for Kerberos;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityConfigureEncryptionTypesAllowedForKerberos')]\"},{\"name\":\"Network security: LAN Manager authentication level;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityLANManagerAuthenticationLevel')]\"},{\"name\":\"Network security: LDAP client signing requirements;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityLDAPClientSigningRequirements')]\"},{\"name\":\"Network security: Minimum session security for NTLM SSP based (including secure RPC) clients;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients')]\"},{\"name\":\"Network security: Minimum session security for NTLM SSP based (including secure RPC) servers;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Network Security: Configure encryption types allowed for Kerberos;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityConfigureEncryptionTypesAllowedForKerberos')]\"},{\"name\":\"Network security: LAN Manager authentication level;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityLANManagerAuthenticationLevel')]\"},{\"name\":\"Network security: LDAP client signing requirements;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityLDAPClientSigningRequirements')]\"},{\"name\":\"Network security: Minimum session security for NTLM SSP based (including secure RPC) clients;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCClients')]\"},{\"name\":\"Network security: Minimum session security for NTLM SSP based (including secure RPC) servers;ExpectedValue\",\"value\":\"[parameters('NetworkSecurityMinimumSessionSecurityForNTLMSSPBasedIncludingSecureRPCServers')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/36e17963-7202-494a-80c3-f508211c826b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"36e17963-7202-494a-80c3-f508211c826b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1557 - Vulnerability Scanning | Review Historic Audit Logs\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1557\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/36fbe499-f2f2-41b6-880e-52d7ea1d94a5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"36fbe499-f2f2-41b6-880e-52d7ea1d94a5\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Interactive Logon'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Interactive Logon'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsInteractiveLogon\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsInteractiveLogon\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3750712b-43d0-478e-9966-d2c26f6141b9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3750712b-43d0-478e-9966-d2c26f6141b9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1624 - Boundary Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1624\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/37d079e3-d6aa-4263-a069-dd7ac6dd9684\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"37d079e3-d6aa-4263-a069-dd7ac6dd9684\"},{\"properties\":{\"displayName\":\"Storage accounts should be migrated to new Azure Resource Manager resources\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use new Azure Resource Manager for your storage accounts to provide security enhancements such as: stronger access control (RBAC), better auditing, Azure Resource Manager based deployment and governance, access to managed identities, access to key vault for secrets, Azure AD-based authentication and support for tags and resource groups for easier security management\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Storage\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.ClassicStorage/storageAccounts\",\"Microsoft.Storage/StorageAccounts\"]},{\"value\":\"[field('type')]\",\"equals\":\"Microsoft.ClassicStorage/storageAccounts\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/37e0d2fe-28a5-43d6-a273-67d37d1f5606\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"37e0d2fe-28a5-43d6-a273-67d37d1f5606\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1335 - Authenticator Management | Pki-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1335\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/382016f3-d4ba-4e15-9716-55077ec4dc2a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"382016f3-d4ba-4e15-9716-55077ec4dc2a\"},{\"properties\":{\"displayName\":\"Diagnostic logs in IoT Hub should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Internet of Things\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Devices/IotHubs\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"not\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"}},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/383856f8-de7f-44a2-81fc-e5135b5c2aa4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"383856f8-de7f-44a2-81fc-e5135b5c2aa4\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy the Windows Guest Configuration extension to enable Guest Configuration assignments on Windows VMs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Windows Guest Configuration extension to Windows virtual machines hosted in Azure that are supported by Guest Configuration. The Windows Guest Configuration extension is a prerequisite for all Windows Guest Configuration assignments and must deployed to machines before using any Windows Guest Configuration policy definition. For more information on Guest Configuration, visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.0.0-preview\",\"preview\":true},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"AzurePolicyforWindows\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.GuestConfiguration\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"ConfigurationforWindows\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/385f5831-96d4-41db-9a3c-cd3af78aaae6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"385f5831-96d4-41db-9a3c-cd3af78aaae6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1081 - Information Sharing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1081\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3867f2a9-23bb-4729-851f-c3ad98580caf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3867f2a9-23bb-4729-851f-c3ad98580caf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1522 - Personnel Transfer\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1522\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/38b470cc-f939-4a15-80e0-9f0c74f2e2c9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"38b470cc-f939-4a15-80e0-9f0c74f2e2c9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1416 - Nonlocal Maintenance | Document Nonlocal Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1416\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/38dfd8a3-5290-4099-88b7-4081f4c4d8ae\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"38dfd8a3-5290-4099-88b7-4081f4c4d8ae\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1397 - Controlled Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1397\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/391af4ab-1117-46b9-b2c7-78bbd5cd995b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"391af4ab-1117-46b9-b2c7-78bbd5cd995b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1556 - Vulnerability Scanning | Automated Trend Analyses\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1556\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/391ff8b3-afed-405e-9f7d-ef2f8168d5da\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"391ff8b3-afed-405e-9f7d-ef2f8168d5da\"},{\"properties\":{\"displayName\":\"[Deprecated]: Advanced data security settings for SQL Managed Instance should contain an email address for security alerts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Ensure that an email address is provided for the 'Send alerts to' field in the advanced data security settings. This email address receives alert notifications when anomalous activities are detected on SQL Managed Instance.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/managedInstances/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Sql/managedInstances/securityAlertPolicies/emailAddresses[*]\",\"notEquals\":\"\"},{\"field\":\"Microsoft.Sql/managedInstances/securityAlertPolicies/emailAddresses[*]\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3965c43d-b5f4-482e-b74a-d89ee0e0b3a8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3965c43d-b5f4-482e-b74a-d89ee0e0b3a8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1232 - Configuration Management Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1232\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/396ba986-eac1-4d6d-85c4-d3fda6b78272\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"396ba986-eac1-4d6d-85c4-d3fda6b78272\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1246 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1246\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/398eb61e-8111-40d5-a0c9-003df28f1753\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"398eb61e-8111-40d5-a0c9-003df28f1753\"},{\"properties\":{\"displayName\":\"FTPS only should be required in your Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Enable FTPS enforcement for enhanced security\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/ftpsState\",\"in\":[\"FtpsOnly\",\"Disabled\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/399b2637-a50f-4f95-96f8-3a145476eb15\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"399b2637-a50f-4f95-96f8-3a145476eb15\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1680 - Malicious Code Protection | Central Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1680\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/399cd6ee-0e18-41db-9dea-cde3bd712f38\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"399cd6ee-0e18-41db-9dea-cde3bd712f38\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1228 - Information System Component Inventory | Accountability Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1228\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/39c54140-5902-4079-8bb5-ad31936fe764\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"39c54140-5902-4079-8bb5-ad31936fe764\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1039 - Least Privilege | Review Of User Privileges\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1039\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3a7b9de4-a8a2-4672-914d-c5f6752aa7f9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3a7b9de4-a8a2-4672-914d-c5f6752aa7f9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1648 - Collaborative Computing Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1648\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3a9eb14b-495a-4ebb-933c-ce4ef5264e32\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3a9eb14b-495a-4ebb-933c-ce4ef5264e32\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1315 - Identifier Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1315\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3aa87116-f1a1-4edb-bfbf-14e036f8d454\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3aa87116-f1a1-4edb-bfbf-14e036f8d454\"},{\"properties\":{\"displayName\":\"[Preview]: Pod Security Policies should be defined on Kubernetes Services\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Define Pod Security Policies to reduce the attack vector by removing unnecessary application privileges. It is recommended to configure Pod Security Policies to only allow pods to access the resources which they have permissions to access.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Security Center\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"anyOf\":[{\"field\":\"Microsoft.ContainerService/managedClusters/enablePodSecurityPolicy\",\"exists\":\"false\"},{\"field\":\"Microsoft.ContainerService/managedClusters/enablePodSecurityPolicy\",\"equals\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3abeb944-26af-43ee-b83d-32aaf060fb94\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3abeb944-26af-43ee-b83d-32aaf060fb94\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1548 - Vulnerability Scanning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1548\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3afe6c78-6124-4d95-b85c-eb8c0c9539cb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3afe6c78-6124-4d95-b85c-eb8c0c9539cb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1266 - Contingency Plan Testing | Alternate Processing Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1266\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3b4a3eb2-c25d-40bf-ad41-5094b6f59cee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3b4a3eb2-c25d-40bf-ad41-5094b6f59cee\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1003 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1003\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3b68b179-3704-4ff7-b51d-7d65374d165d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3b68b179-3704-4ff7-b51d-7d65374d165d\"},{\"properties\":{\"displayName\":\"An activity log alert should exist for specific Security operations\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits specific Security operations with no activity log alerts configured.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"operationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Operation Name\",\"description\":\"Security Operation name for which activity log alert should exist\"},\"allowedValues\":[\"Microsoft.Security/policies/write\",\"Microsoft.Security/securitySolutions/write\",\"Microsoft.Security/securitySolutions/delete\"]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/ActivityLogAlerts\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/enabled\",\"equals\":\"true\"},{\"count\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"category\"},{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].equals\",\"equals\":\"Security\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"operationName\"},{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].equals\",\"equals\":\"[parameters('operationName')]\"}]}]}},\"equals\":2},{\"not\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"category\"}},{\"not\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"operationName\"}}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3b980d31-7904-4bb7-8575-5665739a8052\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3b980d31-7904-4bb7-8575-5665739a8052\"},{\"properties\":{\"displayName\":\"Deploy Dependency agent for Windows virtual machine scale sets\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Dependency agent for Windows virtual machine scale sets if the VM Image (OS) is in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated. Note: if your scale set upgradePolicy is set to Manual, you need to apply the extension to the all virtual machines in the set by calling upgrade on them. In CLI this would be az vmss update-instances.\",\"metadata\":{\"version\":\"1.1.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"DependencyAgentWindows\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"DependencyAgent\",\"vmExtensionPublisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"vmExtensionType\":\"DependencyAgentWindows\",\"vmExtensionTypeHandlerVersion\":\"9.7\"},\"resources\":[{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"apiVersion\":\"2019-12-01\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for: ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3be22e3b-d919-47aa-805e-8985dbeb0ad9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3be22e3b-d919-47aa-805e-8985dbeb0ad9\"},{\"properties\":{\"displayName\":\"PostgreSQL server should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits PostgreSQL servers not configured to use a virtual network service endpoint. For more details, visit https://aka.ms/postgresqlvnet.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/virtualNetworkRules/virtualNetworkSubnetId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3c14b034-bcb6-4905-94e7-5b8e98a47b65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3c14b034-bcb6-4905-94e7-5b8e98a47b65\"},{\"properties\":{\"displayName\":\"Deploy Log Analytics agent for Windows virtual machine scale sets\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Log Analytics agent for Windows virtual machine scale sets if the VM Image (OS) is in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated. Note: if your scale set upgradePolicy is set to Manual, you need to apply the extension to the all VMs in the set by calling upgrade on them. In CLI this would be az vmss update-instances.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"MicrosoftMonitoringAgent\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"MMAExtension\",\"vmExtensionPublisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"vmExtensionType\":\"MicrosoftMonitoringAgent\",\"vmExtensionTypeHandlerVersion\":\"1.0\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2018-06-01\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\",\"stopOnMultipleConnections\":\"true\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for: ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3c1b3629-c8f8-4bf6-862c-037cb9094038\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3c1b3629-c8f8-4bf6-862c-037cb9094038\"},{\"properties\":{\"displayName\":\"Vulnerabilities in security configuration on your virtual machine scale sets should be remediated\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit the OS vulnerabilities on your virtual machine scale sets to protect them from attacks.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"OsVulnerabilities\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3c735d8a-a4ba-4a3a-b7cf-db7754cf57f4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3c735d8a-a4ba-4a3a-b7cf-db7754cf57f4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1621 - Resource Availability\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1621\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3cb9f731-744a-4691-a481-ca77b0411538\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3cb9f731-744a-4691-a481-ca77b0411538\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1521 - Personnel Termination | Automated Notification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1521\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3cbddf9c-a3aa-4330-a0f5-4c0c1f1862e5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3cbddf9c-a3aa-4330-a0f5-4c0c1f1862e5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1127 - Time Stamps\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1127\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3ce328db-aef3-48ed-9f81-2ab7cf839c66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3ce328db-aef3-48ed-9f81-2ab7cf839c66\"},{\"properties\":{\"displayName\":\"[Preview]: Add system-assigned managed identity to enable Guest Configuration assignments on virtual machines with no identities\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy adds a system-assigned managed identity to virtual machines hosted in Azure that are supported by Guest Configuration but do not have any managed identities. A system-assigned managed identity is a prerequisite for all Guest Configuration assignments and must be added to machines before using any Guest Configuration policy definitions. For more information on Guest Configuration, visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.0.0-preview\",\"preview\":true},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"value\":\"[requestContext().apiVersion]\",\"greaterOrEquals\":\"2018-10-01\"},{\"anyOf\":[{\"field\":\"identity.type\",\"exists\":\"false\"},{\"field\":\"identity.type\",\"equals\":\"None\"}]}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"addOrReplace\",\"field\":\"identity.type\",\"value\":\"SystemAssigned\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3cf2ab00-13f1-4d0c-8971-2ac904541a7e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3cf2ab00-13f1-4d0c-8971-2ac904541a7e\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Search Services to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Search Services to stream to a regional Event Hub when any Search Services which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Search Services in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Search/searchServices\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Search/searchServices/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"OperationLogs\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3d5da587-71bd-41f5-ac95-dd3330c2d58d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3d5da587-71bd-41f5-ac95-dd3330c2d58d\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Devices'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Devices'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsDevices\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3d7b154e-2700-4c8c-9e46-cb65ac1578c2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3d7b154e-2700-4c8c-9e46-cb65ac1578c2\"},{\"properties\":{\"displayName\":\"[Deprecated]: Deploy default Log Analytics Agent for Ubuntu VMs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Log Analytics Agent on Ubuntu VMs, and connects to the selected Log Analytics workspace\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Compute\",\"deprecated\":true},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"18.04-LTS\",\"16.04-LTS\",\"16.04.0-LTS\",\"14.04.2-LTS\",\"12.04.5-LTS\"]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"OmsAgentForLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"resources\":[{\"name\":\"[concat(parameters('vmName'),'/omsPolicy')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2017-12-01\",\"properties\":{\"publisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"type\":\"OmsAgentForLinux\",\"typeHandlerVersion\":\"1.4\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled monitoring for Linux VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3d8640fc-63f6-4734-8dcb-cfd3d8c78f38\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3d8640fc-63f6-4734-8dcb-cfd3d8c78f38\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1385 - Information Spillage Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1385\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3e495e65-8663-49ca-9b38-9f45e800bc58\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3e495e65-8663-49ca-9b38-9f45e800bc58\"},{\"properties\":{\"displayName\":\"Azure Monitor solution 'Security and Audit' must be deployed\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy ensures that Security and Audit is deployed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.OperationsManagement/solutions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.OperationsManagement/solutions/provisioningState\",\"equals\":\"Succeeded\"},{\"field\":\"name\",\"like\":\"Security(*)\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3e596b57-105f-48a6-be97-03e9243bad6e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3e596b57-105f-48a6-be97-03e9243bad6e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1160 - Security Authorization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1160\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3e797ca6-2aa8-4333-b335-7036f1110c05\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3e797ca6-2aa8-4333-b335-7036f1110c05\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1545 - Risk Assessment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1545\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3f4b171a-a56b-4328-8112-32cf7f947ee1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3f4b171a-a56b-4328-8112-32cf7f947ee1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1179 - Baseline Configuration | Reviews And Updates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1179\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3f9ce557-c8ab-4e6c-bb2c-9b8ed002c46c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3f9ce557-c8ab-4e6c-bb2c-9b8ed002c46c\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit API Applications that are not using latest supported PHP Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported PHP version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestPHP\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3fe37002-5d00-4b37-a301-da09e3a0ca66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3fe37002-5d00-4b37-a301-da09e3a0ca66\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1561 - Allocation Of Resources\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1561\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/40364c3f-c331-4e29-b1e3-2fbe998ba2f5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"40364c3f-c331-4e29-b1e3-2fbe998ba2f5\"},{\"properties\":{\"displayName\":\"Secure transfer to storage accounts should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit requirement of Secure transfer in your storage account. Secure transfer is an option that forces your storage account to accept requests only from secure connections (HTTPS). Use of HTTPS ensures authentication between the server and the service and protects data in transit from network layer attacks such as man-in-the-middle, eavesdropping, and session-hijacking\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Storage\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"anyOf\":[{\"allOf\":[{\"value\":\"[requestContext().apiVersion]\",\"less\":\"2019-04-01\"},{\"field\":\"Microsoft.Storage/storageAccounts/supportsHttpsTrafficOnly\",\"exists\":\"false\"}]},{\"field\":\"Microsoft.Storage/storageAccounts/supportsHttpsTrafficOnly\",\"equals\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/404c3081-a854-4457-ae30-26a93ef643f9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"404c3081-a854-4457-ae30-26a93ef643f9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1100 - Audit And Accountability Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1100\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4057863c-ca7d-47eb-b1e0-503580cba8a4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4057863c-ca7d-47eb-b1e0-503580cba8a4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1637 - Boundary Protection | Fail Secure\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1637\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4075bedc-c62a-4635-bede-a01be89807f3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4075bedc-c62a-4635-bede-a01be89807f3\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Administrative Templates - System'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - System'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AlwaysUseClassicLogon\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Always use classic logon\",\"description\":\"Specifies whether to force the user to log on to the computer using the classic logon screen. This setting only works when the computer is not on a domain.\"},\"defaultValue\":\"0\"},\"BootStartDriverInitializationPolicy\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Boot-Start Driver Initialization Policy\",\"description\":\"Specifies which boot-start drivers are initialized based on a classification determined by an Early Launch Antimalware boot-start driver.\"},\"defaultValue\":\"3\"},\"EnableWindowsNTPClient\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable Windows NTP Client\",\"description\":\"Specifies whether the Windows NTP Client is enabled. Enabling the Windows NTP Client allows your computer to synchronize its computer clock with other NTP servers.\"},\"defaultValue\":\"1\"},\"TurnOnConveniencePINSignin\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Turn on convenience PIN sign-in\",\"description\":\"Specifies whether a domain user can sign in using a convenience PIN.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdministrativeTemplatesSystem\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Always use classic logon;ExpectedValue', '=', parameters('AlwaysUseClassicLogon'), ',', 'Boot-Start Driver Initialization Policy;ExpectedValue', '=', parameters('BootStartDriverInitializationPolicy'), ',', 'Enable Windows NTP Client;ExpectedValue', '=', parameters('EnableWindowsNTPClient'), ',', 'Turn on convenience PIN sign-in;ExpectedValue', '=', parameters('TurnOnConveniencePINSignin')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_AdministrativeTemplatesSystem\"},\"AlwaysUseClassicLogon\":{\"value\":\"[parameters('AlwaysUseClassicLogon')]\"},\"BootStartDriverInitializationPolicy\":{\"value\":\"[parameters('BootStartDriverInitializationPolicy')]\"},\"EnableWindowsNTPClient\":{\"value\":\"[parameters('EnableWindowsNTPClient')]\"},\"TurnOnConveniencePINSignin\":{\"value\":\"[parameters('TurnOnConveniencePINSignin')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AlwaysUseClassicLogon\":{\"type\":\"string\"},\"BootStartDriverInitializationPolicy\":{\"type\":\"string\"},\"EnableWindowsNTPClient\":{\"type\":\"string\"},\"TurnOnConveniencePINSignin\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Always use classic logon;ExpectedValue\",\"value\":\"[parameters('AlwaysUseClassicLogon')]\"},{\"name\":\"Boot-Start Driver Initialization Policy;ExpectedValue\",\"value\":\"[parameters('BootStartDriverInitializationPolicy')]\"},{\"name\":\"Enable Windows NTP Client;ExpectedValue\",\"value\":\"[parameters('EnableWindowsNTPClient')]\"},{\"name\":\"Turn on convenience PIN sign-in;ExpectedValue\",\"value\":\"[parameters('TurnOnConveniencePINSignin')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Always use classic logon;ExpectedValue\",\"value\":\"[parameters('AlwaysUseClassicLogon')]\"},{\"name\":\"Boot-Start Driver Initialization Policy;ExpectedValue\",\"value\":\"[parameters('BootStartDriverInitializationPolicy')]\"},{\"name\":\"Enable Windows NTP Client;ExpectedValue\",\"value\":\"[parameters('EnableWindowsNTPClient')]\"},{\"name\":\"Turn on convenience PIN sign-in;ExpectedValue\",\"value\":\"[parameters('TurnOnConveniencePINSignin')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/40917425-69db-4018-8dae-2a0556cef899\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"40917425-69db-4018-8dae-2a0556cef899\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1202 - Access Restrictions For Change\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1202\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/40a2a83b-74f2-4c02-ae65-f460a5d2792a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"40a2a83b-74f2-4c02-ae65-f460a5d2792a\"},{\"properties\":{\"displayName\":\"Inherit a tag from the subscription if missing\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Adds the specified tag with its value from the containing subscription when any resource missing this tag is created or updated. Existing resources can be remediated by triggering a remediation task. If the tag exists with a different value it will not be changed.\",\"metadata\":{\"category\":\"Tags\",\"version\":\"1.0.0\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[subscription().tags[parameters('tagName')]]\",\"notEquals\":\"\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"add\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[subscription().tags[parameters('tagName')]]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/40df99da-1232-49b1-a39a-6da8d878f469\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"40df99da-1232-49b1-a39a-6da8d878f469\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1438 - Media Sanitization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1438\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/40fcc635-52a2-4dbc-9523-80a1f4aa1de6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"40fcc635-52a2-4dbc-9523-80a1f4aa1de6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1365 - Incident Handling | Continuity Of Operations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1365\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4116891d-72f7-46ee-911c-8056cc8dcbd5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4116891d-72f7-46ee-911c-8056cc8dcbd5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1022 - Account Management | Shared / Group Account Credential Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1022\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/411f7e2d-9a0b-4627-a0b9-1700432db47d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"411f7e2d-9a0b-4627-a0b9-1700432db47d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1464 - Monitoring Physical Access | Intrusion Alarms / Surveillance Equipment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1464\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/41256567-1795-4684-b00b-a1308ce43cac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"41256567-1795-4684-b00b-a1308ce43cac\"},{\"properties\":{\"displayName\":\"Azure Monitor should collect activity logs from all regions\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits the Azure Monitor log profile which does not export activities from all Azure supported regions including global.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/logProfiles\",\"existenceCondition\":{\"allOf\":[{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"australiacentral\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"australiacentral2\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"australiaeast\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"australiasoutheast\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"brazilsouth\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"canadacentral\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"canadaeast\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"centralindia\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"centralus\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"eastasia\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"eastus\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"eastus2\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"francecentral\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"francesouth\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"japaneast\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"japanwest\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"koreacentral\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"koreasouth\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"northcentralus\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"northeurope\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"southafricanorth\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"southafricawest\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"southcentralus\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"southindia\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"southeastasia\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"uaecentral\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"uaenorth\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"uksouth\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"ukwest\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"westcentralus\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"westeurope\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"westindia\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"westus\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"westus2\"}},{\"not\":{\"field\":\"Microsoft.Insights/logProfiles/locations[*]\",\"notEquals\":\"global\"}}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/41388f1c-2db0-4c25-95b2-35d7f5ccbfa9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"41388f1c-2db0-4c25-95b2-35d7f5ccbfa9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1263 - Contingency Plan Testing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1263\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/41472613-3b05-49f6-8fe8-525af113ce17\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"41472613-3b05-49f6-8fe8-525af113ce17\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1096 - Role-Based Security Training | Practical Exercises\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1096\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/420c1477-aa43-49d0-bd7e-c4abdd9addff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"420c1477-aa43-49d0-bd7e-c4abdd9addff\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1260 - Contingency Training | Simulated Events\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1260\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/42254fc4-2738-4128-9613-72aaa4f0d9c3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"42254fc4-2738-4128-9613-72aaa4f0d9c3\"},{\"properties\":{\"displayName\":\"Web Application Firewall (WAF) should use the specified mode for Azure Front Door Service\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Mandates the use of 'Detection' or 'Prevention' mode to be active on all Web Application Firewall policies for Azure Front Door Service.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"modeRequirement\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Mode Requirement\",\"description\":\"Mode required for all WAF policies\"},\"allowedValues\":[\"Prevention\",\"Detection\"],\"defaultValue\":\"Detection\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\"},{\"field\":\"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/policySettings.mode\",\"notEquals\":\"[parameters('modeRequirement')]\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/425bea59-a659-4cbb-8d31-34499bd030b8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"425bea59-a659-4cbb-8d31-34499bd030b8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1694 - Information System Monitoring | Analyze Communications Traffic Anomalies\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1694\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/426c4ac9-ff17-49d0-acd7-a13c157081c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"426c4ac9-ff17-49d0-acd7-a13c157081c0\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Batch accounts should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Batch\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/428256e6-1fac-4f48-a757-df34c2b3336d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"428256e6-1fac-4f48-a757-df34c2b3336d\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Detailed Tracking'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Detailed Tracking'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditProcessTermination\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Process Termination\",\"description\":\"Specifies whether audit events are generated when a process has exited. Recommended for monitoring termination of critical processes.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"No Auditing\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesDetailedTracking\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit Process Termination;ExpectedValue', '=', parameters('AuditProcessTermination')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesDetailedTracking\"},\"AuditProcessTermination\":{\"value\":\"[parameters('AuditProcessTermination')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditProcessTermination\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Process Termination;ExpectedValue\",\"value\":\"[parameters('AuditProcessTermination')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Process Termination;ExpectedValue\",\"value\":\"[parameters('AuditProcessTermination')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/42a07bbf-ffcf-459a-b4b1-30ecd118a505\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"42a07bbf-ffcf-459a-b4b1-30ecd118a505\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1174 - Configuration Management Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1174\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/42a9a714-8fbb-43ac-b115-ea12d2bd652f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"42a9a714-8fbb-43ac-b115-ea12d2bd652f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1137 - Audit Generation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1137\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4344df62-88ab-4637-b97b-bcaf2ec97e7c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4344df62-88ab-4637-b97b-bcaf2ec97e7c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1367 - Incident Handling | Insider Threats - Specific Capabilities\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1367\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/435b2547-6374-4f87-b42d-6e8dbe6ae62a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"435b2547-6374-4f87-b42d-6e8dbe6ae62a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1552 - Vulnerability Scanning | Update By Frequency / Prior To New Scan / When Identified\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1552\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/43684572-e4f1-4642-af35-6b933bc506da\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"43684572-e4f1-4642-af35-6b933bc506da\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - System settings'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - System settings'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"System settings: Use Certificate Rules on Windows Executables for Software Restriction Policies\",\"description\":\"Specifies whether digital certificates are processed when software restriction policies are enabled and a user or process attempts to run software with an .exe file name extension. It enables or disables certificate rules (a type of software restriction policies rule). For certificate rules to take effect in software restriction policies, you must enable this policy setting.\"},\"defaultValue\":\"1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsSystemsettings\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('System settings: Use Certificate Rules on Windows Executables for Software Restriction Policies;ExpectedValue', '=', parameters('SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsSystemsettings\"},\"SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies\":{\"value\":\"[parameters('SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"System settings: Use Certificate Rules on Windows Executables for Software Restriction Policies;ExpectedValue\",\"value\":\"[parameters('SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"System settings: Use Certificate Rules on Windows Executables for Software Restriction Policies;ExpectedValue\",\"value\":\"[parameters('SystemSettingsUseCertificateRulesOnWindowsExecutablesForSoftwareRestrictionPolicies')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/437a1f8f-8552-47a8-8b12-a2fee3269dd5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"437a1f8f-8552-47a8-8b12-a2fee3269dd5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1544 - Risk Assessment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1544\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/43ced7c9-cd53-456b-b0da-2522649a4271\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"43ced7c9-cd53-456b-b0da-2522649a4271\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1398 - Controlled Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1398\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/443e8f3d-b51a-45d8-95a7-18b0e42f4dc4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"443e8f3d-b51a-45d8-95a7-18b0e42f4dc4\"},{\"properties\":{\"displayName\":\"[Deprecated]: Monitor permissive network access in Azure Security Center\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Network Security Groups with too permissive rules will be monitored by Azure Security Center as recommendations\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"permissiveNetworkAccess\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/44452482-524f-4bf4-b852-0bff7cc4a3ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"44452482-524f-4bf4-b852-0bff7cc4a3ed\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1066 - Remote Access | Disconnect / Disable Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1066\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4455c2e8-c65d-4acf-895e-304916f90b36\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4455c2e8-c65d-4acf-895e-304916f90b36\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1720 - Spam Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1720\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/44b9a7cd-f36a-491a-a48b-6d04ae7c4221\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"44b9a7cd-f36a-491a-a48b-6d04ae7c4221\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1334 - Authenticator Management | Pki-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1334\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/44bfdadc-8c2e-4c30-9c99-f005986fabcd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"44bfdadc-8c2e-4c30-9c99-f005986fabcd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1604 - Developer Security Testing And Evaluation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1604\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/44dbba23-0b61-478e-89c7-b3084667782f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"44dbba23-0b61-478e-89c7-b3084667782f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1712 - Software, Firmware, And Information Integrity\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1712\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/44e543aa-41db-42aa-98eb-8a5eb1db53f0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"44e543aa-41db-42aa-98eb-8a5eb1db53f0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1310 - Device Identification And Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1310\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/450d7ede-823d-4931-a99d-57f6a38807dc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"450d7ede-823d-4931-a99d-57f6a38807dc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1559 - System And Services Acquisition Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1559\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/45692294-f074-42bd-ac54-16f1a3c07554\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"45692294-f074-42bd-ac54-16f1a3c07554\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1578 - Acquisition Process | Functions / Ports / Protocols / Services In Use\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1578\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/45b7b644-5f91-498e-9d89-7402532d3645\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"45b7b644-5f91-498e-9d89-7402532d3645\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1565 - System Development Life Cycle\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1565\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/45ce2396-5c76-4654-9737-f8792ab3d26b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"45ce2396-5c76-4654-9737-f8792ab3d26b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1337 - Authenticator Management | In-Person Or Trusted Third-Party Registration\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1337\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/463e5220-3f79-4e24-a63f-343e4096cd22\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"463e5220-3f79-4e24-a63f-343e4096cd22\"},{\"properties\":{\"displayName\":\"[Deprecated]: Require SQL Server version 12.0\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy ensures all SQL servers use version 12.0. This policy is deprecated because it is no longer possible to create an Azure SQL server with any version other than 12.0.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"not\":{\"field\":\"Microsoft.Sql/servers/version\",\"equals\":\"12.0\"}}]},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/464dbb85-3d5f-4a1d-bb09-95a9b5dd19cf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"464dbb85-3d5f-4a1d-bb09-95a9b5dd19cf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1346 - Identification And Authentication (Non-Organizational Users)\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1346\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/464dc8ce-2200-4720-87a5-dc5952924cc6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"464dc8ce-2200-4720-87a5-dc5952924cc6\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Applications that are not using latest supported Python Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported Python version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestPython\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/46544d7b-1f0d-46f5-81da-5c1351de1b06\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"46544d7b-1f0d-46f5-81da-5c1351de1b06\"},{\"properties\":{\"displayName\":\"Require automatic OS image patching on Virtual Machine Scale Sets\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy enforces enabling automatic OS image patching on Virtual Machine Scale Sets to always keep Virtual Machines secure by safely applying latest security patches every month.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/upgradePolicy.automaticOSUpgradePolicy.enableAutomaticOSUpgrade\",\"notEquals\":\"True\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/upgradePolicy.automaticOSUpgrade\",\"notEquals\":\"True\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/465f0161-0087-490a-9ad9-ad6217f4f43a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"465f0161-0087-490a-9ad9-ad6217f4f43a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1368 - Incident Handling | Correlation With External Organizations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1368\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/465f32da-0ace-4603-8d1b-7be5a3a702de\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"465f32da-0ace-4603-8d1b-7be5a3a702de\"},{\"properties\":{\"displayName\":\"Cognitive Services accounts should use customer owned storage\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Cognitive Services account not using customer owned storage.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cognitive Services\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.CognitiveServices/accounts\"},{\"count\":{\"field\":\"Microsoft.CognitiveServices/accounts/userOwnedStorage[*]\"},\"less\":1}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/46aa9b05-0e60-4eae-a88b-1e9d374fa515\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"46aa9b05-0e60-4eae-a88b-1e9d374fa515\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1062 - Remote Access | Protection Of Confidentiality / Integrity Using Encryption\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1062\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4708723f-e099-4af1-bbf9-b6df7642e444\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4708723f-e099-4af1-bbf9-b6df7642e444\"},{\"properties\":{\"displayName\":\"Azure Cosmos DB key based metadata write access should be disabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables you to ensure all Azure Cosmos DB accounts disable key based metadata write access.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cosmos DB\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DocumentDB/databaseAccounts\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/disableKeyBasedMetadataWriteAccess\",\"notEquals\":true}]},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"Microsoft.DocumentDB/databaseAccounts/disableKeyBasedMetadataWriteAccess\",\"value\":true}]}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4750c32b-89c0-46af-bfcb-2e4541a818d5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4750c32b-89c0-46af-bfcb-2e4541a818d5\"},{\"properties\":{\"displayName\":\"Automatic provisioning of the Log Analytics monitoring agent should be enabled on your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable automatic provisioning of the Log Analytics monitoring agent in order to collect security data\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/autoProvisioningSettings\",\"existenceCondition\":{\"field\":\"Microsoft.Security/autoProvisioningSettings/autoProvision\",\"equals\":\"On\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/475aae12-b88a-4572-8b36-9b712b2b3a17\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"475aae12-b88a-4572-8b36-9b712b2b3a17\"},{\"properties\":{\"displayName\":\"Adaptive application controls for defining safe applications should be enabled on your machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable application controls to define the list of known-safe applications running on your machines, and alert you when other applications run. This helps harden your machines against malware. To simplify the process of configuring and maintaining your rules, Security Center uses machine learning to analyze the applications running on each machine and suggest the list of known-safe applications.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"applicationWhitelisting\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/47a6b606-51aa-4496-8bb7-64b11cf66adc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"47a6b606-51aa-4496-8bb7-64b11cf66adc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1359 - Incident Response Testing | Coordination With Related Plans\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1359\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/47bc7ea0-7d13-4f7c-a154-b903f7194253\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"47bc7ea0-7d13-4f7c-a154-b903f7194253\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1165 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1165\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/47e10916-6c9e-446b-b0bd-ff5fd439d79d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"47e10916-6c9e-446b-b0bd-ff5fd439d79d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1048 - System Use Notification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1048\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/483e7ca9-82b3-45a2-be97-b93163a0deb7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"483e7ca9-82b3-45a2-be97-b93163a0deb7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1033 - Separation Of Duties\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1033\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/48540f01-fc11-411a-b160-42807c68896e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"48540f01-fc11-411a-b160-42807c68896e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1477 - Fire Protection | Detection Devices / Systems\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1477\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4862a63c-6c74-4a9d-a221-89af3c374503\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4862a63c-6c74-4a9d-a221-89af3c374503\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1484 - Water Damage Protection | Automation Support\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1484\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/486b006a-3653-45e8-b41c-a052d3e05456\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"486b006a-3653-45e8-b41c-a052d3e05456\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit IP restrictions configuration for an API App\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"IP Restrictions allow you to define a list of IP addresses that are allowed to access your app. Use of IP Restrictions protects an API app from common attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"ConfigureIPRestrictions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/48893b84-a2c8-4d9a-badf-835d5d1b7d53\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"48893b84-a2c8-4d9a-badf-835d5d1b7d53\"},{\"properties\":{\"displayName\":\"Geo-redundant backup should be enabled for Azure Database for PostgreSQL\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Azure Database for PostgreSQL with geo-redundant backup not enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},{\"field\":\"Microsoft.DBforPostgreSQL/servers/storageProfile.geoRedundantBackup\",\"notEquals\":\"Enabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/48af4db5-9b8b-401c-8e74-076be876a430\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"48af4db5-9b8b-401c-8e74-076be876a430\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1669 - Flaw Remediation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1669\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/48f2f62b-5743-4415-a143-288adc0e078d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"48f2f62b-5743-4415-a143-288adc0e078d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1376 - Incident Response Assistance | Coordination With External Providers\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1376\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/493a95f3-f2e3-47d0-af02-65e6d6decc2f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"493a95f3-f2e3-47d0-af02-65e6d6decc2f\"},{\"properties\":{\"displayName\":\"Ensure that 'Java version' is the latest, if used as a part of the Web app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for Java software either due to security flaws or to include additional functionality. Using the latest Java version for web apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"JavaLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Latest Java version\",\"description\":\"Latest supported Java version for App Services\"},\"defaultValue\":\"11\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"JAVA\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"like\":\"[concat('*', parameters('JavaLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"like\":\"[concat(parameters('JavaLatestVersion'), '*')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/496223c3-ad65-4ecd-878a-bae78737e9ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"496223c3-ad65-4ecd-878a-bae78737e9ed\"},{\"properties\":{\"displayName\":\"[Preview]: Add system-assigned managed identity to enable Guest Configuration assignments on VMs with a user-assigned identity\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy adds a system-assigned managed identity to virtual machines hosted in Azure that are supported by Guest Configuration and have at least one user-assigned identity but do not have a system-assigned managed identity. A system-assigned managed identity is a prerequisite for all Guest Configuration assignments and must be added to machines before using any Guest Configuration policy definitions. For more information on Guest Configuration, visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.0.0-preview\",\"preview\":true},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"value\":\"[requestContext().apiVersion]\",\"greaterOrEquals\":\"2018-10-01\"},{\"field\":\"identity.type\",\"contains\":\"UserAssigned\"},{\"field\":\"identity.type\",\"notContains\":\"SystemAssigned\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"addOrReplace\",\"field\":\"identity.type\",\"value\":\"[concat(field('identity.type'), ',SystemAssigned')]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/497dff13-db2a-4c0f-8603-28fa3b331ab6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"497dff13-db2a-4c0f-8603-28fa3b331ab6\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Audit'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Audit'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit: Shut down system immediately if unable to log security audits\",\"description\":\"Audits if the system will shut down when unable to log Security events.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsAudit\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit: Shut down system immediately if unable to log security audits;ExpectedValue', '=', parameters('AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsAudit\"},\"AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits\":{\"value\":\"[parameters('AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit: Shut down system immediately if unable to log security audits;ExpectedValue\",\"value\":\"[parameters('AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit: Shut down system immediately if unable to log security audits;ExpectedValue\",\"value\":\"[parameters('AuditShutDownSystemImmediatelyIfUnableToLogSecurityAudits')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/498b810c-59cd-4222-9338-352ba146ccf3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"498b810c-59cd-4222-9338-352ba146ccf3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1329 - Authenticator Management | Password-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1329\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/498f6234-3e20-4b6a-a880-cbd646d973bd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"498f6234-3e20-4b6a-a880-cbd646d973bd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1638 - Boundary Protection | Dynamic Isolation / Segregation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1638\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/49b99653-32cd-405d-a135-e7d60a9aae1f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"49b99653-32cd-405d-a135-e7d60a9aae1f\"},{\"properties\":{\"displayName\":\"Append a tag and its value to resource groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Appends the specified tag and value when any resource group which is missing this tag is created or updated. Does not modify the tags of resource groups created before this policy was applied until those resource groups are changed. New 'modify' effect policies are available that support remediation of tags on existing resources (see https://aka.ms/modifydoc).\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions/resourceGroups\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[parameters('tagValue')]\"}]}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/49c88fc8-6fd1-46fd-a676-f12d1d3a4c71\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"49c88fc8-6fd1-46fd-a676-f12d1d3a4c71\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1294 - Information System Backup | Transfer To Alternate Storage Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1294\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/49dbe627-2c1e-438c-979e-dd7a39bbf81d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"49dbe627-2c1e-438c-979e-dd7a39bbf81d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1218 - Least Functionality | Prevent Program Execution\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1218\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4a1d0394-b9f5-493e-9e83-563fd0ac4df8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4a1d0394-b9f5-493e-9e83-563fd0ac4df8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1677 - Malicious Code Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1677\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4a248e1e-040f-43e5-bff2-afc3a57a3923\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4a248e1e-040f-43e5-bff2-afc3a57a3923\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1094 - Role-Based Security Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1094\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4b1853e0-8973-446b-b567-09d901d31a09\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4b1853e0-8973-446b-b567-09d901d31a09\"},{\"properties\":{\"displayName\":\"Azure Event Grid topics should use private links\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Azure Event Grid topics that do not have at least one approved private endpoint connection. Clients in a virtual network can securely access resources that have private endpoint connections via private links. For more information, visit https://aka.ms/privateendpoints.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Event Grid\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.EventGrid/topics\"},{\"count\":{\"field\":\"Microsoft.EventGrid/topics/privateEndpointConnections[*]\",\"where\":{\"field\":\"Microsoft.EventGrid/topics/privateEndpointConnections[*].privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}},\"less\":1}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4b90e17e-8448-49db-875e-bd83fb6f804f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4b90e17e-8448-49db-875e-bd83fb6f804f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1114 - Response To Audit Processing Failures | Real-Time Alerts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1114\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4c090801-59bc-4454-bb33-e0455133486a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4c090801-59bc-4454-bb33-e0455133486a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1364 - Incident Handling | Dynamic Reconfiguration\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1364\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4c615c2a-dc83-4dda-8220-abce7b50c9bc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4c615c2a-dc83-4dda-8220-abce7b50c9bc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1661 - Session Authenticity | Invalidate Session Identifiers At Logout\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1661\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4c643c9a-1be7-4016-a5e7-e4bada052920\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4c643c9a-1be7-4016-a5e7-e4bada052920\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1373 - Incident Reporting | Automated Reporting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1373\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4cca950f-c3b7-492a-8e8f-ea39663c14f9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4cca950f-c3b7-492a-8e8f-ea39663c14f9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1632 - Boundary Protection | Prevent Split Tunneling For Remote Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1632\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4ce9073a-77fa-48f0-96b1-87aa8e6091c2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4ce9073a-77fa-48f0-96b1-87aa8e6091c2\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Linux VMs that do not have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Linux virtual machines that do not have the specified applications installed. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"ApplicationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Application names\",\"description\":\"A semicolon-separated list of the names of the applications that should be installed. e.g. 'python; powershell'\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"installed_application_linux\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[ChefInSpec]InstalledApplicationLinuxResource1;AttributesYmlContent', '=', concat('packages: [', replace(parameters('ApplicationName'), ';', ','), ']')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"installed_application_linux\"},\"ApplicationName\":{\"value\":\"[parameters('ApplicationName')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"ApplicationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[ChefInSpec]InstalledApplicationLinuxResource1;AttributesYmlContent\",\"value\":\"[concat('packages: [', replace(parameters('ApplicationName'), ';', ','), ']')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[ChefInSpec]InstalledApplicationLinuxResource1;AttributesYmlContent\",\"value\":\"[concat('packages: [', replace(parameters('ApplicationName'), ';', ','), ']')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4d1c04de-2172-403f-901b-90608c35c721\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4d1c04de-2172-403f-901b-90608c35c721\"},{\"properties\":{\"displayName\":\"FTPS should be required in your Web App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Enable FTPS enforcement for enhanced security\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/ftpsState\",\"in\":[\"FtpsOnly\",\"Disabled\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4d24b6d4-5e53-4a4f-a7f4-618fa573ee4b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4d24b6d4-5e53-4a4f-a7f4-618fa573ee4b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1155 - System Interconnections | Restrictions On External System Connections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1155\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4d33f9f1-12d0-46ad-9fbd-8f8046694977\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4d33f9f1-12d0-46ad-9fbd-8f8046694977\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1156 - Plan Of Action And Milestones\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1156\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4d52e864-9a3b-41ee-8f03-520815fe5378\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4d52e864-9a3b-41ee-8f03-520815fe5378\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1312 - Identifier Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1312\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4d6a5968-9eef-4c18-8534-376790ab7274\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4d6a5968-9eef-4c18-8534-376790ab7274\"},{\"properties\":{\"displayName\":\"Deploy Dependency agent for Linux virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Dependency agent for Linux virtual machines if the VM Image (OS) is in the list defined and the agent is not installed.\",\"metadata\":{\"version\":\"1.1.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"14.04.0-LTS\",\"14.04.1-LTS\",\"14.04.5-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"16.04-LTS\",\"16.04.0-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"18.04-LTS\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"12-SP2\",\"12-SP3\",\"12-SP4\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"DependencyAgentLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"DependencyAgent\",\"vmExtensionPublisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"vmExtensionType\":\"DependencyAgentLinux\",\"vmExtensionTypeHandlerVersion\":\"9.6\"},\"resources\":[{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"apiVersion\":\"2019-12-01\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4da21710-ce6f-4e06-8cdb-5cc4c93ffbee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4da21710-ce6f-4e06-8cdb-5cc4c93ffbee\"},{\"properties\":{\"displayName\":\"Advanced threat protection should be enabled on Virtual Machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced threat protection provides real-time threat protection for virtual machine workloads and generates hardening recommendations as well as alerts about suspicious activities.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"VirtualMachines\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4da35fc9-c9e7-4960-aec9-797fe7d9051d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4da35fc9-c9e7-4960-aec9-797fe7d9051d\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Data Lake Analytics to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Data Lake Analytics to stream to a regional Event Hub when any Data Lake Analytics which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Data Lake Analytics in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeAnalytics/accounts\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.DataLakeAnalytics/accounts/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"Audit\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Requests\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4daddf25-4823-43d4-88eb-2419eb6dcc08\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4daddf25-4823-43d4-88eb-2419eb6dcc08\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1394 - System Maintenance Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1394\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4db56f68-3f50-45ab-88f3-ca46f5379a94\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4db56f68-3f50-45ab-88f3-ca46f5379a94\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1702 - Information System Monitoring | Indicators Of Compromise\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1702\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4dfc0855-92c4-4641-b155-a55ddd962362\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4dfc0855-92c4-4641-b155-a55ddd962362\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1001 - Access Control Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1001\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e26f8c3-4bf3-4191-b8fc-d888805101b7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e26f8c3-4bf3-4191-b8fc-d888805101b7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1083 - Publicly Accessible Content\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1083\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e319cb6-2ca3-4a58-ad75-e67f484e50ec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e319cb6-2ca3-4a58-ad75-e67f484e50ec\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1579 - Acquisition Process | Use Of Approved Piv Products\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1579\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e54c7ef-7457-430b-9a3e-ef8881d4a8e0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e54c7ef-7457-430b-9a3e-ef8881d4a8e0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1247 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1247\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e666db5-b2ef-4b06-aac6-09bfce49151b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e666db5-b2ef-4b06-aac6-09bfce49151b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1196 - Configuration Change Control | Automated Document / Notification / Prohibition Of Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1196\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e7f4ea4-dd62-44f6-8886-ac6137cf52b0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e7f4ea4-dd62-44f6-8886-ac6137cf52b0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1134 - Protection Of Audit Information | Access By Subset Of Privileged Users\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1134\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e95f70e-181c-4422-9da2-43079710c789\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e95f70e-181c-4422-9da2-43079710c789\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1267 - Alternate Storage Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1267\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4e97ba1d-be5d-4953-8da4-0cccf28f4805\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4e97ba1d-be5d-4953-8da4-0cccf28f4805\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1192 - Configuration Change Control | Automated Document / Notification / Prohibition Of Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1192\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4ebd97f7-b105-4f50-8daf-c51465991240\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4ebd97f7-b105-4f50-8daf-c51465991240\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1139 - Audit Generation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1139\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4ed62522-de00-4dda-9810-5205733d2f34\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4ed62522-de00-4dda-9810-5205733d2f34\"},{\"properties\":{\"displayName\":\"A maximum of 3 owners should be designated for your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"It is recommended to designate up to 3 subscription owners in order to reduce the potential for breach by a compromised owner.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"DesignateLessThanXOwners\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4f11b553-d42e-4e3a-89be-32ca364cad4c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4f11b553-d42e-4e3a-89be-32ca364cad4c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1442 - Media Sanitization | Nondestructive Techniques\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1442\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4f26049b-2c5a-4841-9ff3-d48a26aae475\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4f26049b-2c5a-4841-9ff3-d48a26aae475\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1182 - Baseline Configuration | Configure Systems, Components, Or Devices For High-Risk Areas\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1182\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4f34f554-da4b-4786-8d66-7915c90893da\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4f34f554-da4b-4786-8d66-7915c90893da\"},{\"properties\":{\"displayName\":\"A security contact email address should be provided for your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enter an email address to receive notifications when Azure Security Center detects compromised resources\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/securityContacts\",\"existenceCondition\":{\"field\":\"Microsoft.Security/securityContacts/email\",\"notEquals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4f4f78b8-e367-4b10-a341-d9a4ad5cf1c7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4f4f78b8-e367-4b10-a341-d9a4ad5cf1c7\"},{\"properties\":{\"displayName\":\"Add a tag to resources\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Adds the specified tag and value when any resource missing this tag is created or updated. Existing resources can be remediated by triggering a remediation task. If the tag exists with a different value it will not be changed. Does not modify tags on resource groups.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"add\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[parameters('tagValue')]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/4f9dc7db-30c1-420c-b61a-e1d640128d26\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"4f9dc7db-30c1-420c-b61a-e1d640128d26\"},{\"properties\":{\"displayName\":\"Vulnerability assessment should be enabled on virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Monitors vulnerabilities detected by Azure Security Center vulnerability assessment on virtual machines.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"serverVulnerabilityAssessment\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"NotApplicable\",\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/501541f7-f7e7-4cd6-868c-4190fdad3ac9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"501541f7-f7e7-4cd6-868c-4190fdad3ac9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1485 - Delivery And Removal\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1485\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/50301354-95d0-4a11-8af5-8039ecf6d38b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"50301354-95d0-4a11-8af5-8039ecf6d38b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1646 - Cryptographic Key Establishment And Management | Asymmetric Keys\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1646\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/506814fa-b930-4b10-894e-a45b98c40e1a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"506814fa-b930-4b10-894e-a45b98c40e1a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1566 - System Development Life Cycle\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1566\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/50ad3724-e2ac-4716-afcc-d8eabd97adb9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"50ad3724-e2ac-4716-afcc-d8eabd97adb9\"},{\"properties\":{\"displayName\":\"A custom IPsec/IKE policy must be applied to all Azure virtual network gateway connections\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy ensures that all Azure virtual network gateway connections use a custom Internet Protocol Security(Ipsec)/Internet Key Exchange(IKE) policy. Supported algorithms and key strengths - https://aka.ms/AA62kb0\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"IPsecEncryption\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"IPsec Encryption\",\"description\":\"IPsec Encryption\"}},\"IPsecIntegrity\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"IPsec Integrity\",\"description\":\"IPsec Integrity\"}},\"IKEEncryption\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"IKE Encryption\",\"description\":\"IKE Encryption\"}},\"IKEIntegrity\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"IKE Integrity\",\"description\":\"IKE Integrity\"}},\"DHGroup\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"DH Group\",\"description\":\"DH Group\"}},\"PFSGroup\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"PFS Group\",\"description\":\"PFS Group\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/connections\"},{\"anyOf\":[{\"field\":\"Microsoft.Network/connections/ipsecPolicies[*].ipsecEncryption\",\"notIn\":\"[parameters('IPsecEncryption')]\"},{\"field\":\"Microsoft.Network/connections/ipsecPolicies[*].ipsecIntegrity\",\"notIn\":\"[parameters('IPsecIntegrity')]\"},{\"field\":\"Microsoft.Network/connections/ipsecPolicies[*].ikeEncryption\",\"notIn\":\"[parameters('IKEEncryption')]\"},{\"field\":\"Microsoft.Network/connections/ipsecPolicies[*].ikeIntegrity\",\"notIn\":\"[parameters('IKEIntegrity')]\"},{\"field\":\"Microsoft.Network/connections/ipsecPolicies[*].dhGroup\",\"notIn\":\"[parameters('DHGroup')]\"},{\"field\":\"Microsoft.Network/connections/ipsecPolicies[*].pfsGroup\",\"notIn\":\"[parameters('PFSGroup')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/50b83b09-03da-41c1-b656-c293c914862b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"50b83b09-03da-41c1-b656-c293c914862b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1248 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1248\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/50fc602d-d8e0-444b-a039-ad138ee5deb0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"50fc602d-d8e0-444b-a039-ad138ee5deb0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1386 - Information Spillage Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1386\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5120193e-91fd-4f9d-bc6d-194f94734065\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5120193e-91fd-4f9d-bc6d-194f94734065\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1352 - Incident Response Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1352\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/518cb545-bfa8-43f8-a108-3b7d5037469a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"518cb545-bfa8-43f8-a108-3b7d5037469a\"},{\"properties\":{\"displayName\":\"Advanced threat protection should be enabled on Azure Kubernetes Service clusters\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced threat protection provides real-time threat protection for containerized environments and generates alerts for suspicious activities.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"KubernetesService\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/523b5cd1-3e23-492f-a539-13118b6d1e3a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"523b5cd1-3e23-492f-a539-13118b6d1e3a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1642 - Network Disconnect\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1642\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/53397227-5ee3-4b23-9e5e-c8a767ce6928\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"53397227-5ee3-4b23-9e5e-c8a767ce6928\"},{\"properties\":{\"displayName\":\"Connection throttling should be enabled for PostgreSQL database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy helps audit any PostgreSQL databases in your environment without Connection throttling enabled. This setting enables temporary connection throttling per IP for too many invalid password login failures.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\",\"name\":\"connection_throttling\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/configurations/value\",\"equals\":\"ON\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5345bb39-67dc-4960-a1bf-427e16b9a0bd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5345bb39-67dc-4960-a1bf-427e16b9a0bd\"},{\"properties\":{\"displayName\":\"Azure SignalR Service should use private links\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Azure SignalR Service resources that do not have at least one approved private endpoint connection. Clients in a virtual network can securely access resources that have private endpoint connections through private links. For more information, visit: https://aka.ms/asrs/privatelink.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SignalR\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.SignalRService/SignalR\"},{\"count\":{\"field\":\"Microsoft.SignalRService/SignalR/privateEndpointConnections[*]\",\"where\":{\"field\":\"Microsoft.SignalRService/SignalR/privateEndpointConnections[*].privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}},\"less\":1}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/53503636-bcc9-4748-9663-5348217f160f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"53503636-bcc9-4748-9663-5348217f160f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1467 - Visitor Access Records\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1467\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5350cbf9-8bdd-4904-b22a-e88be84ca49d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5350cbf9-8bdd-4904-b22a-e88be84ca49d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1183 - Baseline Configuration | Configure Systems, Components, Or Devices For High-Risk Areas\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1183\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5352e3e0-e63a-452e-9e5f-9c1d181cff9c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5352e3e0-e63a-452e-9e5f-9c1d181cff9c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1029 - Information Flow Enforcement | Security Policy Filters\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1029\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/53ac8f8e-c2b5-4d44-8a2d-058e9ced9b69\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"53ac8f8e-c2b5-4d44-8a2d-058e9ced9b69\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1270 - Alternate Storage Site | Recovery Time / Point Objectives\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1270\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/53c76a39-2097-408a-b237-b279f7b4614d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"53c76a39-2097-408a-b237-b279f7b4614d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1040 - Least Privilege | Review Of User Privileges\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1040\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/54205576-cec9-463f-ba44-b4b3f5d0a84c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"54205576-cec9-463f-ba44-b4b3f5d0a84c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1015 - Account Management | Disable Inactive Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1015\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/544a208a-9c3f-40bc-b1d1-d7e144495c14\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"544a208a-9c3f-40bc-b1d1-d7e144495c14\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1026 - Account Management | Disable Accounts For High-Risk Individuals\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1026\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/55419419-c597-4cd4-b51e-009fd2266783\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"55419419-c597-4cd4-b51e-009fd2266783\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1045 - Unsuccessful Logon Attempts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1045\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/554d2dd6-f3a8-4ad5-b66f-5ce23bd18892\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"554d2dd6-f3a8-4ad5-b66f-5ce23bd18892\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1523 - Personnel Transfer\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1523\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5577a310-2551-49c8-803b-36e0d5e55601\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5577a310-2551-49c8-803b-36e0d5e55601\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1113 - Response To Audit Processing Failures | Audit Storage Capacity\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1113\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/562afd61-56be-4313-8fe4-b9564aa4ba7d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"562afd61-56be-4313-8fe4-b9564aa4ba7d\"},{\"properties\":{\"displayName\":\"Web Application Firewall (WAF) should be enabled for Application Gateway\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Requires Web Application Firewall (WAF) on any Application Gateway. A Web Application Firewall provides greater security for your other Azure resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/applicationGateways\"},{\"field\":\"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/564feb30-bf6a-4854-b4bb-0d2d2d1e6c66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"564feb30-bf6a-4854-b4bb-0d2d2d1e6c66\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1212 - Configuration Settings | Automated Central Management / Application / Verification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1212\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/56d970ee-4efc-49c8-8a4e-5916940d784c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"56d970ee-4efc-49c8-8a4e-5916940d784c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1403 - Controlled Maintenance | Automated Maintenance Activities\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1403\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/57149289-d52b-4f40-9fe6-5233c1ef80f7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"57149289-d52b-4f40-9fe6-5233c1ef80f7\"},{\"properties\":{\"displayName\":\"CORS should not allow every resource to access your Web Applications\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Cross-Origin Resource Sharing (CORS) should not allow all domains to access your web application. Allow only required domains to interact with your web app.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.cors.allowedOrigins[*]\",\"notEquals\":\"*\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5744710e-cc2f-4ee8-8809-3b11e89f4bc9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5744710e-cc2f-4ee8-8809-3b11e89f4bc9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1162 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1162\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5770f3d6-8c2b-4f6f-bf0e-c8c8fc36d592\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5770f3d6-8c2b-4f6f-bf0e-c8c8fc36d592\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1054 - Session Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1054\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5807e1b4-ba5e-4718-8689-a0ca05a191b2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5807e1b4-ba5e-4718-8689-a0ca05a191b2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1584 - Information System Documentation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1584\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5864522b-ff1d-4979-a9f8-58bee1fb174c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5864522b-ff1d-4979-a9f8-58bee1fb174c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1547 - Vulnerability Scanning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1547\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/58abf9b8-c6d4-4b4b-bfb9-fe98fe295f52\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"58abf9b8-c6d4-4b4b-bfb9-fe98fe295f52\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1573 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1573\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/58c93053-7b98-4cf0-b99f-1beb985416c2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"58c93053-7b98-4cf0-b99f-1beb985416c2\"},{\"properties\":{\"displayName\":\"[Deprecated]: Ensure Function app is using the latest version of TLS encryption\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Please use /providers/Microsoft.Authorization/policyDefinitions/f9d614c5-c173-4d56-95a7-b4437057d193 instead. The TLS(Transport Layer Security) protocol secures transmission of data over the internet using standard encryption technology. Encryption should be set with the latest version of TLS. App service allows TLS 1.2 by default, which is the recommended TLS level by industry standards, such as PCI DSS\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"App Service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.minTlsVersion\",\"equals\":\"1.2\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/58d94fc1-a072-47c2-bd37-9cdb38e77453\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"58d94fc1-a072-47c2-bd37-9cdb38e77453\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1063 - Remote Access | Managed Access Control Points\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1063\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/593ce201-54b2-4dd0-b34f-c308005d7780\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"593ce201-54b2-4dd0-b34f-c308005d7780\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1463 - Monitoring Physical Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1463\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/59721f87-ae25-4db0-a2a4-77cc5b25d495\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"59721f87-ae25-4db0-a2a4-77cc5b25d495\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1425 - Timely Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1425\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5983d99c-f39b-4c32-a3dc-170f19f6941b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5983d99c-f39b-4c32-a3dc-170f19f6941b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1512 - Personnel Screening\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1512\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5a8324ad-f599-429b-aaed-f9c6e8c987a8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5a8324ad-f599-429b-aaed-f9c6e8c987a8\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not have a minimum password age of 1 day\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not have a minimum password age of 1 day. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MinimumPasswordAge\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5aa11bbc-5c76-4302-80e5-aba46a4282e7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5aa11bbc-5c76-4302-80e5-aba46a4282e7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1032 - Separation Of Duties\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1032\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5aa85661-d618-46b8-a20f-ca40a86f0751\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5aa85661-d618-46b8-a20f-ca40a86f0751\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not restrict the minimum password length to 14 characters\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not restrict the minimum password length to 14 characters. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MinimumPasswordLength\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5aebc8d1-020d-4037-89a0-02043a7524ec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5aebc8d1-020d-4037-89a0-02043a7524ec\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1555 - Vulnerability Scanning | Privileged Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1555\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5afa8cab-1ed7-4e40-884c-64e0ac2059cc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5afa8cab-1ed7-4e40-884c-64e0ac2059cc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1205 - Access Restrictions For Change | Signed Components\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1205\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5b070cab-0fb8-4e48-ad29-fc90b4c2797c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5b070cab-0fb8-4e48-ad29-fc90b4c2797c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1005 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1005\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5b626abc-26d4-4e22-9de8-3831818526b1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5b626abc-26d4-4e22-9de8-3831818526b1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1105 - Audit Events\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1105\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5b73f57b-587d-4470-a344-0b0ae805f459\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5b73f57b-587d-4470-a344-0b0ae805f459\"},{\"properties\":{\"displayName\":\"Show audit results from Linux VMs that have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Linux virtual machines that have the specified applications installed. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"not_installed_application_linux\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5b842acb-0fe7-41b0-9f40-880ec4ad84d8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5b842acb-0fe7-41b0-9f40-880ec4ad84d8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1433 - Media Transport\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1433\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5b879b41-2728-41c5-ad24-9ee2c37cbe65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5b879b41-2728-41c5-ad24-9ee2c37cbe65\"},{\"properties\":{\"displayName\":\"Container Registries should be encrypted with a Customer-Managed Key (CMK)\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Container Registries that do not have encryption enabled with Customer-Managed Keys (CMK). For more information on CMK encryption, please visit: https://aka.ms/acr/CMK.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Container Registry\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerRegistry/registries\"},{\"not\":{\"field\":\"Microsoft.ContainerRegistry/registries/encryption.status\",\"equals\":\"enabled\"}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5b9159ae-1701-4a6f-9a7a-aa9c8ddd0580\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5b9159ae-1701-4a6f-9a7a-aa9c8ddd0580\"},{\"properties\":{\"displayName\":\"Ensure WEB app has 'Client Certificates (Incoming client certificates)' set to 'On'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Client certificates allow for the app to request a certificate for incoming requests. Only clients that have a valid certificate will be able to reach the app.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"},{\"field\":\"Microsoft.Web/sites/clientCertEnabled\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5bb220d9-2698-4ee4-8404-b9c30c9df609\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5bb220d9-2698-4ee4-8404-b9c30c9df609\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs on which the remote host connection status does not match the specified one\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines on which the remote host connection status does not match the specified one. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"host\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Remote Host Name\",\"description\":\"Specifies the Domain Name System (DNS) name or IP address of the remote host machine.\"}},\"port\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Port\",\"description\":\"The TCP port number on the remote host name.\"}},\"shouldConnect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Should connect to remote host\",\"description\":\"Must be 'True' or 'False'. 'True' indicates that the virtual machine should be able to establish a connection with the remote host specified, so the machine will be non-compliant if it cannot establish a connection. 'False' indicates that the virtual machine should not be able to establish a connection with the remote host specified, so the machine will be non-compliant if it can establish a connection.\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsRemoteConnection\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsRemoteConnection]WindowsRemoteConnection1;host', '=', parameters('host'), ',', '[WindowsRemoteConnection]WindowsRemoteConnection1;port', '=', parameters('port'), ',', '[WindowsRemoteConnection]WindowsRemoteConnection1;shouldConnect', '=', parameters('shouldConnect')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsRemoteConnection\"},\"host\":{\"value\":\"[parameters('host')]\"},\"port\":{\"value\":\"[parameters('port')]\"},\"shouldConnect\":{\"value\":\"[parameters('shouldConnect')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"host\":{\"type\":\"string\"},\"port\":{\"type\":\"string\"},\"shouldConnect\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsRemoteConnection]WindowsRemoteConnection1;host\",\"value\":\"[parameters('host')]\"},{\"name\":\"[WindowsRemoteConnection]WindowsRemoteConnection1;port\",\"value\":\"[parameters('port')]\"},{\"name\":\"[WindowsRemoteConnection]WindowsRemoteConnection1;shouldConnect\",\"value\":\"[parameters('shouldConnect')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsRemoteConnection]WindowsRemoteConnection1;host\",\"value\":\"[parameters('host')]\"},{\"name\":\"[WindowsRemoteConnection]WindowsRemoteConnection1;port\",\"value\":\"[parameters('port')]\"},{\"name\":\"[WindowsRemoteConnection]WindowsRemoteConnection1;shouldConnect\",\"value\":\"[parameters('shouldConnect')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5bb36dda-8a78-4df9-affd-4f05a8612a8a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5bb36dda-8a78-4df9-affd-4f05a8612a8a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1551 - Vulnerability Scanning | Update Tool Capability\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1551\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5bbda922-0172-4095-89e6-5b4a0bf03af7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5bbda922-0172-4095-89e6-5b4a0bf03af7\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Network Security'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Network Security'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsNetworkSecurity\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5c028d2a-1889-45f6-b821-31f42711ced8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5c028d2a-1889-45f6-b821-31f42711ced8\"},{\"properties\":{\"displayName\":\"Audit Log Analytics agent deployment in virtual machine scale sets - VM Image (OS) unlisted\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Reports virtual machine scale sets as non-compliant if the VM Image (OS) is not in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude_windows\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]},\"listOfImageIdToInclude_linux\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"not\":{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_windows')]\"},{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_linux')]\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"12*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"14.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"16.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"18.04*LTS\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7.*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"existenceCondition\":{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5c3bc7b8-a64c-4e08-a9cd-7ff0f31e1138\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5c3bc7b8-a64c-4e08-a9cd-7ff0f31e1138\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1671 - Flaw Remediation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1671\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5c5bbef7-a316-415b-9b38-29753ce8e698\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5c5bbef7-a316-415b-9b38-29753ce8e698\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1067 - Wireless Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1067\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5c5e54f6-0127-44d0-8b61-f31dc8dd6190\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5c5e54f6-0127-44d0-8b61-f31dc8dd6190\"},{\"properties\":{\"displayName\":\"External accounts with write permissions should be removed from your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"External accounts with write privileges should be removed from your subscription in order to prevent unmonitored access.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"RemoveExternalAccountsWithWritePermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5c607a2e-c700-4744-8254-d77e7c9eb5e4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5c607a2e-c700-4744-8254-d77e7c9eb5e4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1483 - Water Damage Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1483\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5cb81060-3c8a-4968-bcdc-395a1801f6c1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5cb81060-3c8a-4968-bcdc-395a1801f6c1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1362 - Incident Handling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1362\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5d169442-d6ef-439b-8dca-46c2c3248214\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5d169442-d6ef-439b-8dca-46c2c3248214\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1014 - Account Management | Removal Of Temporary / Emergency Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1014\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5dee936c-8037-4df1-ab35-6635733da48c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5dee936c-8037-4df1-ab35-6635733da48c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1665 - Process Isolation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1665\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5df3a55c-8456-44d4-941e-175f79332512\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5df3a55c-8456-44d4-941e-175f79332512\"},{\"properties\":{\"displayName\":\"[Deprecated]: Function App should only be accessible over HTTPS\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use of HTTPS ensures server/service authentication and protects data in transit from network layer eavesdropping attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"functionapp\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"OnlyHttpsForFunctionApp\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5df82f4f-773a-4a2d-97a2-422a806f1a55\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5df82f4f-773a-4a2d-97a2-422a806f1a55\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1251 - Contingency Plan | Coordinate With Related Plans\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1251\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5e2b3730-8c14-4081-8893-19dbb5de7348\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5e2b3730-8c14-4081-8893-19dbb5de7348\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Applications that are not using latest supported .NET Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported .NET Framework version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestDotNet\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5e3315e0-a414-4efb-a4d2-c7bd2b0443d2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5e3315e0-a414-4efb-a4d2-c7bd2b0443d2\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not have the specified applications installed. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WhitelistedApplication\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5e393799-e3ca-4e43-a9a5-0ec4648a57d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5e393799-e3ca-4e43-a9a5-0ec4648a57d9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1116 - Audit Review, Analysis, And Reporting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1116\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5e47bc51-35d1-44b8-92af-e2f2d8b67635\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5e47bc51-35d1-44b8-92af-e2f2d8b67635\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1208 - Configuration Settings\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1208\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5ea87673-d06b-456f-a324-8abcee5c159f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5ea87673-d06b-456f-a324-8abcee5c159f\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation only in India data centers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation in the following locations only: West India, South India, Central India\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"General\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"westindia\",\"southindia\",\"centralindia\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5ee85ce5-e7eb-44d6-b4a2-32a24be1ca54\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5ee85ce5-e7eb-44d6-b4a2-32a24be1ca54\"},{\"properties\":{\"displayName\":\"Deploy Log Analytics agent for Linux virtual machine scale sets\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Log Analytics agent for Linux virtual machine scale sets if the VM Image (OS) is in the list defined and the agent is not installed. Note: if your scale set upgradePolicy is set to Manual, you need to apply the extension to the all VMs in the set by calling upgrade on them. In CLI this would be az vmss update-instances.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"12*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"14.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"16.04*LTS\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"18.04*LTS\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7.*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"OmsAgentForLinux\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"MMAExtension\",\"vmExtensionPublisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"vmExtensionType\":\"OmsAgentForLinux\",\"vmExtensionTypeHandlerVersion\":\"1.7\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2018-06-01\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\",\"stopOnMultipleConnections\":\"true\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for: ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5ee9e9ed-0b42-41b7-8c9c-3cfb2fbe2069\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5ee9e9ed-0b42-41b7-8c9c-3cfb2fbe2069\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1576 - Acquisition Process | Design / Implementation Information For Security Controls\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1576\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5f18c885-ade3-48c5-80b1-8f9216019c18\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5f18c885-ade3-48c5-80b1-8f9216019c18\"},{\"properties\":{\"displayName\":\"External accounts with read permissions should be removed from your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"External accounts with read privileges should be removed from your subscription in order to prevent unmonitored access.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"RemoveExternalAccountsWithReadPermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5f76cf89-fbf2-47fd-a3f4-b891fa780b60\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5f76cf89-fbf2-47fd-a3f4-b891fa780b60\"},{\"properties\":{\"displayName\":\"Audit Windows virtual machines on which the Windows Guest Configuration extension is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits Windows virtual machines hosted in Azure that are supported by Guest Configuration but do not have the Guest Configuration extension enabled. For more information on Guest Configuration, visit https://aka.ms/gcpol.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Guest Configuration\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"AzurePolicyforWindows\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.GuestConfiguration\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"ConfigurationforWindows\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5fc23db3-dd4d-4c56-bcc7-43626243e601\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5fc23db3-dd4d-4c56-bcc7-43626243e601\"},{\"properties\":{\"displayName\":\"Add or replace a tag on resources\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Adds or replaces the specified tag and value when any resource is created or updated. Existing resources can be remediated by triggering a remediation task. Does not modify tags on resource groups.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"notEquals\":\"[parameters('tagValue')]\"},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"addOrReplace\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[parameters('tagValue')]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5ffd78d9-436d-4b41-a421-5baa819e3008\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5ffd78d9-436d-4b41-a421-5baa819e3008\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1663 - Protection Of Information At Rest\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1663\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/60171210-6dde-40af-a144-bf2670518bfa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"60171210-6dde-40af-a144-bf2670518bfa\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Object Access'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Object Access'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesObjectAccess\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/60aeaf73-a074-417a-905f-7ce9df0ff77b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"60aeaf73-a074-417a-905f-7ce9df0ff77b\"},{\"properties\":{\"displayName\":\"Storage Accounts should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Storage Account not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"anyOf\":[{\"field\":\"Microsoft.Storage/storageAccounts/networkAcls.defaultAction\",\"notEquals\":\"Deny\"},{\"field\":\"Microsoft.Storage/storageAccounts/networkAcls.virtualNetworkRules[*].id\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/60d21c4f-21a3-4d94-85f4-b924e6aeeda4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"60d21c4f-21a3-4d94-85f4-b924e6aeeda4\"},{\"properties\":{\"displayName\":\"Show audit results from Windows web servers that are not using secure communication protocols\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows web servers that are not using secure communication protocols (TLS 1.1 or TLS 1.2). For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AuditSecureProtocol\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/60ffe3e2-4604-4460-8f22-0f1da058266c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"60ffe3e2-4604-4460-8f22-0f1da058266c\"},{\"properties\":{\"displayName\":\"Deploy Advanced Data Security on SQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables Advanced Data Security on SQL Servers. This includes turning on Threat Detection and Vulnerability Assessment. It will automatically create a storage account in the same region and resource group as the SQL server to store scan results, with a 'sqlva' prefix.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"Default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/securityAlertPolicies.state\",\"equals\":\"Enabled\"},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\"/providers/microsoft.authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"serverName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"serverResourceGroupName\":\"[resourceGroup().name]\",\"subscriptionId\":\"[subscription().subscriptionId]\",\"uniqueStorage\":\"[uniqueString(variables('subscriptionId'), variables('serverResourceGroupName'), parameters('location'))]\",\"storageName\":\"[tolower(concat('sqlva', variables('uniqueStorage')))]\"},\"resources\":[{\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[variables('storageName')]\",\"apiVersion\":\"2019-04-01\",\"location\":\"[parameters('location')]\",\"sku\":{\"name\":\"Standard_LRS\"},\"kind\":\"StorageV2\",\"properties\":{}},{\"name\":\"[concat(parameters('serverName'), '/Default')]\",\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"apiVersion\":\"2017-03-01-preview\",\"properties\":{\"state\":\"Enabled\",\"emailAccountAdmins\":true}},{\"name\":\"[concat(parameters('serverName'), '/Default')]\",\"type\":\"Microsoft.Sql/servers/vulnerabilityAssessments\",\"apiVersion\":\"2018-06-01-preview\",\"properties\":{\"storageContainerPath\":\"[concat(reference(resourceId('Microsoft.Storage/storageAccounts', variables('storageName'))).primaryEndpoints.blob, 'vulnerability-assessment')]\",\"storageAccountAccessKey\":\"[listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageName')), '2018-02-01').keys[0].value]\",\"recurringScans\":{\"isEnabled\":true,\"emailSubscriptionAdmins\":true,\"emails\":[]}},\"dependsOn\":[\"[concat('Microsoft.Storage/storageAccounts/', variables('storageName'))]\",\"[concat('Microsoft.Sql/servers/', parameters('serverName'), '/securityAlertPolicies/Default')]\"]}]},\"parameters\":{\"serverName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6134c3db-786f-471e-87bc-8f479dc890f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6134c3db-786f-471e-87bc-8f479dc890f6\"},{\"properties\":{\"displayName\":\"[Preview]: Configure time zone on Windows machines.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to set specified time zone on Windows virtual machines.\",\"metadata\":{\"version\":\"1.1.0-preview\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"],\"preview\":true},\"parameters\":{\"TimeZone\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Time zone\",\"description\":\"The expected time zone\"},\"allowedValues\":[\"(UTC-12:00) International Date Line West\",\"(UTC-11:00) Coordinated Universal Time-11\",\"(UTC-10:00) Aleutian Islands\",\"(UTC-10:00) Hawaii\",\"(UTC-09:30) Marquesas Islands\",\"(UTC-09:00) Alaska\",\"(UTC-09:00) Coordinated Universal Time-09\",\"(UTC-08:00) Baja California\",\"(UTC-08:00) Coordinated Universal Time-08\",\"(UTC-08:00) Pacific Time (US & Canada)\",\"(UTC-07:00) Arizona\",\"(UTC-07:00) Chihuahua, La Paz, Mazatlan\",\"(UTC-07:00) Mountain Time (US & Canada)\",\"(UTC-06:00) Central America\",\"(UTC-06:00) Central Time (US & Canada)\",\"(UTC-06:00) Easter Island\",\"(UTC-06:00) Guadalajara, Mexico City, Monterrey\",\"(UTC-06:00) Saskatchewan\",\"(UTC-05:00) Bogota, Lima, Quito, Rio Branco\",\"(UTC-05:00) Chetumal\",\"(UTC-05:00) Eastern Time (US & Canada)\",\"(UTC-05:00) Haiti\",\"(UTC-05:00) Havana\",\"(UTC-05:00) Indiana (East)\",\"(UTC-05:00) Turks and Caicos\",\"(UTC-04:00) Asuncion\",\"(UTC-04:00) Atlantic Time (Canada)\",\"(UTC-04:00) Caracas\",\"(UTC-04:00) Cuiaba\",\"(UTC-04:00) Georgetown, La Paz, Manaus, San Juan\",\"(UTC-04:00) Santiago\",\"(UTC-03:30) Newfoundland\",\"(UTC-03:00) Araguaina\",\"(UTC-03:00) Brasilia\",\"(UTC-03:00) Cayenne, Fortaleza\",\"(UTC-03:00) City of Buenos Aires\",\"(UTC-03:00) Greenland\",\"(UTC-03:00) Montevideo\",\"(UTC-03:00) Punta Arenas\",\"(UTC-03:00) Saint Pierre and Miquelon\",\"(UTC-03:00) Salvador\",\"(UTC-02:00) Coordinated Universal Time-02\",\"(UTC-02:00) Mid-Atlantic - Old\",\"(UTC-01:00) Azores\",\"(UTC-01:00) Cabo Verde Is.\",\"(UTC) Coordinated Universal Time\",\"(UTC+00:00) Dublin, Edinburgh, Lisbon, London\",\"(UTC+00:00) Monrovia, Reykjavik\",\"(UTC+00:00) Sao Tome\",\"(UTC+01:00) Casablanca\",\"(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna\",\"(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague\",\"(UTC+01:00) Brussels, Copenhagen, Madrid, Paris\",\"(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb\",\"(UTC+01:00) West Central Africa\",\"(UTC+02:00) Amman\",\"(UTC+02:00) Athens, Bucharest\",\"(UTC+02:00) Beirut\",\"(UTC+02:00) Cairo\",\"(UTC+02:00) Chisinau\",\"(UTC+02:00) Damascus\",\"(UTC+02:00) Gaza, Hebron\",\"(UTC+02:00) Harare, Pretoria\",\"(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius\",\"(UTC+02:00) Jerusalem\",\"(UTC+02:00) Kaliningrad\",\"(UTC+02:00) Khartoum\",\"(UTC+02:00) Tripoli\",\"(UTC+02:00) Windhoek\",\"(UTC+03:00) Baghdad\",\"(UTC+03:00) Istanbul\",\"(UTC+03:00) Kuwait, Riyadh\",\"(UTC+03:00) Minsk\",\"(UTC+03:00) Moscow, St. Petersburg\",\"(UTC+03:00) Nairobi\",\"(UTC+03:30) Tehran\",\"(UTC+04:00) Abu Dhabi, Muscat\",\"(UTC+04:00) Astrakhan, Ulyanovsk\",\"(UTC+04:00) Baku\",\"(UTC+04:00) Izhevsk, Samara\",\"(UTC+04:00) Port Louis\",\"(UTC+04:00) Saratov\",\"(UTC+04:00) Tbilisi\",\"(UTC+04:00) Volgograd\",\"(UTC+04:00) Yerevan\",\"(UTC+04:30) Kabul\",\"(UTC+05:00) Ashgabat, Tashkent\",\"(UTC+05:00) Ekaterinburg\",\"(UTC+05:00) Islamabad, Karachi\",\"(UTC+05:00) Qyzylorda\",\"(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi\",\"(UTC+05:30) Sri Jayawardenepura\",\"(UTC+05:45) Kathmandu\",\"(UTC+06:00) Astana\",\"(UTC+06:00) Dhaka\",\"(UTC+06:00) Omsk\",\"(UTC+06:30) Yangon (Rangoon)\",\"(UTC+07:00) Bangkok, Hanoi, Jakarta\",\"(UTC+07:00) Barnaul, Gorno-Altaysk\",\"(UTC+07:00) Hovd\",\"(UTC+07:00) Krasnoyarsk\",\"(UTC+07:00) Novosibirsk\",\"(UTC+07:00) Tomsk\",\"(UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi\",\"(UTC+08:00) Irkutsk\",\"(UTC+08:00) Kuala Lumpur, Singapore\",\"(UTC+08:00) Perth\",\"(UTC+08:00) Taipei\",\"(UTC+08:00) Ulaanbaatar\",\"(UTC+08:45) Eucla\",\"(UTC+09:00) Chita\",\"(UTC+09:00) Osaka, Sapporo, Tokyo\",\"(UTC+09:00) Pyongyang\",\"(UTC+09:00) Seoul\",\"(UTC+09:00) Yakutsk\",\"(UTC+09:30) Adelaide\",\"(UTC+09:30) Darwin\",\"(UTC+10:00) Brisbane\",\"(UTC+10:00) Canberra, Melbourne, Sydney\",\"(UTC+10:00) Guam, Port Moresby\",\"(UTC+10:00) Hobart\",\"(UTC+10:00) Vladivostok\",\"(UTC+10:30) Lord Howe Island\",\"(UTC+11:00) Bougainville Island\",\"(UTC+11:00) Chokurdakh\",\"(UTC+11:00) Magadan\",\"(UTC+11:00) Norfolk Island\",\"(UTC+11:00) Sakhalin\",\"(UTC+11:00) Solomon Is., New Caledonia\",\"(UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky\",\"(UTC+12:00) Auckland, Wellington\",\"(UTC+12:00) Coordinated Universal Time+12\",\"(UTC+12:00) Fiji\",\"(UTC+12:00) Petropavlovsk-Kamchatsky - Old\",\"(UTC+12:45) Chatham Islands\",\"(UTC+13:00) Coordinated Universal Time+13\",\"(UTC+13:00) Nuku'alofa\",\"(UTC+13:00) Samoa\",\"(UTC+14:00) Kiritimati Island\"]}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"SetWindowsTimeZone\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsTimeZone]WindowsTimeZone1;TimeZone', '=', parameters('TimeZone')))]\"},{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"SetWindowsTimeZone\"},\"TimeZone\":{\"value\":\"[parameters('TimeZone')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"TimeZone\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"assignmentType\":\"DeployAndAutoCorrect\",\"configurationParameter\":[{\"name\":\"[WindowsTimeZone]WindowsTimeZone1;TimeZone\",\"value\":\"[parameters('TimeZone')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"assignmentType\":\"DeployAndAutoCorrect\",\"configurationParameter\":[{\"name\":\"[WindowsTimeZone]WindowsTimeZone1;TimeZone\",\"value\":\"[parameters('TimeZone')]\"}]}}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6141c932-9384-44c6-a395-59e4c057d7c9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6141c932-9384-44c6-a395-59e4c057d7c9\"},{\"properties\":{\"displayName\":\"Service Fabric clusters should have the ClusterProtectionLevel property set to EncryptAndSign\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Service Fabric provides three levels of protection (None, Sign and EncryptAndSign) for node-to-node communication using a primary cluster certificate. Set the protection level to ensure that all node-to-node messages are encrypted and digitally signed\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Service Fabric\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ServiceFabric/clusters\"},{\"anyOf\":[{\"field\":\"Microsoft.ServiceFabric/clusters/fabricSettings[*].name\",\"notEquals\":\"Security\"},{\"field\":\"Microsoft.ServiceFabric/clusters/fabricSettings[*].parameters[*].name\",\"notEquals\":\"ClusterProtectionLevel\"},{\"field\":\"Microsoft.ServiceFabric/clusters/fabricSettings[*].parameters[*].value\",\"notEquals\":\"EncryptAndSign\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/617c02be-7f02-4efd-8836-3180d47b6c68\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"617c02be-7f02-4efd-8836-3180d47b6c68\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1110 - Audit Storage Capacity\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1110\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6182bfa7-0f2a-43f5-834a-a2ddf31c13c7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6182bfa7-0f2a-43f5-834a-a2ddf31c13c7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1415 - Nonlocal Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1415\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/61a1dd98-b259-4840-abd5-fbba7ee0da83\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"61a1dd98-b259-4840-abd5-fbba7ee0da83\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1153 - System Interconnections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1153\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/61cf3125-142c-4754-8a16-41ab4d529635\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"61cf3125-142c-4754-8a16-41ab4d529635\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - System objects'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - System objects'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsSystemobjects\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/620e58b5-ac75-49b4-993f-a9d4f0459636\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"620e58b5-ac75-49b4-993f-a9d4f0459636\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1682 - Malicious Code Protection | Nonsignature-Based Detection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1682\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/62b638c5-29d7-404b-8d93-f21e4b1ce198\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"62b638c5-29d7-404b-8d93-f21e4b1ce198\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1660 - Session Authenticity\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1660\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/63096613-ce83-43e5-96f4-e588e8813554\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"63096613-ce83-43e5-96f4-e588e8813554\"},{\"properties\":{\"displayName\":\"[Preview]: Audit Linux virtual machines on which the use of passwords for SSH is allowed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits Linux virtual machines that use passwords for authenticating through SSH. This policy requires that the Guest Configuration prerequisites have been deployed to the policy assignment scope. For details, visit https://aka.ms/gcpol\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.0.0-preview\",\"preview\":true,\"requiredProviders\":[\"Microsoft.GuestConfiguration\"],\"guestConfiguration\":{\"name\":\"LinuxNoPasswordForSSH\",\"version\":\"1.*\"}},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of this policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"LinuxNoPasswordForSSH\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/630c64f9-8b6b-4c64-b511-6544ceff6fd6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"630c64f9-8b6b-4c64-b511-6544ceff6fd6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1002 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1002\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/632024c2-8079-439d-a7f6-90af1d78cc65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"632024c2-8079-439d-a7f6-90af1d78cc65\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1498 - Rules Of Behavior\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1498\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/633988b9-cf2f-4323-8394-f0d2af9cd6e1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"633988b9-cf2f-4323-8394-f0d2af9cd6e1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1177 - Baseline Configuration | Reviews And Updates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1177\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/63dbc7a8-e20b-4d38-b857-a7f6c0cd94bc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"63dbc7a8-e20b-4d38-b857-a7f6c0cd94bc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1185 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1185\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6420cd73-b939-43b7-9d99-e8688fea053c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6420cd73-b939-43b7-9d99-e8688fea053c\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Devices'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Devices'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"DevicesAllowedToFormatAndEjectRemovableMedia\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Devices: Allowed to format and eject removable media\",\"description\":\"Specifies who is allowed to format and eject removable NTFS media. You can use this policy setting to prevent unauthorized users from removing data on one computer to access it on another computer on which they have local administrator privileges.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsDevices\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Devices: Allowed to format and eject removable media;ExpectedValue', '=', parameters('DevicesAllowedToFormatAndEjectRemovableMedia')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsDevices\"},\"DevicesAllowedToFormatAndEjectRemovableMedia\":{\"value\":\"[parameters('DevicesAllowedToFormatAndEjectRemovableMedia')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"DevicesAllowedToFormatAndEjectRemovableMedia\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Devices: Allowed to format and eject removable media;ExpectedValue\",\"value\":\"[parameters('DevicesAllowedToFormatAndEjectRemovableMedia')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Devices: Allowed to format and eject removable media;ExpectedValue\",\"value\":\"[parameters('DevicesAllowedToFormatAndEjectRemovableMedia')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6481cc21-ed6e-4480-99dd-ea7c5222e897\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6481cc21-ed6e-4480-99dd-ea7c5222e897\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1441 - Media Sanitization | Equipment Testing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1441\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6519d7f3-e8a2-4ff3-a935-9a9497152ad7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6519d7f3-e8a2-4ff3-a935-9a9497152ad7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1558 - Vulnerability Scanning | Correlate Scanning Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1558\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/65592b16-4367-42c5-a26e-d371be450e17\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"65592b16-4367-42c5-a26e-d371be450e17\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit missing blob encryption for storage accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy is no longer necessary because storage blob encryption is enabled by default and cannot be turned off.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"not\":{\"field\":\"Microsoft.Storage/storageAccounts/enableBlobEncryption\",\"equals\":\"True\"}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/655cb504-bcee-4362-bd4c-402e6aa38759\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"655cb504-bcee-4362-bd4c-402e6aa38759\"},{\"properties\":{\"displayName\":\"Advanced data security should be enabled on SQL servers on machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced data security provides functionality for surfacing and mitigating potential database vulnerabilities, detecting anomalous activities that could indicate a threat to SQL database and discovering and classifying sensitive data.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"SqlServerVirtualMachines\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6581d072-105e-4418-827f-bd446d56421b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6581d072-105e-4418-827f-bd446d56421b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1261 - Contingency Plan Testing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1261\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/65aeceb5-a59c-4cb1-8d82-9c474be5d431\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"65aeceb5-a59c-4cb1-8d82-9c474be5d431\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit IP restrictions configuration for a Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"IP Restrictions allow you to define a list of IP addresses that are allowed to access your app. Use of IP Restrictions protects a Function app from common attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"functionapp\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"ConfigureIPRestrictions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/664346d9-be92-43fb-a219-d595eeb76a90\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"664346d9-be92-43fb-a219-d595eeb76a90\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1444 - Media Use | Prohibit Use Without Owner\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1444\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/666143df-f5e0-45bd-b554-135f0f93e44e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"666143df-f5e0-45bd-b554-135f0f93e44e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1319 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1319\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/66f7ae57-5560-4fc5-85c9-659f204e7a42\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"66f7ae57-5560-4fc5-85c9-659f204e7a42\"},{\"properties\":{\"displayName\":\"Cognitive Services accounts should enable data encryption with customer managed key\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Cognitive Services account not using data encryption with customer managed key.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cognitive Services\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.CognitiveServices/accounts\"},{\"field\":\"Microsoft.CognitiveServices/accounts/encryption.keySource\",\"notEquals\":\"Microsoft.KeyVault\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/67121cc7-ff39-4ab8-b7e3-95b84dab487d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"67121cc7-ff39-4ab8-b7e3-95b84dab487d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1628 - Boundary Protection | External Telecommunications Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1628\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/67de62b4-a737-4781-8861-3baed3c35069\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"67de62b4-a737-4781-8861-3baed3c35069\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1377 - Incident Response Assistance | Coordination With External Providers\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1377\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/68434bd1-e14b-4031-9edb-a4adf5f84a67\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"68434bd1-e14b-4031-9edb-a4adf5f84a67\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs on which the Log Analytics agent is not connected as expected\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines on which the Log Analytics agent is not connected to the specified workspaces. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"WorkspaceId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Connected workspace IDs\",\"description\":\"A semicolon-separated list of the workspace IDs that the Log Analytics agent should be connected to\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsLogAnalyticsAgentConnection\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[LogAnalyticsAgent]LogAnalyticsAgent1;WorkspaceId', '=', parameters('WorkspaceId')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsLogAnalyticsAgentConnection\"},\"WorkspaceId\":{\"value\":\"[parameters('WorkspaceId')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"WorkspaceId\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LogAnalyticsAgent]LogAnalyticsAgent1;WorkspaceId\",\"value\":\"[parameters('WorkspaceId')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LogAnalyticsAgent]LogAnalyticsAgent1;WorkspaceId\",\"value\":\"[parameters('WorkspaceId')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/68511db2-bd02-41c4-ae6b-1900a012968a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"68511db2-bd02-41c4-ae6b-1900a012968a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1597 - Developer Configuration Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1597\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/68b250ec-2e4f-4eee-898a-117a9fda7016\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"68b250ec-2e4f-4eee-898a-117a9fda7016\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1588 - External Information System Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1588\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/68ebae26-e0e0-4ecb-8379-aabf633b51e9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"68ebae26-e0e0-4ecb-8379-aabf633b51e9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1070 - Wireless Access | Disable Wireless Networking\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1070\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/68f837d0-8942-4b1e-9b31-be78b247bda8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"68f837d0-8942-4b1e-9b31-be78b247bda8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1727 - Memory Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1727\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/697175a7-9715-4e89-b98b-c6f605888fa3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"697175a7-9715-4e89-b98b-c6f605888fa3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1652 - Mobile Code\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1652\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6998e84a-2d29-4e10-8962-76754d4f772d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6998e84a-2d29-4e10-8962-76754d4f772d\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy Log Analytics agent to Windows Azure Arc machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Log Analytics agent to Windows Azure Arc machines if the agent isn't installed.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Monitoring\",\"preview\":true},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Log Analytics workspace\",\"description\":\"Specify the Log Analytics workspace the agent should be connected to. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.HybridCompute/machines/extensions/type\",\"equals\":\"MicrosoftMonitoringAgent\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"MMAExtension\",\"vmExtensionPublisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"vmExtensionType\":\"MicrosoftMonitoringAgent\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2019-12-12\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\",\"stopOnMultipleConnections\":\"true\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/69af7d4a-7b18-4044-93a9-2651498ef203\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"69af7d4a-7b18-4044-93a9-2651498ef203\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1699 - Information System Monitoring | Privileged Users\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1699\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/69c7bee8-bc19-4129-a51e-65a7b39d3e7c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"69c7bee8-bc19-4129-a51e-65a7b39d3e7c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1696 - Information System Monitoring | Correlate Monitoring Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1696\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/69d2a238-20ab-4206-a6dc-f302bf88b1b8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"69d2a238-20ab-4206-a6dc-f302bf88b1b8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1244 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1244\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6a13a8f8-c163-4b1b-8554-d63569dab937\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6a13a8f8-c163-4b1b-8554-d63569dab937\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1019 - Account Management | Role-Based Schemes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1019\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6a3ee9b2-3977-459c-b8ce-2db583abd9f7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6a3ee9b2-3977-459c-b8ce-2db583abd9f7\"},{\"properties\":{\"displayName\":\"[Deprecated]: Deploy prerequisites to audit Windows VMs on which Windows Defender Exploit Guard is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines on which Windows Defender Exploit Guard is not enabled. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.1.0-deprecated\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"],\"deprecated\":true},\"parameters\":{\"NotAvailableMachineState\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: State in which to show VMs on which Windows Defender Exploit Guard is not available\",\"description\":\"Windows Defender Exploit Guard is only available starting with Windows 10/Windows Server with update 1709. Setting this value to 'Non-Compliant' will make machines with older versions on which Windows Defender Exploit Guard is not available (such as Windows Server 2012 R2) non-compliant. Setting this value to 'Compliant' will make these machines compliant.\"},\"allowedValues\":[\"Compliant\",\"Non-Compliant\"],\"defaultValue\":\"Non-Compliant\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDefenderExploitGuard\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsDefenderExploitGuard]WindowsDefenderExploitGuard1;NotAvailableMachineState', '=', parameters('NotAvailableMachineState')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsDefenderExploitGuard\"},\"NotAvailableMachineState\":{\"value\":\"[parameters('NotAvailableMachineState')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"NotAvailableMachineState\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsDefenderExploitGuard]WindowsDefenderExploitGuard1;NotAvailableMachineState\",\"value\":\"[parameters('NotAvailableMachineState')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsDefenderExploitGuard]WindowsDefenderExploitGuard1;NotAvailableMachineState\",\"value\":\"[parameters('NotAvailableMachineState')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2015-05-01-preview\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6a7a2bcf-f9be-4e35-9734-4f9657a70f1d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6a7a2bcf-f9be-4e35-9734-4f9657a70f1d\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit IP restrictions configuration for a Web Application\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"IP Restrictions allow you to define a list of IP addresses that are allowed to access your app. Use of IP Restrictions protects a web application from common attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"ConfigureIPRestrictions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6a8450e2-6c61-43b4-be65-62e3a197bffe\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6a8450e2-6c61-43b4-be65-62e3a197bffe\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1211 - Configuration Settings\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1211\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6a8b9dc8-6b00-4701-aa96-bba3277ebf50\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6a8b9dc8-6b00-4701-aa96-bba3277ebf50\"},{\"properties\":{\"displayName\":\"[Deprecated]: Ensure WEB app is using the latest version of TLS encryption \",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Please use /providers/Microsoft.Authorization/policyDefinitions/f0e6e85b-9b9f-4a4b-b67b-f730d42f1b0b instead. The TLS(Transport Layer Security) protocol secures transmission of data over the internet using standard encryption technology. Encryption should be set with the latest version of TLS. App service allows TLS 1.2 by default, which is the recommended TLS level by industry standards, such as PCI DSS.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"App Service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.minTlsVersion\",\"equals\":\"1.2\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6ad61431-88ce-4357-a0e1-6da43f292bd7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6ad61431-88ce-4357-a0e1-6da43f292bd7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1653 - Mobile Code\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1653\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6b1c00a7-7fd0-42b0-8c5b-c45f6fa1f71b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6b1c00a7-7fd0-42b0-8c5b-c45f6fa1f71b\"},{\"properties\":{\"displayName\":\"Deprecated accounts should be removed from your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Deprecated accounts should be removed from your subscriptions. Deprecated accounts are accounts that have been blocked from signing in.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"RemoveDeprecatedAccounts\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6b1cbf55-e8b6-442f-ba4c-7246b6381474\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6b1cbf55-e8b6-442f-ba4c-7246b6381474\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Service Bus to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Service Bus to stream to a regional Event Hub when any Service Bus which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Service Bus in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ServiceBus/namespaces\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.ServiceBus/namespaces/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"OperationalLogs\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6b51af03-9277-49a9-a3f8-1c69c9ff7403\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6b51af03-9277-49a9-a3f8-1c69c9ff7403\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1031 - Separation Of Duties\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1031\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6b93a801-fe25-4574-a60d-cb22acffae00\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6b93a801-fe25-4574-a60d-cb22acffae00\"},{\"properties\":{\"displayName\":\"Not allowed resource types\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy enables you to specify the resource types that your organization cannot deploy.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"General\"},\"parameters\":{\"listOfResourceTypesNotAllowed\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of resource types that cannot be deployed.\",\"displayName\":\"Not allowed resource types\",\"strongType\":\"resourceTypes\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":\"[parameters('listOfResourceTypesNotAllowed')]\"},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6c112d4e-5bc7-47ae-a041-ea2d9dccd749\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6c112d4e-5bc7-47ae-a041-ea2d9dccd749\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1338 - Authenticator Management | Automated Support For Password Strength Determination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1338\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6c59a207-6aed-41dc-83a2-e1ff66e4a4db\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6c59a207-6aed-41dc-83a2-e1ff66e4a4db\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1304 - Identification And Authentication (Org. Users) | Local Access To Non-Privileged Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1304\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6ca71be3-16cb-4d39-8b50-7f8fd5e2f11b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6ca71be3-16cb-4d39-8b50-7f8fd5e2f11b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1437 - Media Transport | Cryptographic Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1437\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6d1eb6ed-bf13-4046-b993-b9e2aef0f76c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6d1eb6ed-bf13-4046-b993-b9e2aef0f76c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1171 - Penetration Testing | Independent Penetration Agent Or Team\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1171\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6d4820bc-8b61-4982-9501-2123cb776c00\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6d4820bc-8b61-4982-9501-2123cb776c00\"},{\"properties\":{\"displayName\":\"Function App should only be accessible over HTTPS\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use of HTTPS ensures server/service authentication and protects data in transit from network layer eavesdropping attacks.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"},{\"field\":\"Microsoft.Web/sites/httpsOnly\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6d555dd1-86f2-4f1c-8ed7-5abae7c6cbab\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6d555dd1-86f2-4f1c-8ed7-5abae7c6cbab\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1643 - Cryptographic Key Establishment And Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1643\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6d8d492c-dd7a-46f7-a723-fa66a425b87c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6d8d492c-dd7a-46f7-a723-fa66a425b87c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1291 - Information System Backup | Testing For Reliability / Integrity\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1291\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6d8fd073-9c85-4ee2-a9d0-2e4ec9eb8912\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6d8fd073-9c85-4ee2-a9d0-2e4ec9eb8912\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1175 - Configuration Management Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1175\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6dab4254-c30d-4bb7-ae99-1d21586c063c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6dab4254-c30d-4bb7-ae99-1d21586c063c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1651 - Mobile Code\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1651\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6db63528-c9ba-491c-8a80-83e1e6977a50\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6db63528-c9ba-491c-8a80-83e1e6977a50\"},{\"properties\":{\"displayName\":\"Enable Security Center's auto provisioning of the Log Analytics agent on your subscriptions with default workspace.\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Allow Security Center to auto provision the Log Analytics agent on your subscriptions to monitor and collect security data using ASC default workspace.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/autoProvisioningSettings\",\"deploymentScope\":\"Subscription\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"existenceCondition\":{\"field\":\"Microsoft.Security/autoProvisioningSettings/autoProvision\",\"equals\":\"On\"},\"deployment\":{\"location\":\"westus\",\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Security/autoProvisioningSettings\",\"name\":\"default\",\"apiVersion\":\"2017-08-01-preview\",\"properties\":{\"autoProvision\":\"On\"}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6df2fee6-a9ed-4fef-bced-e13be1b25f1c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6df2fee6-a9ed-4fef-bced-e13be1b25f1c\"},{\"properties\":{\"displayName\":\"Email notification for high severity alerts should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable emailing security alerts to the security contact, in order to have them receive security alert emails from Microsoft. This ensures that the right people are aware of any potential security issues and are able to mitigate the risks\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/securityContacts\",\"existenceCondition\":{\"field\":\"Microsoft.Security/securityContacts/alertNotifications\",\"notEquals\":\"Off\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6e2593d9-add6-4083-9c9b-4b7d2188c899\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6e2593d9-add6-4083-9c9b-4b7d2188c899\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1586 - External Information System Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1586\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6e3b2fbd-8f37-4766-a64d-3f37703dcb51\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6e3b2fbd-8f37-4766-a64d-3f37703dcb51\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1536 - Risk Assessment Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1536\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6e40d9de-2ad4-4cb5-8945-23143326a502\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6e40d9de-2ad4-4cb5-8945-23143326a502\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1530 - Third-Party Personnel Security\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1530\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6e8f9566-29f1-49cd-b61f-f8628a3cf993\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6e8f9566-29f1-49cd-b61f-f8628a3cf993\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1460 - Access Control For Output Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1460\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6f3ce1bb-4f77-4695-8355-70b08d54fdda\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6f3ce1bb-4f77-4695-8355-70b08d54fdda\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1320 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1320\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6f54c732-71d4-4f93-a696-4e373eca3a77\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6f54c732-71d4-4f93-a696-4e373eca3a77\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation only in Japan data centers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation in the following locations only: Japan East, Japan West\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"General\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"japaneast\",\"japanwest\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6fdb9205-3462-4cfc-87d8-16c7860b53f4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6fdb9205-3462-4cfc-87d8-16c7860b53f4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1141 - Audit Generation | Changes By Authorized Individuals\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1141\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6fdefbf4-93e7-4513-bc95-c1858b7093e0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6fdefbf4-93e7-4513-bc95-c1858b7093e0\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Microsoft Network Server'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Microsoft Network Server'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsMicrosoftNetworkServer\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6fe4ef56-7576-4dc4-8e9c-26bad4b087ce\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6fe4ef56-7576-4dc4-8e9c-26bad4b087ce\"},{\"properties\":{\"displayName\":\"Ensure that 'Python version' is the latest, if used as a part of the Web app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for Python software either due to security flaws or to include additional functionality. Using the latest Python version for web apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"WindowsPythonLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Latest Python version\",\"description\":\"Latest supported Python version for App Services\"},\"defaultValue\":\"3.6\"},\"LinuxPythonLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Linux Latest Python version\",\"description\":\"Latest supported Python version for App Services\"},\"defaultValue\":\"3.8\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"PYTHON\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"[concat('PYTHON|', parameters('LinuxPythonLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"[parameters('WindowsPythonLatestVersion')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7008174a-fd10-4ef0-817e-fc820a951d73\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7008174a-fd10-4ef0-817e-fc820a951d73\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Windows Components'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Windows Components'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"SendFileSamplesWhenFurtherAnalysisIsRequired\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Send file samples when further analysis is required\",\"description\":\"Specifies whether and how Windows Defender will submit samples of suspected malware to Microsoft for further analysis when opt-in for MAPS telemetry is set.\"},\"defaultValue\":\"1\"},\"AllowIndexingOfEncryptedFiles\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Allow indexing of encrypted files\",\"description\":\"Specifies whether encrypted items are allowed to be indexed.\"},\"defaultValue\":\"0\"},\"AllowTelemetry\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Allow Telemetry\",\"description\":\"Specifies configuration of the amount of diagnostic and usage data reported to Microsoft. The data is transmitted securely and sensitive data is not sent.\"},\"defaultValue\":\"2\"},\"AllowUnencryptedTraffic\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Allow unencrypted traffic\",\"description\":\"Specifies whether the Windows Remote Management (WinRM) service sends and receives unencrypted messages over the network.\"},\"defaultValue\":\"0\"},\"AlwaysInstallWithElevatedPrivileges\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Always install with elevated privileges\",\"description\":\"Specifies whether Windows Installer should use system permissions when it installs any program on the system.\"},\"defaultValue\":\"0\"},\"AlwaysPromptForPasswordUponConnection\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Always prompt for password upon connection\",\"description\":\"Specifies whether Terminal Services/Remote Desktop Connection always prompts the client computer for a password upon connection.\"},\"defaultValue\":\"1\"},\"ApplicationSpecifyTheMaximumLogFileSizeKB\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Application: Specify the maximum log file size (KB)\",\"description\":\"Specifies the maximum size for the Application event log in kilobytes.\"},\"defaultValue\":\"32768\"},\"AutomaticallySendMemoryDumpsForOSgeneratedErrorReports\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Automatically send memory dumps for OS-generated error reports\",\"description\":\"Specifies if memory dumps in support of OS-generated error reports can be sent to Microsoft automatically.\"},\"defaultValue\":\"1\"},\"ConfigureDefaultConsent\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Configure Default consent\",\"description\":\"Specifies setting of the default consent handling for error reports sent to Microsoft.\"},\"defaultValue\":\"4\"},\"ConfigureWindowsSmartScreen\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Configure Windows SmartScreen\",\"description\":\"Specifies how to manage the behavior of Windows SmartScreen. Windows SmartScreen helps keep PCs safer by warning users before running unrecognized programs downloaded from the Internet. Some information is sent to Microsoft about files and programs run on PCs with this feature enabled.\"},\"defaultValue\":\"1\"},\"DisallowDigestAuthentication\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Disallow Digest authentication\",\"description\":\"Specifies whether the Windows Remote Management (WinRM) client will not use Digest authentication.\"},\"defaultValue\":\"0\"},\"DisallowWinRMFromStoringRunAsCredentials\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Disallow WinRM from storing RunAs credentials\",\"description\":\"Specifies whether the Windows Remote Management (WinRM) service will not allow RunAs credentials to be stored for any plug-ins.\"},\"defaultValue\":\"1\"},\"DoNotAllowPasswordsToBeSaved\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Do not allow passwords to be saved\",\"description\":\"Specifies whether to prevent Remote Desktop Services - Terminal Services clients from saving passwords on a computer.\"},\"defaultValue\":\"1\"},\"SecuritySpecifyTheMaximumLogFileSizeKB\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Security: Specify the maximum log file size (KB)\",\"description\":\"Specifies the maximum size for the Security event log in kilobytes.\"},\"defaultValue\":\"196608\"},\"SetClientConnectionEncryptionLevel\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Set client connection encryption level\",\"description\":\"Specifies whether to require the use of a specific encryption level to secure communications between client computers and RD Session Host servers during Remote Desktop Protocol (RDP) connections. This policy only applies when you are using native RDP encryption.\"},\"defaultValue\":\"3\"},\"SetTheDefaultBehaviorForAutoRun\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Set the default behavior for AutoRun\",\"description\":\"Specifies the default behavior for Autorun commands. Autorun commands are generally stored in autorun.inf files. They often launch the installation program or other routines.\"},\"defaultValue\":\"1\"},\"SetupSpecifyTheMaximumLogFileSizeKB\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Setup: Specify the maximum log file size (KB)\",\"description\":\"Specifies the maximum size for the Setup event log in kilobytes.\"},\"defaultValue\":\"32768\"},\"SystemSpecifyTheMaximumLogFileSizeKB\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"System: Specify the maximum log file size (KB)\",\"description\":\"Specifies the maximum size for the System event log in kilobytes.\"},\"defaultValue\":\"32768\"},\"TurnOffDataExecutionPreventionForExplorer\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Turn off Data Execution Prevention for Explorer\",\"description\":\"Specifies whether to turn off Data Execution Prevention for Windows File Explorer. Disabling data execution prevention can allow certain legacy plug-in applications to function without terminating Explorer.\"},\"defaultValue\":\"0\"},\"SpecifyTheIntervalToCheckForDefinitionUpdates\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Specify the interval to check for definition updates\",\"description\":\"Specifies an interval at which to check for Windows Defender definition updates. The time value is represented as the number of hours between update checks.\"},\"defaultValue\":\"8\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_WindowsComponents\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Send file samples when further analysis is required;ExpectedValue', '=', parameters('SendFileSamplesWhenFurtherAnalysisIsRequired'), ',', 'Allow indexing of encrypted files;ExpectedValue', '=', parameters('AllowIndexingOfEncryptedFiles'), ',', 'Allow Telemetry;ExpectedValue', '=', parameters('AllowTelemetry'), ',', 'Allow unencrypted traffic;ExpectedValue', '=', parameters('AllowUnencryptedTraffic'), ',', 'Always install with elevated privileges;ExpectedValue', '=', parameters('AlwaysInstallWithElevatedPrivileges'), ',', 'Always prompt for password upon connection;ExpectedValue', '=', parameters('AlwaysPromptForPasswordUponConnection'), ',', 'Application: Specify the maximum log file size (KB);ExpectedValue', '=', parameters('ApplicationSpecifyTheMaximumLogFileSizeKB'), ',', 'Automatically send memory dumps for OS-generated error reports;ExpectedValue', '=', parameters('AutomaticallySendMemoryDumpsForOSgeneratedErrorReports'), ',', 'Configure Default consent;ExpectedValue', '=', parameters('ConfigureDefaultConsent'), ',', 'Configure Windows SmartScreen;ExpectedValue', '=', parameters('ConfigureWindowsSmartScreen'), ',', 'Disallow Digest authentication;ExpectedValue', '=', parameters('DisallowDigestAuthentication'), ',', 'Disallow WinRM from storing RunAs credentials;ExpectedValue', '=', parameters('DisallowWinRMFromStoringRunAsCredentials'), ',', 'Do not allow passwords to be saved;ExpectedValue', '=', parameters('DoNotAllowPasswordsToBeSaved'), ',', 'Security: Specify the maximum log file size (KB);ExpectedValue', '=', parameters('SecuritySpecifyTheMaximumLogFileSizeKB'), ',', 'Set client connection encryption level;ExpectedValue', '=', parameters('SetClientConnectionEncryptionLevel'), ',', 'Set the default behavior for AutoRun;ExpectedValue', '=', parameters('SetTheDefaultBehaviorForAutoRun'), ',', 'Setup: Specify the maximum log file size (KB);ExpectedValue', '=', parameters('SetupSpecifyTheMaximumLogFileSizeKB'), ',', 'System: Specify the maximum log file size (KB);ExpectedValue', '=', parameters('SystemSpecifyTheMaximumLogFileSizeKB'), ',', 'Turn off Data Execution Prevention for Explorer;ExpectedValue', '=', parameters('TurnOffDataExecutionPreventionForExplorer'), ',', 'Specify the interval to check for definition updates;ExpectedValue', '=', parameters('SpecifyTheIntervalToCheckForDefinitionUpdates')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_WindowsComponents\"},\"SendFileSamplesWhenFurtherAnalysisIsRequired\":{\"value\":\"[parameters('SendFileSamplesWhenFurtherAnalysisIsRequired')]\"},\"AllowIndexingOfEncryptedFiles\":{\"value\":\"[parameters('AllowIndexingOfEncryptedFiles')]\"},\"AllowTelemetry\":{\"value\":\"[parameters('AllowTelemetry')]\"},\"AllowUnencryptedTraffic\":{\"value\":\"[parameters('AllowUnencryptedTraffic')]\"},\"AlwaysInstallWithElevatedPrivileges\":{\"value\":\"[parameters('AlwaysInstallWithElevatedPrivileges')]\"},\"AlwaysPromptForPasswordUponConnection\":{\"value\":\"[parameters('AlwaysPromptForPasswordUponConnection')]\"},\"ApplicationSpecifyTheMaximumLogFileSizeKB\":{\"value\":\"[parameters('ApplicationSpecifyTheMaximumLogFileSizeKB')]\"},\"AutomaticallySendMemoryDumpsForOSgeneratedErrorReports\":{\"value\":\"[parameters('AutomaticallySendMemoryDumpsForOSgeneratedErrorReports')]\"},\"ConfigureDefaultConsent\":{\"value\":\"[parameters('ConfigureDefaultConsent')]\"},\"ConfigureWindowsSmartScreen\":{\"value\":\"[parameters('ConfigureWindowsSmartScreen')]\"},\"DisallowDigestAuthentication\":{\"value\":\"[parameters('DisallowDigestAuthentication')]\"},\"DisallowWinRMFromStoringRunAsCredentials\":{\"value\":\"[parameters('DisallowWinRMFromStoringRunAsCredentials')]\"},\"DoNotAllowPasswordsToBeSaved\":{\"value\":\"[parameters('DoNotAllowPasswordsToBeSaved')]\"},\"SecuritySpecifyTheMaximumLogFileSizeKB\":{\"value\":\"[parameters('SecuritySpecifyTheMaximumLogFileSizeKB')]\"},\"SetClientConnectionEncryptionLevel\":{\"value\":\"[parameters('SetClientConnectionEncryptionLevel')]\"},\"SetTheDefaultBehaviorForAutoRun\":{\"value\":\"[parameters('SetTheDefaultBehaviorForAutoRun')]\"},\"SetupSpecifyTheMaximumLogFileSizeKB\":{\"value\":\"[parameters('SetupSpecifyTheMaximumLogFileSizeKB')]\"},\"SystemSpecifyTheMaximumLogFileSizeKB\":{\"value\":\"[parameters('SystemSpecifyTheMaximumLogFileSizeKB')]\"},\"TurnOffDataExecutionPreventionForExplorer\":{\"value\":\"[parameters('TurnOffDataExecutionPreventionForExplorer')]\"},\"SpecifyTheIntervalToCheckForDefinitionUpdates\":{\"value\":\"[parameters('SpecifyTheIntervalToCheckForDefinitionUpdates')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"SendFileSamplesWhenFurtherAnalysisIsRequired\":{\"type\":\"string\"},\"AllowIndexingOfEncryptedFiles\":{\"type\":\"string\"},\"AllowTelemetry\":{\"type\":\"string\"},\"AllowUnencryptedTraffic\":{\"type\":\"string\"},\"AlwaysInstallWithElevatedPrivileges\":{\"type\":\"string\"},\"AlwaysPromptForPasswordUponConnection\":{\"type\":\"string\"},\"ApplicationSpecifyTheMaximumLogFileSizeKB\":{\"type\":\"string\"},\"AutomaticallySendMemoryDumpsForOSgeneratedErrorReports\":{\"type\":\"string\"},\"ConfigureDefaultConsent\":{\"type\":\"string\"},\"ConfigureWindowsSmartScreen\":{\"type\":\"string\"},\"DisallowDigestAuthentication\":{\"type\":\"string\"},\"DisallowWinRMFromStoringRunAsCredentials\":{\"type\":\"string\"},\"DoNotAllowPasswordsToBeSaved\":{\"type\":\"string\"},\"SecuritySpecifyTheMaximumLogFileSizeKB\":{\"type\":\"string\"},\"SetClientConnectionEncryptionLevel\":{\"type\":\"string\"},\"SetTheDefaultBehaviorForAutoRun\":{\"type\":\"string\"},\"SetupSpecifyTheMaximumLogFileSizeKB\":{\"type\":\"string\"},\"SystemSpecifyTheMaximumLogFileSizeKB\":{\"type\":\"string\"},\"TurnOffDataExecutionPreventionForExplorer\":{\"type\":\"string\"},\"SpecifyTheIntervalToCheckForDefinitionUpdates\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Send file samples when further analysis is required;ExpectedValue\",\"value\":\"[parameters('SendFileSamplesWhenFurtherAnalysisIsRequired')]\"},{\"name\":\"Allow indexing of encrypted files;ExpectedValue\",\"value\":\"[parameters('AllowIndexingOfEncryptedFiles')]\"},{\"name\":\"Allow Telemetry;ExpectedValue\",\"value\":\"[parameters('AllowTelemetry')]\"},{\"name\":\"Allow unencrypted traffic;ExpectedValue\",\"value\":\"[parameters('AllowUnencryptedTraffic')]\"},{\"name\":\"Always install with elevated privileges;ExpectedValue\",\"value\":\"[parameters('AlwaysInstallWithElevatedPrivileges')]\"},{\"name\":\"Always prompt for password upon connection;ExpectedValue\",\"value\":\"[parameters('AlwaysPromptForPasswordUponConnection')]\"},{\"name\":\"Application: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('ApplicationSpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"Automatically send memory dumps for OS-generated error reports;ExpectedValue\",\"value\":\"[parameters('AutomaticallySendMemoryDumpsForOSgeneratedErrorReports')]\"},{\"name\":\"Configure Default consent;ExpectedValue\",\"value\":\"[parameters('ConfigureDefaultConsent')]\"},{\"name\":\"Configure Windows SmartScreen;ExpectedValue\",\"value\":\"[parameters('ConfigureWindowsSmartScreen')]\"},{\"name\":\"Disallow Digest authentication;ExpectedValue\",\"value\":\"[parameters('DisallowDigestAuthentication')]\"},{\"name\":\"Disallow WinRM from storing RunAs credentials;ExpectedValue\",\"value\":\"[parameters('DisallowWinRMFromStoringRunAsCredentials')]\"},{\"name\":\"Do not allow passwords to be saved;ExpectedValue\",\"value\":\"[parameters('DoNotAllowPasswordsToBeSaved')]\"},{\"name\":\"Security: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('SecuritySpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"Set client connection encryption level;ExpectedValue\",\"value\":\"[parameters('SetClientConnectionEncryptionLevel')]\"},{\"name\":\"Set the default behavior for AutoRun;ExpectedValue\",\"value\":\"[parameters('SetTheDefaultBehaviorForAutoRun')]\"},{\"name\":\"Setup: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('SetupSpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"System: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('SystemSpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"Turn off Data Execution Prevention for Explorer;ExpectedValue\",\"value\":\"[parameters('TurnOffDataExecutionPreventionForExplorer')]\"},{\"name\":\"Specify the interval to check for definition updates;ExpectedValue\",\"value\":\"[parameters('SpecifyTheIntervalToCheckForDefinitionUpdates')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Send file samples when further analysis is required;ExpectedValue\",\"value\":\"[parameters('SendFileSamplesWhenFurtherAnalysisIsRequired')]\"},{\"name\":\"Allow indexing of encrypted files;ExpectedValue\",\"value\":\"[parameters('AllowIndexingOfEncryptedFiles')]\"},{\"name\":\"Allow Telemetry;ExpectedValue\",\"value\":\"[parameters('AllowTelemetry')]\"},{\"name\":\"Allow unencrypted traffic;ExpectedValue\",\"value\":\"[parameters('AllowUnencryptedTraffic')]\"},{\"name\":\"Always install with elevated privileges;ExpectedValue\",\"value\":\"[parameters('AlwaysInstallWithElevatedPrivileges')]\"},{\"name\":\"Always prompt for password upon connection;ExpectedValue\",\"value\":\"[parameters('AlwaysPromptForPasswordUponConnection')]\"},{\"name\":\"Application: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('ApplicationSpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"Automatically send memory dumps for OS-generated error reports;ExpectedValue\",\"value\":\"[parameters('AutomaticallySendMemoryDumpsForOSgeneratedErrorReports')]\"},{\"name\":\"Configure Default consent;ExpectedValue\",\"value\":\"[parameters('ConfigureDefaultConsent')]\"},{\"name\":\"Configure Windows SmartScreen;ExpectedValue\",\"value\":\"[parameters('ConfigureWindowsSmartScreen')]\"},{\"name\":\"Disallow Digest authentication;ExpectedValue\",\"value\":\"[parameters('DisallowDigestAuthentication')]\"},{\"name\":\"Disallow WinRM from storing RunAs credentials;ExpectedValue\",\"value\":\"[parameters('DisallowWinRMFromStoringRunAsCredentials')]\"},{\"name\":\"Do not allow passwords to be saved;ExpectedValue\",\"value\":\"[parameters('DoNotAllowPasswordsToBeSaved')]\"},{\"name\":\"Security: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('SecuritySpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"Set client connection encryption level;ExpectedValue\",\"value\":\"[parameters('SetClientConnectionEncryptionLevel')]\"},{\"name\":\"Set the default behavior for AutoRun;ExpectedValue\",\"value\":\"[parameters('SetTheDefaultBehaviorForAutoRun')]\"},{\"name\":\"Setup: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('SetupSpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"System: Specify the maximum log file size (KB);ExpectedValue\",\"value\":\"[parameters('SystemSpecifyTheMaximumLogFileSizeKB')]\"},{\"name\":\"Turn off Data Execution Prevention for Explorer;ExpectedValue\",\"value\":\"[parameters('TurnOffDataExecutionPreventionForExplorer')]\"},{\"name\":\"Specify the interval to check for definition updates;ExpectedValue\",\"value\":\"[parameters('SpecifyTheIntervalToCheckForDefinitionUpdates')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7040a231-fb65-4412-8c0a-b365f4866c24\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7040a231-fb65-4412-8c0a-b365f4866c24\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1254 - Contingency Plan | Resume All Missions / Business Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1254\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/704e136a-4fe0-427c-b829-cd69957f5d2b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"704e136a-4fe0-427c-b829-cd69957f5d2b\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - System'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - System'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesSystem\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7066131b-61a6-4917-a7e4-72e8983f0aa6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7066131b-61a6-4917-a7e4-72e8983f0aa6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1509 - Position Risk Designation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1509\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/70792197-9bfc-4813-905a-bd33993e327f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"70792197-9bfc-4813-905a-bd33993e327f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1541 - Risk Assessment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1541\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/70f6af82-7be6-44aa-9b15-8b9231b2e434\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"70f6af82-7be6-44aa-9b15-8b9231b2e434\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1691 - Information System Monitoring | Automated Tools For Real-Time Analysis\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1691\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/71475fb4-49bd-450b-a1a5-f63894c24725\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"71475fb4-49bd-450b-a1a5-f63894c24725\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1481 - Temperature And Humidity Controls\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1481\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/717a1c78-a267-4f56-ac58-ee6c54dc4339\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"717a1c78-a267-4f56-ac58-ee6c54dc4339\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1129 - Time Stamps | Synchronization With Authoritative Time Source\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1129\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/71bb965d-4047-4623-afd4-b8189a58df5d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"71bb965d-4047-4623-afd4-b8189a58df5d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1395 - System Maintenance Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1395\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7207a023-a517-41c5-9df2-09d4c6845a05\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7207a023-a517-41c5-9df2-09d4c6845a05\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs on which the DSC configuration is not compliant\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows VMs on which the Desired State Configuration (DSC) configuration is not compliant. This policy is only applicable to machines with WMF 4 and above. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDscConfiguration\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7227ebe5-9ff7-47ab-b823-171cd02fb90f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7227ebe5-9ff7-47ab-b823-171cd02fb90f\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Administrative Templates - Network'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - Network'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdministrativeTemplatesNetwork\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7229bd6a-693d-478a-87f0-1dc1af06f3b8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7229bd6a-693d-478a-87f0-1dc1af06f3b8\"},{\"properties\":{\"displayName\":\"Ensure that 'Python version' is the latest, if used as a part of the Function app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for Python software either due to security flaws or to include additional functionality. Using the latest Python version for Function apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"WindowsPythonLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Latest Python version\",\"description\":\"Latest supported Python version for App Services\"},\"defaultValue\":\"3.6\"},\"LinuxPythonLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Linux Latest Python version\",\"description\":\"Latest supported Python version for App Services\"},\"defaultValue\":\"3.8\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"PYTHON\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"[concat('PYTHON|', parameters('LinuxPythonLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"[parameters('WindowsPythonLatestVersion')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7238174a-fd10-4ef0-817e-fc820a951d73\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7238174a-fd10-4ef0-817e-fc820a951d73\"},{\"properties\":{\"displayName\":\"Ensure that 'PHP version' is the latest, if used as a part of the WEB app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for PHP software either due to security flaws or to include additional functionality. Using the latest PHP version for web apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"PHPLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Latest PHP version\",\"description\":\"Latest supported PHP version for App Services\"},\"defaultValue\":\"7.3\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"PHP\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"[concat('PHP|', parameters('PHPLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"[parameters('PHPLatestVersion')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7261b898-8a84-4db8-9e04-18527132abb3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7261b898-8a84-4db8-9e04-18527132abb3\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that allow re-use of the previous 24 passwords\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that allow re-use of the previous 24 passwords. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"EnforcePasswordHistory\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"EnforcePasswordHistory\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/726671ac-c4de-4908-8c7d-6043ae62e3b6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"726671ac-c4de-4908-8c7d-6043ae62e3b6\"},{\"properties\":{\"displayName\":\"Add a tag to resource groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Adds the specified tag and value when any resource group missing this tag is created or updated. Existing resource groups can be remediated by triggering a remediation task. If the tag exists with a different value it will not be changed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions/resourceGroups\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"add\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[parameters('tagValue')]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/726aca4c-86e9-4b04-b0c5-073027359532\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"726aca4c-86e9-4b04-b0c5-073027359532\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1524 - Personnel Transfer\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1524\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/72f1cb4e-2439-4fe8-88ea-b8671ce3c268\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"72f1cb4e-2439-4fe8-88ea-b8671ce3c268\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1393 - Information Spillage Response | Exposure To Unauthorized Personnel\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1393\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/731856d8-1598-4b75-92de-7d46235747c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"731856d8-1598-4b75-92de-7d46235747c0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1101 - Audit And Accountability Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1101\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7327b708-f0e0-457d-9d2a-527fcc9c9a65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7327b708-f0e0-457d-9d2a-527fcc9c9a65\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1456 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1456\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/733ba9e3-9e7c-440a-a7aa-6196a90a2870\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"733ba9e3-9e7c-440a-a7aa-6196a90a2870\"},{\"properties\":{\"displayName\":\"Deploy Workflow Automation for Azure Security Center recommendations\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable automation of Azure Security Center recommendations. This policy deploys a workflow automation with your conditions and triggers on the assigned scope. To deploy this policy on newly created subscriptions, open the Compliance tab, select the relevant non-compliant assignment and create a remediation task.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"automationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Automation name\",\"description\":\"This is the automation name.\"}},\"resourceGroupName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group name\",\"description\":\"The resource group name where the workflow automation is created. If you enter a name for a resource group that doesn't exist, it'll be created in the subscription.\"}},\"resourceGroupLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group location\",\"description\":\"The location where the resource group and the workflow automation are created.\",\"strongType\":\"location\"}},\"recommendationNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation IDs\",\"description\":\"For all recommendations, leave empty. For specific recommendations, enter a list of recommendation IDs separated by semicolons (';'). Recommendation IDs are available through the Assessments API (https://docs.microsoft.com/en-us/rest/api/securitycenter/assessments), or Azure Resource Graph Explorer (https://portal.azure.com/#blade/HubsExtension/ArgQueryBlade), choose securityresources and microsoft.security/assessments.\"},\"defaultValue\":[]},\"recommendationSeverities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation severities\",\"description\":\"Determines recommendation severities. Example: High;Medium;Low;\"},\"allowedValues\":[\"High\",\"Medium\",\"Low\"],\"defaultValue\":[\"High\",\"Medium\",\"Low\"]},\"recommendationStates\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation states\",\"description\":\"Determines recommendation states. Recommendations with unhealthy state require your attention to resolve. When a recommendation state is healthy, it no longer applies to the resource as Security Center detects it as healthy. A recommendation is not-applicable if, for example, it was disabled in the Security Policy. Example: Healthy;Unhealthy;Not Applicable;\"},\"allowedValues\":[\"Healthy\",\"Unhealthy\",\"Not Applicable\"],\"defaultValue\":[\"Healthy\",\"Unhealthy\",\"Not Applicable\"]},\"logicAppResourceId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Logic App\",\"description\":\"The Logic App that is triggered. If you do not already have a logic app, visit Logic Apps to create one (https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Logic%2Fworkflows).\",\"strongType\":\"Microsoft.Logic/workflows\",\"assignPermissions\":true}},\"logicAppTrigger\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Logic app trigger\",\"description\":\"The trigger connector of the logic app that is triggered. Possible values: 'Manual (Incoming HTTP request)', 'When an Azure Security Center Recommendation is created or triggered'.\"},\"allowedValues\":[\"Manual (Incoming HTTP request)\",\"When an Azure Security Center Recommendation is created or triggered\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Security/automations\",\"name\":\"[parameters('automationName')]\",\"existenceScope\":\"resourcegroup\",\"ResourceGroupName\":\"[parameters('resourceGroupName')]\",\"deploymentScope\":\"subscription\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"location\":\"westeurope\",\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"automationName\":{\"type\":\"string\"},\"resourceGroupName\":{\"type\":\"string\"},\"resourceGroupLocation\":{\"type\":\"string\"},\"recommendationNames\":{\"type\":\"array\"},\"recommendationSeverities\":{\"type\":\"array\"},\"recommendationStates\":{\"type\":\"array\"},\"logicAppResourceId\":{\"type\":\"string\"},\"logicAppTrigger\":{\"type\":\"string\"},\"guidValue\":{\"type\":\"string\",\"defaultValue\":\"[newGuid()]\"}},\"variables\":{\"scopeDescription\":\"scope for subscription {0}\",\"recommendationNamesLength\":\"[length(parameters('recommendationNames'))]\",\"recommendationSeveritiesLength\":\"[length(parameters('recommendationSeverities'))]\",\"recommendationStatesLength\":\"[length(parameters('recommendationStates'))]\",\"recommendationNamesLengthIfEmpty\":\"[if(equals(variables('recommendationNamesLength'), 0), 1, variables('recommendationNamesLength'))]\",\"recommendationSeveritiesLengthIfEmpty\":\"[if(equals(variables('recommendationSeveritiesLength'), 0), 1, variables('recommendationSeveritiesLength'))]\",\"recommendationStatesLengthIfEmpty\":\"[if(equals(variables('recommendationStatesLength'), 0), 1, variables('recommendationStatesLength'))]\",\"totalRuleCombinationsForOneRecommendationName\":\"[mul(variables('recommendationSeveritiesLengthIfEmpty'),variables('recommendationStatesLengthIfEmpty'))]\",\"totalRuleCombinationsForOneRecommendationSeverity\":\"[variables('recommendationStatesLengthIfEmpty')]\",\"totalRuleCombinationsForOneRecommendationState\":1,\"stateMap\":{\"Healthy\":\"healthy\",\"Unhealthy\":\"unhealthy\",\"Not Applicable\":\"notapplicable\"},\"triggerMap\":{\"Manual (Incoming HTTP request)\":\"manual\",\"When an Azure Security Center Recommendation is created or triggered\":\"When_an_Azure_Security_Center_Recommendation_is_created_or_triggered\"}},\"resources\":[{\"name\":\"[parameters('resourceGroupName')]\",\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2019-10-01\",\"location\":\"[parameters('resourceGroupLocation')]\",\"tags\":{},\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2019-10-01\",\"name\":\"[concat('nestedAutomationDeployment', '_', parameters('guidValue'))]\",\"resourceGroup\":\"[parameters('resourceGroupName')]\",\"dependsOn\":[\"[resourceId('Microsoft.Resources/resourceGroups/', parameters('resourceGroupName'))]\"],\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"tags\":{},\"apiVersion\":\"2019-01-01-preview\",\"location\":\"[parameters('resourceGroupLocation')]\",\"name\":\"[parameters('automationName')]\",\"type\":\"Microsoft.Security/automations\",\"dependsOn\":[],\"properties\":{\"description\":\"Workflow Automation for Azure Security Center recommendations via policy\",\"isEnabled\":true,\"scopes\":[{\"description\":\"[replace(variables('scopeDescription'),'{0}', subscription().subscriptionId)]\",\"scopePath\":\"[subscription().id]\"}],\"sources\":[{\"eventSource\":\"Assessments\",\"copy\":[{\"name\":\"ruleSets\",\"count\":\"[mul(variables('recommendationNamesLengthIfEmpty'), mul(variables('recommendationSeveritiesLengthIfEmpty'),variables('recommendationStatesLengthIfEmpty')))]\",\"input\":{\"rules\":[{\"propertyJPath\":\"[if(equals(variables('recommendationNamesLength'), 0), 'type', 'name')]\",\"propertyType\":\"string\",\"expectedValue\":\"[if(equals(variables('recommendationNamesLength'), 0), 'Microsoft.Security/assessments', parameters('recommendationNames')[mod(div(copyIndex('ruleSets'), variables('totalRuleCombinationsForOneRecommendationName')), variables('recommendationNamesLength'))])]\",\"operator\":\"Contains\"},{\"propertyJPath\":\"properties.metadata.severity\",\"propertyType\":\"string\",\"expectedValue\":\"[parameters('recommendationSeverities')[mod(div(copyIndex('ruleSets'), variables('totalRuleCombinationsForOneRecommendationSeverity')), variables('recommendationSeveritiesLength'))]]\",\"operator\":\"Equals\"},{\"propertyJPath\":\"properties.status.code\",\"propertyType\":\"string\",\"expectedValue\":\"[variables('stateMap')[parameters('recommendationStates')[mod(div(copyIndex('ruleSets'), variables('totalRuleCombinationsForOneRecommendationState')), variables('recommendationStatesLength'))]]]\",\"operator\":\"Contains\"}]}}]}],\"actions\":[{\"actionType\":\"LogicApp\",\"logicAppResourceId\":\"[parameters('logicAppResourceId')]\",\"uri\":\"[listCallbackUrl(concat(parameters('logicAppResourceId'), '/triggers/', variables('triggerMap')[parameters('logicAppTrigger')]),'2016-06-01').value]\"}]}}]}}}]},\"parameters\":{\"automationName\":{\"value\":\"[parameters('automationName')]\"},\"resourceGroupName\":{\"value\":\"[parameters('resourceGroupName')]\"},\"resourceGroupLocation\":{\"value\":\"[parameters('resourceGroupLocation')]\"},\"recommendationNames\":{\"value\":\"[parameters('recommendationNames')]\"},\"recommendationSeverities\":{\"value\":\"[parameters('recommendationSeverities')]\"},\"recommendationStates\":{\"value\":\"[parameters('recommendationStates')]\"},\"logicAppResourceId\":{\"value\":\"[parameters('logicAppResourceId')]\"},\"logicAppTrigger\":{\"value\":\"[parameters('logicAppTrigger')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/73d6ab6c-2475-4850-afd6-43795f3492ef\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"73d6ab6c-2475-4850-afd6-43795f3492ef\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1581 - Information System Documentation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1581\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/742b549b-7a25-465f-b83c-ea1ffb4f4e0e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"742b549b-7a25-465f-b83c-ea1ffb4f4e0e\"},{\"properties\":{\"displayName\":\"Allowed storage account SKUs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables you to specify a set of storage account SKUs that your organization can deploy.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Storage\"},\"parameters\":{\"listOfAllowedSKUs\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of SKUs that can be specified for storage accounts.\",\"displayName\":\"Allowed SKUs\",\"strongType\":\"StorageSKUs\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"not\":{\"field\":\"Microsoft.Storage/storageAccounts/sku.name\",\"in\":\"[parameters('listOfAllowedSKUs')]\"}}]},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7433c107-6db4-4ad1-b57a-a76dce0154a1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7433c107-6db4-4ad1-b57a-a76dce0154a1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1631 - Boundary Protection | Deny By Default / Allow By Exception\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1631\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/74ae9b8e-e7bb-4c9c-992f-c535282f7a2c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"74ae9b8e-e7bb-4c9c-992f-c535282f7a2c\"},{\"properties\":{\"displayName\":\"Ensure that 'Python version' is the latest, if used as a part of the Api app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for Python software either due to security flaws or to include additional functionality. Using the latest Python version for Api apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"WindowsPythonLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Latest Python version\",\"description\":\"Latest supported Python version for App Services\"},\"defaultValue\":\"3.6\"},\"LinuxPythonLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Linux Latest Python version\",\"description\":\"Latest supported Python version for App Services\"},\"defaultValue\":\"3.8\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"PYTHON\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"[concat('PYTHON|', parameters('LinuxPythonLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.pythonVersion\",\"equals\":\"[parameters('WindowsPythonLatestVersion')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/74c3584d-afae-46f7-a20a-6f8adba71a16\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"74c3584d-afae-46f7-a20a-6f8adba71a16\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1417 - Nonlocal Maintenance | Comparable Security / Sanitization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1417\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7522ed84-70d5-4181-afc0-21e50b1b6d0e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7522ed84-70d5-4181-afc0-21e50b1b6d0e\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit enabling of diagnostic logs in App Services\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit enabling of diagnostic logs on the app. This enables you to recreate activity trails for investigation purposes if a security incident occurs or your network is compromised\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"App Service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites/config\"},{\"field\":\"name\",\"equals\":\"web\"},{\"anyOf\":[{\"field\":\"Microsoft.Web/sites/config/detailedErrorLoggingEnabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Web/sites/config/httpLoggingEnabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Web/sites/config/requestTracingEnabled\",\"notEquals\":\"true\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/752c6934-9bcc-4749-b004-655e676ae2ac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"752c6934-9bcc-4749-b004-655e676ae2ac\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1468 - Visitor Access Records | Automated Records Maintenance / Review\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1468\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/75603f96-80a1-4757-991d-5a1221765ddd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"75603f96-80a1-4757-991d-5a1221765ddd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1053 - Session Lock | Pattern-Hiding Displays\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1053\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7582b19c-9dba-438e-aed8-ede59ac35ba3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7582b19c-9dba-438e-aed8-ede59ac35ba3\"},{\"properties\":{\"displayName\":\"Private endpoint should be enabled for MySQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MySQL servers not configured to use a private endpoint. For more details, visit https://aka.ms/mysqlprivatelink.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforMySQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforMySQL/servers/privateEndpointConnections\",\"existenceCondition\":{\"field\":\"Microsoft.DBforMySQL/servers/privateEndpointConnections/privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7595c971-233d-4bcf-bd18-596129188c49\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7595c971-233d-4bcf-bd18-596129188c49\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1459 - Access Control For Transmission Medium\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1459\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/75cc73c7-5cdb-479d-a06f-7b4d0dbb1da0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"75cc73c7-5cdb-479d-a06f-7b4d0dbb1da0\"},{\"properties\":{\"displayName\":\"Vulnerabilities should be remediated by a Vulnerability Assessment solution\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Monitors vulnerabilities detected by Vulnerability Assessment solution and VMs without a Vulnerability Assessment solution in Azure Security Center as recommendations.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"vulnerabilityAssessment\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/760a85ff-6162-42b3-8d70-698e268f648c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"760a85ff-6162-42b3-8d70-698e268f648c\"},{\"properties\":{\"displayName\":\"Deploy Dependency agent for Linux virtual machine scale sets\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Dependency agent for Linux virtual machine scale sets if the VM Image (OS) is in the list defined and the agent is not installed. Note: if your scale set upgradePolicy is set to Manual, you need to apply the extension to the all virtual machines in the set by calling upgrade on them. In CLI this would be az vmss update-instances.\",\"metadata\":{\"version\":\"1.1.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude')]\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"14.04.0-LTS\",\"14.04.1-LTS\",\"14.04.5-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"16.04-LTS\",\"16.04.0-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"18.04-LTS\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"12-SP2\",\"12-SP3\",\"12-SP4\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"DependencyAgentLinux\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"DependencyAgent\",\"vmExtensionPublisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"vmExtensionType\":\"DependencyAgentLinux\",\"vmExtensionTypeHandlerVersion\":\"9.7\"},\"resources\":[{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"apiVersion\":\"2019-12-01\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"typeHandlerVersion\":\"[variables('vmExtensionTypeHandlerVersion')]\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for: ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/765266ab-e40e-4c61-bcb2-5a5275d0b7c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"765266ab-e40e-4c61-bcb2-5a5275d0b7c0\"},{\"properties\":{\"displayName\":\"Private endpoint connections on Azure SQL Database should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Private endpoint connections enforce secure communication by enabling private connectivity to Azure SQL Database.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"count\":{\"field\":\"Microsoft.Sql/servers/privateEndpointConnections[*]\",\"where\":{\"field\":\"Microsoft.Sql/servers/privateEndpointConnections[*].privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}},\"less\":1}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7698e800-9299-47a6-b3b6-5a0fee576eed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7698e800-9299-47a6-b3b6-5a0fee576eed\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1055 - Session Termination| User-Initiated Logouts / Message Displays\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1055\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/769efd9b-3587-4e22-90ce-65ddcd5bd969\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"769efd9b-3587-4e22-90ce-65ddcd5bd969\"},{\"properties\":{\"displayName\":\"Audit delegation of scopes to a managing tenant\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit delegation of scopes to a managing tenant via Azure Lighthouse.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Lighthouse\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ManagedServices/registrationAssignments\"},{\"value\":\"true\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/76bed37b-484f-430f-a009-fd7592dff818\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"76bed37b-484f-430f-a009-fd7592dff818\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1058 - Permitted Actions Without Identification Or Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1058\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/76e85d08-8fbb-4112-a1c1-93521e6a9254\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"76e85d08-8fbb-4112-a1c1-93521e6a9254\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1508 - Position Risk Designation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1508\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/76f500cc-4bca-4583-bda1-6d084dc21086\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"76f500cc-4bca-4583-bda1-6d084dc21086\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1423 - Maintenance Personnel | Individuals Without Appropriate Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1423\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7741669e-d4f6-485a-83cb-e70ce7cbbc20\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7741669e-d4f6-485a-83cb-e70ce7cbbc20\"},{\"properties\":{\"displayName\":\"Azure subscriptions should have a log profile for Activity Log\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy ensures if a log profile is enabled for exporting activity logs. It audits if there is no log profile created to export the logs either to a storage account or to an event hub.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/logProfiles\",\"existenceCondition\":{\"field\":\"Microsoft.Insights/logProfiles/categories\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7796937f-307b-4598-941c-67d3a05ebfe7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7796937f-307b-4598-941c-67d3a05ebfe7\"},{\"properties\":{\"displayName\":\"Virtual network firewall rule on Azure SQL Database should be enabled to allow traffic from the specified subnet\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Virtual network based firewall rules are used to enable traffic from a specific subnet to Azure SQL Database while ensuring the traffic stays within the Azure boundary.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"subnetId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Subnet ID\",\"strongType\":\"Microsoft.Network/virtualNetworks/subnets\",\"description\":\"The resource ID of the virtual network subnet that should have a rule enabled. Example: /subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/Default/providers/Microsoft.Network/virtualNetworks/testvnet/subnets/testsubnet\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"AuditIfNotExists\",\"details\":{\"type\":\"Microsoft.Sql/servers/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/virtualNetworkRules/virtualNetworkSubnetId\",\"equals\":\"[parameters('subnetId')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/77e8b146-0078-4fb2-b002-e112381199f0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"77e8b146-0078-4fb2-b002-e112381199f0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1336 - Authenticator Management | Pki-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1336\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/77f56280-e367-432a-a3b9-8ca2aa636a26\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"77f56280-e367-432a-a3b9-8ca2aa636a26\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1258 - Contingency Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1258\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7814506c-382c-4d33-a142-249dd4a0dbff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7814506c-382c-4d33-a142-249dd4a0dbff\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1178 - Baseline Configuration | Reviews And Updates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1178\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7818b8f4-47c6-441a-90ae-12ce04e99893\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7818b8f4-47c6-441a-90ae-12ce04e99893\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1057 - Permitted Actions Without Identification Or Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1057\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/78255758-6d45-4bf0-a005-7016bc03b13c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"78255758-6d45-4bf0-a005-7016bc03b13c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1700 - Information System Monitoring | Unauthorized Network Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1700\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7831b4ba-c3f4-4cb1-8c11-ef8d59438cd5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7831b4ba-c3f4-4cb1-8c11-ef8d59438cd5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1010 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1010\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/784663a8-1eb0-418a-a98c-24d19bc1bb62\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"784663a8-1eb0-418a-a98c-24d19bc1bb62\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1216 - Least Functionality | Periodic Review\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1216\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7894fe6a-f5cb-44c8-ba90-c3f254ff9484\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7894fe6a-f5cb-44c8-ba90-c3f254ff9484\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1639 - Boundary Protection | Isolation Of Information System Components\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1639\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/78e8e649-50f6-4fe3-99ac-fedc2e63b03f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"78e8e649-50f6-4fe3-99ac-fedc2e63b03f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1647 - Cryptographic Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1647\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/791cfc15-6974-42a0-9f4c-2d4b82f4a78c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"791cfc15-6974-42a0-9f4c-2d4b82f4a78c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1510 - Position Risk Designation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1510\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/79da5b09-0e7e-499e-adda-141b069c7998\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"79da5b09-0e7e-499e-adda-141b069c7998\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1384 - Information Spillage Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1384\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/79fbc228-461c-4a45-9004-a865ca0728a7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"79fbc228-461c-4a45-9004-a865ca0728a7\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows Server VMs on which Windows Serial Console is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows Server virtual machines on which Windows Serial Console is not enabled. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"EMSPortNumber\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"EMS Port Number\",\"description\":\"An integer indicating the COM port to be used for the Emergency Management Services (EMS) console redirection. For more information on EMS settings, please visit https://aka.ms/gcpolwsc\"},\"allowedValues\":[\"1\",\"2\",\"3\",\"4\"],\"defaultValue\":\"1\"},\"EMSBaudRate\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"EMS Baud Rate\",\"description\":\"An integer indicating the baud rate to be used for the Emergency Management Services (EMS) console redirection. For more information on EMS settings, please visit https://aka.ms/gcpolwsc\"},\"allowedValues\":[\"9600\",\"19200\",\"38400\",\"57600\",\"115200\"],\"defaultValue\":\"115200\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsSerialConsole\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsSerialConsole]WindowsSerialConsole;EMSPortNumber', '=', parameters('EMSPortNumber'), ',', '[WindowsSerialConsole]WindowsSerialConsole;EMSBaudRate', '=', parameters('EMSBaudRate')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsSerialConsole\"},\"EMSPortNumber\":{\"value\":\"[parameters('EMSPortNumber')]\"},\"EMSBaudRate\":{\"value\":\"[parameters('EMSBaudRate')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"EMSPortNumber\":{\"type\":\"string\"},\"EMSBaudRate\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsSerialConsole]WindowsSerialConsole;EMSPortNumber\",\"value\":\"[parameters('EMSPortNumber')]\"},{\"name\":\"[WindowsSerialConsole]WindowsSerialConsole;EMSBaudRate\",\"value\":\"[parameters('EMSBaudRate')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsSerialConsole]WindowsSerialConsole;EMSPortNumber\",\"value\":\"[parameters('EMSPortNumber')]\"},{\"name\":\"[WindowsSerialConsole]WindowsSerialConsole;EMSBaudRate\",\"value\":\"[parameters('EMSBaudRate')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7a031c68-d6ab-406e-a506-697a19c634b0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7a031c68-d6ab-406e-a506-697a19c634b0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1093 - Role-Based Security Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1093\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7a0bdeeb-15f4-47e8-a1da-9f769f845fdf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7a0bdeeb-15f4-47e8-a1da-9f769f845fdf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1708 - Security Function Verification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1708\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7a1e2c88-13de-4959-8ee7-47e3d74f1f48\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7a1e2c88-13de-4959-8ee7-47e3d74f1f48\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1289 - Information System Backup\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1289\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7a724864-956a-496c-b778-637cb1d762cf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7a724864-956a-496c-b778-637cb1d762cf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1687 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1687\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7a87fc7f-301e-49f3-ba2a-4d74f424fa97\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7a87fc7f-301e-49f3-ba2a-4d74f424fa97\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1061 - Remote Access | Automated Monitoring / Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1061\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7ac22808-a2e8-41c4-9d46-429b50738914\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7ac22808-a2e8-41c4-9d46-429b50738914\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1492 - System Security Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1492\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7ad5f307-e045-46f7-8214-5bdb7e973737\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7ad5f307-e045-46f7-8214-5bdb7e973737\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1636 - Boundary Protection | Isolation Of Security Tools / Mechanisms / Support Components\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1636\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7b694eed-7081-43c6-867c-41c76c961043\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7b694eed-7081-43c6-867c-41c76c961043\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Virtual Machine Scale Sets should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"It is recommended to enable Logs so that activity trail can be recreated when investigations are required in the event of an incident or a compromise.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"IaaSDiagnostics\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Diagnostics\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"LinuxDiagnostic\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"in\":[\"Microsoft.OSTCExtensions\",\"Microsoft.Azure.Diagnostics\"]}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7c1b1214-f927-48bf-8882-84f0af6588b1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7c1b1214-f927-48bf-8882-84f0af6588b1\"},{\"properties\":{\"displayName\":\"[Deprecated]: Require blob encryption for storage accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy ensures blob encryption for storage accounts is turned on. It only applies to Microsoft.Storage resource types, not other storage providers. This policy is deprecated because storage blob encryption is now enabled by default, and can no longer be disabled.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Storage\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"field\":\"Microsoft.Storage/storageAccounts/enableBlobEncryption\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7c5a74bf-ae94-4a74-8fcf-644d1e0e6e6f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7c5a74bf-ae94-4a74-8fcf-644d1e0e6e6f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1143 - Security Assessment And Authorization Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1143\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7c6de11b-5f51-4f7c-8d83-d2467c8a816e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7c6de11b-5f51-4f7c-8d83-d2467c8a816e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1051 - Session Lock\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1051\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7cac6ee9-b58b-40c8-a5ce-f0efc3d9b339\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7cac6ee9-b58b-40c8-a5ce-f0efc3d9b339\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1279 - Telecommunications Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1279\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7d00bcd6-963d-4c02-ad8e-b45fa50bf3b0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7d00bcd6-963d-4c02-ad8e-b45fa50bf3b0\"},{\"properties\":{\"displayName\":\"Azure Cache for Redis should reside within a virtual network\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Azure Cache for Redis has the ability to reside within a virtual network, which is a way for the resource to have a non-public endpoint controlled and managed by the user.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cache\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match.\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Cache/redis\"},{\"field\":\"Microsoft.Cache/Redis/subnetId\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7d092e0a-7acd-40d2-a975-dca21cae48c4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7d092e0a-7acd-40d2-a975-dca21cae48c4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1109 - Content Of Audit Records | Centralized Management Of Planned Audit Record Content\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1109\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7d9ffa23-ad92-4d0d-b1f4-7db274cc2aec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7d9ffa23-ad92-4d0d-b1f4-7db274cc2aec\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1201 - Security Impact Analysis | Separate Test Environments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1201\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7daef997-fdd3-461b-8807-a608a6dd70f1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7daef997-fdd3-461b-8807-a608a6dd70f1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1471 - Emergency Shutoff\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1471\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7dd0e9ce-1772-41fb-a50a-99977071f916\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7dd0e9ce-1772-41fb-a50a-99977071f916\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that have the specified applications installed. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"NotInstalledApplication\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7e56b49b-5990-4159-a734-511ea19b731c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7e56b49b-5990-4159-a734-511ea19b731c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1011 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1011\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7e6a54f3-883f-43d5-87c4-172dfd64a1f5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7e6a54f3-883f-43d5-87c4-172dfd64a1f5\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that have not restarted within the specified number of days\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that have not restarted within the specified number of days. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MachineLastBootUpTime\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7e84ba44-6d03-46fd-950e-5efa5a1112fa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7e84ba44-6d03-46fd-950e-5efa5a1112fa\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1692 - Information System Monitoring | Inbound And Outbound Communications Traffic\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1692\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7ecda928-9df4-4dd7-8f44-641a91e470e8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7ecda928-9df4-4dd7-8f44-641a91e470e8\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not have the password complexity setting enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not have the password complexity setting enabled. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordMustMeetComplexityRequirements\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"PasswordMustMeetComplexityRequirements\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7ed40801-8a0f-4ceb-85c0-9fd25c1d61a8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7ed40801-8a0f-4ceb-85c0-9fd25c1d61a8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1191 - Configuration Change Control | Automated Document / Notification / Prohibition Of Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1191\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7f26a61b-a74d-467c-99cf-63644db144f7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7f26a61b-a74d-467c-99cf-63644db144f7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1520 - Personnel Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1520\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7f2c513b-eb16-463b-b469-c10e5fa94f0a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7f2c513b-eb16-463b-b469-c10e5fa94f0a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1126 - Audit Reduction And Report Generation | Automatic Processing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1126\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7f37f71b-420f-49bf-9477-9c0196974ecf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7f37f71b-420f-49bf-9477-9c0196974ecf\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Privilege Use'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Privilege Use'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesPrivilegeUse\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7f4e96d1-e4f3-4dbb-b767-33ca4df8df7c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7f4e96d1-e4f3-4dbb-b767-33ca4df8df7c\"},{\"properties\":{\"displayName\":\"Audit diagnostic setting\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit diagnostic setting for selected resource types\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfResourceTypes\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Resource Types\",\"strongType\":\"resourceTypes\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":\"[parameters('listOfResourceTypes')]\"},\"then\":{\"effect\":\"AuditIfNotExists\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7f89b1eb-583c-429a-8828-af049802c1d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7f89b1eb-583c-429a-8828-af049802c1d9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1117 - Audit Review, Analysis, And Reporting | Process Integration\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1117\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7fbfe680-6dbb-4037-963c-a621c5635902\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7fbfe680-6dbb-4037-963c-a621c5635902\"},{\"properties\":{\"displayName\":\"Advanced data security should be enabled on Azure SQL Database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced data security provides functionality for surfacing and mitigating potential database vulnerabilities, detecting anomalous activities that could indicate a threat on SQL database and discovering and classifying sensitive data.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"SqlServers\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7fe3b40f-802b-4cdd-8bd4-fd799c948cc2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7fe3b40f-802b-4cdd-8bd4-fd799c948cc2\"},{\"properties\":{\"displayName\":\"SQL Auditing settings should have Action-Groups configured to capture critical activities\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"The AuditActionsAndGroups property should contain at least SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP, FAILED_DATABASE_AUTHENTICATION_GROUP, BATCH_COMPLETED_GROUP to ensure a thorough audit logging\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/auditingSettings\",\"name\":\"default\",\"existenceCondition\":{\"allOf\":[{\"not\":{\"field\":\"Microsoft.Sql/servers/auditingSettings/auditActionsAndGroups[*]\",\"notEquals\":\"SUCCESSFUL_DATABASE_AUTHENTICATION_GROUP\"}},{\"not\":{\"field\":\"Microsoft.Sql/servers/auditingSettings/auditActionsAndGroups[*]\",\"notEquals\":\"FAILED_DATABASE_AUTHENTICATION_GROUP\"}},{\"not\":{\"field\":\"Microsoft.Sql/servers/auditingSettings/auditActionsAndGroups[*]\",\"notEquals\":\"BATCH_COMPLETED_GROUP\"}}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7ff426e2-515f-405a-91c8-4f2333442eb5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7ff426e2-515f-405a-91c8-4f2333442eb5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1703 - Security Alerts, Advisories, And Directives\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1703\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/804faf7d-b687-40f7-9f74-79e28adf4205\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"804faf7d-b687-40f7-9f74-79e28adf4205\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1303 - Identification And Authentication (Org. Users) | Local Access To Privileged Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1303\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/80ca0a27-918a-4604-af9e-723a27ee51e8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"80ca0a27-918a-4604-af9e-723a27ee51e8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1505 - Information Security Architecture\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1505\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/813a10a7-3943-4fe3-8678-00dc52db5490\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"813a10a7-3943-4fe3-8678-00dc52db5490\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1614 - Developer Security Architecture And Design\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1614\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8154e3b3-cc52-40be-9407-7756581d71f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8154e3b3-cc52-40be-9407-7756581d71f6\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'User Rights Assignment'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'User Rights Assignment'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"UsersOrGroupsThatMayAccessThisComputerFromTheNetwork\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may access this computer from the network\",\"description\":\"Specifies which remote users on the network are permitted to connect to the computer. This does not include Remote Desktop Connection.\"},\"defaultValue\":\"Administrators, Authenticated Users\"},\"UsersOrGroupsThatMayLogOnLocally\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may log on locally\",\"description\":\"Specifies which users or groups can interactively log on to the computer. Users who attempt to log on via Remote Desktop Connection or IIS also require this user right.\"},\"defaultValue\":\"Administrators\"},\"UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may log on through Remote Desktop Services\",\"description\":\"Specifies which users or groups are permitted to log on as a Terminal Services client, Remote Desktop, or for Remote Assistance.\"},\"defaultValue\":\"Administrators, Remote Desktop Users\"},\"UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that are denied access to this computer from the network\",\"description\":\"Specifies which users or groups are explicitly prohibited from connecting to the computer across the network.\"},\"defaultValue\":\"Guests\"},\"UsersOrGroupsThatMayManageAuditingAndSecurityLog\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may manage auditing and security log\",\"description\":\"Specifies users and groups permitted to change the auditing options for files and directories and clear the Security log.\"},\"defaultValue\":\"Administrators\"},\"UsersOrGroupsThatMayBackUpFilesAndDirectories\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may back up files and directories\",\"description\":\"Specifies users and groups allowed to circumvent file and directory permissions to back up the system.\"},\"defaultValue\":\"Administrators, Backup Operators\"},\"UsersOrGroupsThatMayChangeTheSystemTime\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may change the system time\",\"description\":\"Specifies which users and groups are permitted to change the time and date on the internal clock of the computer.\"},\"defaultValue\":\"Administrators, LOCAL SERVICE\"},\"UsersOrGroupsThatMayChangeTheTimeZone\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may change the time zone\",\"description\":\"Specifies which users and groups are permitted to change the time zone of the computer.\"},\"defaultValue\":\"Administrators, LOCAL SERVICE\"},\"UsersOrGroupsThatMayCreateATokenObject\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may create a token object\",\"description\":\"Specifies which users and groups are permitted to create an access token, which may provide elevated rights to access sensitive data.\"},\"defaultValue\":\"No One\"},\"UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that are denied logging on as a batch job\",\"description\":\"Specifies which users and groups are explicitly not permitted to log on to the computer as a batch job (i.e. scheduled task).\"},\"defaultValue\":\"Guests\"},\"UsersAndGroupsThatAreDeniedLoggingOnAsAService\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that are denied logging on as a service\",\"description\":\"Specifies which service accounts are explicitly not permitted to register a process as a service.\"},\"defaultValue\":\"Guests\"},\"UsersAndGroupsThatAreDeniedLocalLogon\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that are denied local logon\",\"description\":\"Specifies which users and groups are explicitly not permitted to log on to the computer.\"},\"defaultValue\":\"Guests\"},\"UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that are denied log on through Remote Desktop Services\",\"description\":\"Specifies which users and groups are explicitly not permitted to log on to the computer via Terminal Services/Remote Desktop Client.\"},\"defaultValue\":\"Guests\"},\"UserAndGroupsThatMayForceShutdownFromARemoteSystem\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"User and groups that may force shutdown from a remote system\",\"description\":\"Specifies which users and groups are permitted to shut down the computer from a remote location on the network.\"},\"defaultValue\":\"Administrators\"},\"UsersAndGroupsThatMayRestoreFilesAndDirectories\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that may restore files and directories\",\"description\":\"Specifies which users and groups are permitted to bypass file, directory, registry, and other persistent object permissions when restoring backed up files and directories.\"},\"defaultValue\":\"Administrators, Backup Operators\"},\"UsersAndGroupsThatMayShutDownTheSystem\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users and groups that may shut down the system\",\"description\":\"Specifies which users and groups who are logged on locally to the computers in your environment are permitted to shut down the operating system with the Shut Down command.\"},\"defaultValue\":\"Administrators\"},\"UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Users or groups that may take ownership of files or other objects\",\"description\":\"Specifies which users and groups are permitted to take ownership of files, folders, registry keys, processes, or threads. This user right bypasses any permissions that are in place to protect objects to give ownership to the specified user.\"},\"defaultValue\":\"Administrators\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_UserRightsAssignment\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Access this computer from the network;ExpectedValue', '=', parameters('UsersOrGroupsThatMayAccessThisComputerFromTheNetwork'), ',', 'Allow log on locally;ExpectedValue', '=', parameters('UsersOrGroupsThatMayLogOnLocally'), ',', 'Allow log on through Remote Desktop Services;ExpectedValue', '=', parameters('UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices'), ',', 'Deny access to this computer from the network;ExpectedValue', '=', parameters('UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork'), ',', 'Manage auditing and security log;ExpectedValue', '=', parameters('UsersOrGroupsThatMayManageAuditingAndSecurityLog'), ',', 'Back up files and directories;ExpectedValue', '=', parameters('UsersOrGroupsThatMayBackUpFilesAndDirectories'), ',', 'Change the system time;ExpectedValue', '=', parameters('UsersOrGroupsThatMayChangeTheSystemTime'), ',', 'Change the time zone;ExpectedValue', '=', parameters('UsersOrGroupsThatMayChangeTheTimeZone'), ',', 'Create a token object;ExpectedValue', '=', parameters('UsersOrGroupsThatMayCreateATokenObject'), ',', 'Deny log on as a batch job;ExpectedValue', '=', parameters('UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob'), ',', 'Deny log on as a service;ExpectedValue', '=', parameters('UsersAndGroupsThatAreDeniedLoggingOnAsAService'), ',', 'Deny log on locally;ExpectedValue', '=', parameters('UsersAndGroupsThatAreDeniedLocalLogon'), ',', 'Deny log on through Remote Desktop Services;ExpectedValue', '=', parameters('UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices'), ',', 'Force shutdown from a remote system;ExpectedValue', '=', parameters('UserAndGroupsThatMayForceShutdownFromARemoteSystem'), ',', 'Restore files and directories;ExpectedValue', '=', parameters('UsersAndGroupsThatMayRestoreFilesAndDirectories'), ',', 'Shut down the system;ExpectedValue', '=', parameters('UsersAndGroupsThatMayShutDownTheSystem'), ',', 'Take ownership of files or other objects;ExpectedValue', '=', parameters('UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_UserRightsAssignment\"},\"UsersOrGroupsThatMayAccessThisComputerFromTheNetwork\":{\"value\":\"[parameters('UsersOrGroupsThatMayAccessThisComputerFromTheNetwork')]\"},\"UsersOrGroupsThatMayLogOnLocally\":{\"value\":\"[parameters('UsersOrGroupsThatMayLogOnLocally')]\"},\"UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices\":{\"value\":\"[parameters('UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices')]\"},\"UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork\":{\"value\":\"[parameters('UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork')]\"},\"UsersOrGroupsThatMayManageAuditingAndSecurityLog\":{\"value\":\"[parameters('UsersOrGroupsThatMayManageAuditingAndSecurityLog')]\"},\"UsersOrGroupsThatMayBackUpFilesAndDirectories\":{\"value\":\"[parameters('UsersOrGroupsThatMayBackUpFilesAndDirectories')]\"},\"UsersOrGroupsThatMayChangeTheSystemTime\":{\"value\":\"[parameters('UsersOrGroupsThatMayChangeTheSystemTime')]\"},\"UsersOrGroupsThatMayChangeTheTimeZone\":{\"value\":\"[parameters('UsersOrGroupsThatMayChangeTheTimeZone')]\"},\"UsersOrGroupsThatMayCreateATokenObject\":{\"value\":\"[parameters('UsersOrGroupsThatMayCreateATokenObject')]\"},\"UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob\":{\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob')]\"},\"UsersAndGroupsThatAreDeniedLoggingOnAsAService\":{\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLoggingOnAsAService')]\"},\"UsersAndGroupsThatAreDeniedLocalLogon\":{\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLocalLogon')]\"},\"UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices\":{\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices')]\"},\"UserAndGroupsThatMayForceShutdownFromARemoteSystem\":{\"value\":\"[parameters('UserAndGroupsThatMayForceShutdownFromARemoteSystem')]\"},\"UsersAndGroupsThatMayRestoreFilesAndDirectories\":{\"value\":\"[parameters('UsersAndGroupsThatMayRestoreFilesAndDirectories')]\"},\"UsersAndGroupsThatMayShutDownTheSystem\":{\"value\":\"[parameters('UsersAndGroupsThatMayShutDownTheSystem')]\"},\"UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects\":{\"value\":\"[parameters('UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"UsersOrGroupsThatMayAccessThisComputerFromTheNetwork\":{\"type\":\"string\"},\"UsersOrGroupsThatMayLogOnLocally\":{\"type\":\"string\"},\"UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices\":{\"type\":\"string\"},\"UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork\":{\"type\":\"string\"},\"UsersOrGroupsThatMayManageAuditingAndSecurityLog\":{\"type\":\"string\"},\"UsersOrGroupsThatMayBackUpFilesAndDirectories\":{\"type\":\"string\"},\"UsersOrGroupsThatMayChangeTheSystemTime\":{\"type\":\"string\"},\"UsersOrGroupsThatMayChangeTheTimeZone\":{\"type\":\"string\"},\"UsersOrGroupsThatMayCreateATokenObject\":{\"type\":\"string\"},\"UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob\":{\"type\":\"string\"},\"UsersAndGroupsThatAreDeniedLoggingOnAsAService\":{\"type\":\"string\"},\"UsersAndGroupsThatAreDeniedLocalLogon\":{\"type\":\"string\"},\"UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices\":{\"type\":\"string\"},\"UserAndGroupsThatMayForceShutdownFromARemoteSystem\":{\"type\":\"string\"},\"UsersAndGroupsThatMayRestoreFilesAndDirectories\":{\"type\":\"string\"},\"UsersAndGroupsThatMayShutDownTheSystem\":{\"type\":\"string\"},\"UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Access this computer from the network;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayAccessThisComputerFromTheNetwork')]\"},{\"name\":\"Allow log on locally;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayLogOnLocally')]\"},{\"name\":\"Allow log on through Remote Desktop Services;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices')]\"},{\"name\":\"Deny access to this computer from the network;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork')]\"},{\"name\":\"Manage auditing and security log;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayManageAuditingAndSecurityLog')]\"},{\"name\":\"Back up files and directories;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayBackUpFilesAndDirectories')]\"},{\"name\":\"Change the system time;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayChangeTheSystemTime')]\"},{\"name\":\"Change the time zone;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayChangeTheTimeZone')]\"},{\"name\":\"Create a token object;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayCreateATokenObject')]\"},{\"name\":\"Deny log on as a batch job;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob')]\"},{\"name\":\"Deny log on as a service;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLoggingOnAsAService')]\"},{\"name\":\"Deny log on locally;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLocalLogon')]\"},{\"name\":\"Deny log on through Remote Desktop Services;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices')]\"},{\"name\":\"Force shutdown from a remote system;ExpectedValue\",\"value\":\"[parameters('UserAndGroupsThatMayForceShutdownFromARemoteSystem')]\"},{\"name\":\"Restore files and directories;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatMayRestoreFilesAndDirectories')]\"},{\"name\":\"Shut down the system;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatMayShutDownTheSystem')]\"},{\"name\":\"Take ownership of files or other objects;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Access this computer from the network;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayAccessThisComputerFromTheNetwork')]\"},{\"name\":\"Allow log on locally;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayLogOnLocally')]\"},{\"name\":\"Allow log on through Remote Desktop Services;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayLogOnThroughRemoteDesktopServices')]\"},{\"name\":\"Deny access to this computer from the network;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedAccessToThisComputerFromTheNetwork')]\"},{\"name\":\"Manage auditing and security log;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayManageAuditingAndSecurityLog')]\"},{\"name\":\"Back up files and directories;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayBackUpFilesAndDirectories')]\"},{\"name\":\"Change the system time;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayChangeTheSystemTime')]\"},{\"name\":\"Change the time zone;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayChangeTheTimeZone')]\"},{\"name\":\"Create a token object;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayCreateATokenObject')]\"},{\"name\":\"Deny log on as a batch job;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLoggingOnAsABatchJob')]\"},{\"name\":\"Deny log on as a service;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLoggingOnAsAService')]\"},{\"name\":\"Deny log on locally;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLocalLogon')]\"},{\"name\":\"Deny log on through Remote Desktop Services;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatAreDeniedLogOnThroughRemoteDesktopServices')]\"},{\"name\":\"Force shutdown from a remote system;ExpectedValue\",\"value\":\"[parameters('UserAndGroupsThatMayForceShutdownFromARemoteSystem')]\"},{\"name\":\"Restore files and directories;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatMayRestoreFilesAndDirectories')]\"},{\"name\":\"Shut down the system;ExpectedValue\",\"value\":\"[parameters('UsersAndGroupsThatMayShutDownTheSystem')]\"},{\"name\":\"Take ownership of files or other objects;ExpectedValue\",\"value\":\"[parameters('UsersOrGroupsThatMayTakeOwnershipOfFilesOrOtherObjects')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/815dcc9f-6662-43f2-9a03-1b83e9876f24\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"815dcc9f-6662-43f2-9a03-1b83e9876f24\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1308 - Identification And Authentication (Org. Users) | Remote Access - Separate Device\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1308\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/81817e1c-5347-48dd-965a-40159d008229\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"81817e1c-5347-48dd-965a-40159d008229\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1287 - Information System Backup\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1287\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/819dc6da-289d-476e-8500-7e341ef8677d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"819dc6da-289d-476e-8500-7e341ef8677d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1213 - Configuration Settings | Respond To Unauthorized Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1213\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/81f11e32-a293-4a58-82cd-134af52e2318\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"81f11e32-a293-4a58-82cd-134af52e2318\"},{\"properties\":{\"displayName\":\"Geo-redundant backup should be enabled for Azure Database for MySQL\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Azure Database for MySQL with geo-redundant backup not enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforMySQL/servers\"},{\"field\":\"Microsoft.DBforMySQL/servers/storageProfile.geoRedundantBackup\",\"notEquals\":\"Enabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/82339799-d096-41ae-8538-b108becf0970\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"82339799-d096-41ae-8538-b108becf0970\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1168 - Continuous Monitoring | Independent Assessment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1168\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/82409f9e-1f32-4775-bf07-b99d53a91b06\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"82409f9e-1f32-4775-bf07-b99d53a91b06\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1448 - Physical Access Authorizations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1448\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/825d6494-e583-42f2-a3f2-6458e6f0004f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"825d6494-e583-42f2-a3f2-6458e6f0004f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1452 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1452\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/82c76455-4d3f-4e09-a654-22e592107e74\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"82c76455-4d3f-4e09-a654-22e592107e74\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1262 - Contingency Plan Testing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1262\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/831e510e-db41-4c72-888e-a0621ab62265\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"831e510e-db41-4c72-888e-a0621ab62265\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1008 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1008\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8356cfc6-507a-4d20-b818-08038011cd07\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8356cfc6-507a-4d20-b818-08038011cd07\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Event Hub should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Event Hub\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.EventHub/namespaces\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/83a214f7-d01a-484b-91a9-ed54470c9a6a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"83a214f7-d01a-484b-91a9-ed54470c9a6a\"},{\"properties\":{\"displayName\":\"Network interfaces should not have public IPs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy denies the network interfaces which are configured with any public IP. Public IP addresses allow internet resources to communicate inbound to Azure resources, and Azure resources to communicate outbound to the internet. This should be reviewed by the network security team.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkInterfaces\"},{\"not\":{\"field\":\"Microsoft.Network/networkInterfaces/ipconfigurations[*].publicIpAddress.id\",\"notLike\":\"*\"}}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/83a86a26-fd1f-447c-b59d-e51f44264114\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"83a86a26-fd1f-447c-b59d-e51f44264114\"},{\"properties\":{\"displayName\":\"Bring your own key data protection should be enabled for MySQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MySQL servers in your environment without bring your own key data protection enabled. For more details, visit https://aka.ms/mysqlbyok.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforMySQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforMySQL/servers/keys\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.DBforMySQL/servers/keys/serverKeyType\",\"equals\":\"AzureKeyVault\"},{\"field\":\"Microsoft.DBforMySQL/servers/keys/uri\",\"notEquals\":\"\"},{\"field\":\"Microsoft.DBforMySQL/servers/keys/uri\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/83cef61d-dbd1-4b20-a4fc-5fbc7da10833\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"83cef61d-dbd1-4b20-a4fc-5fbc7da10833\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1382 - Incident Response Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1382\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/841392b3-40da-4473-b328-4cde49db67b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"841392b3-40da-4473-b328-4cde49db67b3\"},{\"properties\":{\"displayName\":\"[Preview]: Log Analytics agent should be installed on your Linux Azure Arc machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits Linux Azure Arc machines if the Log Analytics agent is not installed.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Monitoring\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.HybridCompute/machines/extensions/type\",\"equals\":\"OmsAgentForLinux\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/842c54e8-c2f9-4d79-ae8d-38d8b8019373\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"842c54e8-c2f9-4d79-ae8d-38d8b8019373\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1098 - Security Training Records\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1098\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/84363adb-dde3-411a-9fc1-36b56737f822\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"84363adb-dde3-411a-9fc1-36b56737f822\"},{\"properties\":{\"displayName\":\"Ensure that '.NET Framework' version is the latest, if used as a part of the Web app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for .NET Framework software either due to security flaws or to include additional functionality. Using the latest .NET framework version for web apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.netFrameworkVersion\",\"in\":[\"v3.0\",\"v4.0\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/843664e0-7563-41ee-a9cb-7522c382d2c4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"843664e0-7563-41ee-a9cb-7522c382d2c4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1119 - Audit Review, Analysis, And Reporting | Central Review And Analysis\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1119\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/845f6359-b764-4b40-b579-657aefe23c44\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"845f6359-b764-4b40-b579-657aefe23c44\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1024 - Account Management | Account Monitoring / Atypical Usage\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1024\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/84914fb4-12da-4c53-a341-a9fd463bed10\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"84914fb4-12da-4c53-a341-a9fd463bed10\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1307 - Identification And Authentication (Org. Users) | Net. Access To Non-Priv. Accts. - Replay\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1307\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/84e622c8-4bed-417c-84c6-b2fb0dd73682\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"84e622c8-4bed-417c-84c6-b2fb0dd73682\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1080 - Use Of External Information Systems | Portable Storage Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1080\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/852981b4-a380-4704-aa1e-2e52d63445e5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"852981b4-a380-4704-aa1e-2e52d63445e5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1580 - Information System Documentation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1580\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/854db8ac-6adf-42a0-bef3-b73f764f40b9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"854db8ac-6adf-42a0-bef3-b73f764f40b9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1348 - Identification And Authentication (Non-Org. Users) | Acceptance Of Third-Party Credentials\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1348\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/855ced56-417b-4d74-9d5f-dd1bc81e22d6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"855ced56-417b-4d74-9d5f-dd1bc81e22d6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1079 - Use Of External Information Systems | Limits On Authorized Use\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1079\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/85c32733-7d23-4948-88da-058e2c56b60f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"85c32733-7d23-4948-88da-058e2c56b60f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1326 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1326\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8605fc00-1bf5-4fb3-984e-c95cec4f231d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8605fc00-1bf5-4fb3-984e-c95cec4f231d\"},{\"properties\":{\"displayName\":\"Azure Cosmos DB accounts should have firewall rules\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit or deny resources that do not have any IP rules configured and allow all networks by default. Accounts that have at least one IP rule defined with the virtual network filter enabled are deemed compliant. Accounts disabling public access are also deemed compliant.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cosmos DB\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Policy Effect\",\"description\":\"The desired effect of the policy.\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Deny\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DocumentDB/databaseAccounts\"},{\"anyOf\":[{\"field\":\"Microsoft.DocumentDB/databaseAccounts/publicNetworkAccess\",\"exists\":\"false\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/publicNetworkAccess\",\"equals\":\"Enabled\"}]},{\"anyOf\":[{\"field\":\"Microsoft.DocumentDB/databaseAccounts/isVirtualNetworkFilterEnabled\",\"exists\":\"false\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/isVirtualNetworkFilterEnabled\",\"equals\":\"false\"},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.DocumentDB/databaseAccounts/ipRules\",\"exists\":\"false\"},{\"count\":{\"field\":\"Microsoft.DocumentDB/databaseAccounts/ipRules[*]\"},\"equals\":0}]},{\"anyOf\":[{\"field\":\"Microsoft.DocumentDB/databaseAccounts/ipRangeFilter\",\"exists\":\"false\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/ipRangeFilter\",\"equals\":\"\"}]}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/862e97cf-49fc-4a5c-9de4-40d4e2e7c8eb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"862e97cf-49fc-4a5c-9de4-40d4e2e7c8eb\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Microsoft Network Server'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Microsoft Network Server'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsMicrosoftNetworkServer\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsMicrosoftNetworkServer\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86880e5c-df35-43c5-95ad-7e120635775e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86880e5c-df35-43c5-95ad-7e120635775e\"},{\"properties\":{\"displayName\":\"Deploy SQL DB transparent data encryption\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Enables transparent data encryption on SQL databases\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers/databases\"},{\"field\":\"name\",\"notEquals\":\"master\"}]},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.Sql/servers/databases/transparentDataEncryption\",\"name\":\"current\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/transparentDataEncryption.status\",\"equals\":\"Enabled\"},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullDbName\":{\"type\":\"string\"}},\"resources\":[{\"name\":\"[concat(parameters('fullDbName'), '/current')]\",\"type\":\"Microsoft.Sql/servers/databases/transparentDataEncryption\",\"apiVersion\":\"2014-04-01\",\"properties\":{\"status\":\"Enabled\"}}]},\"parameters\":{\"fullDbName\":{\"value\":\"[field('fullName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86a912f6-9a06-4e26-b447-11b16ba8659f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86a912f6-9a06-4e26-b447-11b16ba8659f\"},{\"properties\":{\"displayName\":\"System updates should be installed on your machines\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Missing security system updates on your servers will be monitored by Azure Security Center as recommendations\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"systemUpdates\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86b3d65f-7626-441e-b690-81a8b71cff60\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86b3d65f-7626-441e-b690-81a8b71cff60\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1507 - Personnel Security Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1507\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86ccd1bf-e7ad-4851-93ce-6ec817469c1e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86ccd1bf-e7ad-4851-93ce-6ec817469c1e\"},{\"properties\":{\"displayName\":\"Ensure that Register with Azure Active Directory is enabled on API app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Managed service identity in App Service makes the app more secure by eliminating secrets from the app, such as credentials in the connection strings. When registering with Azure Active Directory in the app service, the app will connect to other Azure services securely without the need of username and passwords\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.managedServiceIdentityId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86d97760-d216-4d81-a3ad-163087b2b6c3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86d97760-d216-4d81-a3ad-163087b2b6c3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1392 - Information Spillage Response | Post-Spill Operations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1392\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86dc819f-15e1-43f9-a271-41ae58d4cecc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86dc819f-15e1-43f9-a271-41ae58d4cecc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1589 - External Information System Services | Risk Assessments / Organizational Approvals\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1589\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/86ec7f9b-9478-40ff-8cfd-6a0d510081a8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"86ec7f9b-9478-40ff-8cfd-6a0d510081a8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1207 - Access Restrictions For Change | Limit Production / Operational Privileges\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1207\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8713a0ed-0d1e-4d10-be82-83dffb39830e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8713a0ed-0d1e-4d10-be82-83dffb39830e\"},{\"properties\":{\"displayName\":\"Require a tag on resources\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Enforces existence of a tag. Does not apply to resource groups.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/871b6d14-10aa-478d-b590-94f262ecfa99\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"871b6d14-10aa-478d-b590-94f262ecfa99\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1180 - Baseline Configuration | Automation Support For Accuracy / Currency\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1180\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/874e7880-a067-42a7-bcbe-1a340f54c8cc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"874e7880-a067-42a7-bcbe-1a340f54c8cc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1635 - Boundary Protection | Host-Based Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1635\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/87551b5d-1deb-4d0f-86cc-9dc14cb4bf7e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"87551b5d-1deb-4d0f-86cc-9dc14cb4bf7e\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Administrative Templates - Control Panel'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - Control Panel'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdministrativeTemplatesControlPanel\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/87b590fe-4a1d-4697-ae74-d4fe72ab786c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"87b590fe-4a1d-4697-ae74-d4fe72ab786c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1293 - Information System Backup | Separate Storage For Critical Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1293\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/87f7cd82-2e45-4d0f-9e2f-586b0962d142\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"87f7cd82-2e45-4d0f-9e2f-586b0962d142\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1440 - Media Sanitization | Review / Approve / Track / Document / Verify\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1440\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/881299bf-2a5b-4686-a1b2-321d33679953\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"881299bf-2a5b-4686-a1b2-321d33679953\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1356 - Incident Response Training | Simulated Events\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1356\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8829f8f5-e8be-441e-85c9-85b72a5d0ef3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8829f8f5-e8be-441e-85c9-85b72a5d0ef3\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Linux VMs that have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Linux virtual machines that have the specified applications installed. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"ApplicationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Application names\",\"description\":\"A semicolon-separated list of the names of the applications that should not be installed. e.g. 'python; powershell'\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"not_installed_application_linux\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[ChefInSpec]NotInstalledApplicationLinuxResource1;AttributesYmlContent', '=', concat('packages: [', replace(parameters('ApplicationName'), ';', ','), ']')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"not_installed_application_linux\"},\"ApplicationName\":{\"value\":\"[parameters('ApplicationName')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"ApplicationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[ChefInSpec]NotInstalledApplicationLinuxResource1;AttributesYmlContent\",\"value\":\"[concat('packages: [', replace(parameters('ApplicationName'), ';', ','), ']')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[ChefInSpec]NotInstalledApplicationLinuxResource1;AttributesYmlContent\",\"value\":\"[concat('packages: [', replace(parameters('ApplicationName'), ';', ','), ']')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/884b209a-963b-4520-8006-d20cb3c213e0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"884b209a-963b-4520-8006-d20cb3c213e0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1317 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1317\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8877f519-c166-47b7-81b7-8a8eb4ff3775\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8877f519-c166-47b7-81b7-8a8eb4ff3775\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1501 - Rules Of Behavior\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1501\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/88817b58-8472-4f6c-81fa-58ce42b67f51\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"88817b58-8472-4f6c-81fa-58ce42b67f51\"},{\"properties\":{\"displayName\":\"Ensure that 'Java version' is the latest, if used as a part of the Api app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for Java either due to security flaws or to include additional functionality. Using the latest Python version for Api apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"JavaLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Latest Java version\",\"description\":\"Latest supported Java version for App Services\"},\"defaultValue\":\"11\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"JAVA\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"like\":\"[concat('*', parameters('JavaLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"like\":\"[concat(parameters('JavaLatestVersion'), '*')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/88999f4c-376a-45c8-bcb3-4058f713cf39\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"88999f4c-376a-45c8-bcb3-4058f713cf39\"},{\"properties\":{\"displayName\":\"Network interfaces should disable IP forwarding\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy denies the network interfaces which enabled IP forwarding. The setting of IP forwarding disables Azure's check of the source and destination for a network interface. This should be reviewed by the network security team.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkInterfaces\"},{\"field\":\"Microsoft.Network/networkInterfaces/enableIpForwarding\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/88c0b9da-ce96-4b03-9635-f29a937e2900\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"88c0b9da-ce96-4b03-9635-f29a937e2900\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1215 - Least Functionality\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1215\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/88fc93e8-4745-4785-b5a5-b44bb92c44ff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"88fc93e8-4745-4785-b5a5-b44bb92c44ff\"},{\"properties\":{\"displayName\":\"SQL servers should be configured with auditing retention days greater than 90 days.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit SQL servers configured with an auditing retention period of less than 90 days.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/auditingSettings\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/auditingSettings/retentionDays\",\"greater\":90}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/89099bee-89e0-4b26-a5f4-165451757743\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"89099bee-89e0-4b26-a5f4-165451757743\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1411 - Nonlocal Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1411\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/898d4fe8-f743-4333-86b7-0c9245d93e7d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"898d4fe8-f743-4333-86b7-0c9245d93e7d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1092 - Security Awareness Training | Insider Threat\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1092\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8a29d47b-8604-4667-84ef-90d203fcb305\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8a29d47b-8604-4667-84ef-90d203fcb305\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - System settings'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - System settings'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsSystemsettings\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8a39d1f1-5513-4628-b261-f469a5a3341b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8a39d1f1-5513-4628-b261-f469a5a3341b\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs with a pending reboot\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with a pending reboot. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsPendingReboot\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8b0de57a-f511-4d45-a277-17cb79cb163b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8b0de57a-f511-4d45-a277-17cb79cb163b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1534 - Personnel Sanctions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1534\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8b2b263e-cd05-4488-bcbf-4debec7a17d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8b2b263e-cd05-4488-bcbf-4debec7a17d9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1170 - Penetration Testing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1170\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8b78b9b3-ee3c-48e0-a243-ed6dba5b7a12\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8b78b9b3-ee3c-48e0-a243-ed6dba5b7a12\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Windows Firewall Properties'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Windows Firewall Properties'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_WindowsFirewallProperties\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8bbd627e-4d25-4906-9a6e-3789780af3ec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8bbd627e-4d25-4906-9a6e-3789780af3ec\"},{\"properties\":{\"displayName\":\"Ensure that 'HTTP Version' is the latest, if used to run the Web app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Managed service identity in App Service makes the app more secure by eliminating secrets from the app, such as credentials in the connection strings. When registering with Azure Active Directory in the app service, the app will connect to other Azure services securely without the need of username and passwords\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.http20Enabled\",\"Equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8c122334-9d20-4eb8-89ea-ac9a705b74ae\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8c122334-9d20-4eb8-89ea-ac9a705b74ae\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1458 - Physical Access Control | Information System Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1458\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8c19ceb7-56e9-4488-8ddb-b1eb3aa6d203\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8c19ceb7-56e9-4488-8ddb-b1eb3aa6d203\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1683 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1683\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8c79fee4-88dd-44ce-bbd4-4de88948c4f8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8c79fee4-88dd-44ce-bbd4-4de88948c4f8\"},{\"properties\":{\"displayName\":\"Latest TLS version should be used in your API App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Upgrade to the latest TLS version\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/minTlsVersion\",\"equals\":\"1.2\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8cb6aa8b-9e41-4f4e-aa25-089a7ac2581e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8cb6aa8b-9e41-4f4e-aa25-089a7ac2581e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1316 - Identifier Management | Identify User Status\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1316\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8ce14753-66e5-465d-9841-26ef55c09c0d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8ce14753-66e5-465d-9841-26ef55c09c0d\"},{\"properties\":{\"displayName\":\"Require a tag and its value on resource groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enforces a required tag and its value on resource groups.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions/resourceGroups\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"notEquals\":\"[parameters('tagValue')]\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8ce3da23-7156-49e4-b145-24f95f9dcb46\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8ce3da23-7156-49e4-b145-24f95f9dcb46\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1324 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1324\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8cfea2b3-7f77-497e-ac20-0752f2ff6eee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8cfea2b3-7f77-497e-ac20-0752f2ff6eee\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1225 - Information System Component Inventory | Automated Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1225\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8d096fe0-f510-4486-8b4d-d17dc230980b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8d096fe0-f510-4486-8b4d-d17dc230980b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1288 - Information System Backup\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1288\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8d854c3b-a3e6-4ec9-9f0c-c7274dbaeb2f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8d854c3b-a3e6-4ec9-9f0c-c7274dbaeb2f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1281 - Telecommunications Services | Priority Of Service Provisions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1281\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8dc459b3-0e77-45af-8d71-cfd8c9654fe2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8dc459b3-0e77-45af-8d71-cfd8c9654fe2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1250 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1250\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8de614d8-a8b7-4f70-a62a-6d37089a002c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8de614d8-a8b7-4f70-a62a-6d37089a002c\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Object Access'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Object Access'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditDetailedFileShare\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Detailed File Share\",\"description\":\"If this policy setting is enabled, access to all shared files and folders on the system is audited. Auditing for Success can lead to very high volumes of events.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"No Auditing\"},\"AuditFileShare\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit File Share\",\"description\":\"Specifies whether to audit events related to file shares: creation, deletion, modification, and access attempts. Also, it shows failed SMB SPN checks. Event volumes can be high on DCs and File Servers.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"No Auditing\"},\"AuditFileSystem\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit File System\",\"description\":\"Specifies whether audit events are generated when users attempt to access file system objects. Audit events are generated only for objects that have configured system access control lists (SACLs).\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"No Auditing\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesObjectAccess\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit Detailed File Share;ExpectedValue', '=', parameters('AuditDetailedFileShare'), ',', 'Audit File Share;ExpectedValue', '=', parameters('AuditFileShare'), ',', 'Audit File System;ExpectedValue', '=', parameters('AuditFileSystem')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesObjectAccess\"},\"AuditDetailedFileShare\":{\"value\":\"[parameters('AuditDetailedFileShare')]\"},\"AuditFileShare\":{\"value\":\"[parameters('AuditFileShare')]\"},\"AuditFileSystem\":{\"value\":\"[parameters('AuditFileSystem')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditDetailedFileShare\":{\"type\":\"string\"},\"AuditFileShare\":{\"type\":\"string\"},\"AuditFileSystem\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Detailed File Share;ExpectedValue\",\"value\":\"[parameters('AuditDetailedFileShare')]\"},{\"name\":\"Audit File Share;ExpectedValue\",\"value\":\"[parameters('AuditFileShare')]\"},{\"name\":\"Audit File System;ExpectedValue\",\"value\":\"[parameters('AuditFileSystem')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Detailed File Share;ExpectedValue\",\"value\":\"[parameters('AuditDetailedFileShare')]\"},{\"name\":\"Audit File Share;ExpectedValue\",\"value\":\"[parameters('AuditFileShare')]\"},{\"name\":\"Audit File System;ExpectedValue\",\"value\":\"[parameters('AuditFileSystem')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8e170edb-e0f5-497a-bb36-48b3280cec6a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8e170edb-e0f5-497a-bb36-48b3280cec6a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1278 - Alternate Processing Site | Preparation For Use\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1278\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8e5ef485-9e16-4c53-a475-fbb8107eac59\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8e5ef485-9e16-4c53-a475-fbb8107eac59\"},{\"properties\":{\"displayName\":\"Enable Security Center's auto provisioning of the Log Analytics agent on your subscriptions with custom workspace.\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Allow Security Center to auto provision the Log Analytics agent on your subscriptions to monitor and collect security data using a custom workspace.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Auto provision the Log Analytics agent on your subscriptions to monitor and collect security data using a custom workspace.\",\"strongType\":\"omsWorkspace\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/autoProvisioningSettings\",\"deploymentScope\":\"Subscription\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"existenceCondition\":{\"field\":\"Microsoft.Security/autoProvisioningSettings/autoProvision\",\"equals\":\"On\"},\"deployment\":{\"location\":\"westus\",\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}},\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Security/autoProvisioningSettings\",\"name\":\"default\",\"apiVersion\":\"2017-08-01-preview\",\"properties\":{\"autoProvision\":\"On\"}},{\"type\":\"Microsoft.Security/workspaceSettings\",\"apiVersion\":\"2017-08-01-preview\",\"name\":\"default\",\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"scope\":\"[subscription().id]\"}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8e7da0a5-0a0e-4bbc-bfc0-7773c018b616\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8e7da0a5-0a0e-4bbc-bfc0-7773c018b616\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1517 - Personnel Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1517\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8f5ad423-50d6-4617-b058-69908f5586c9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8f5ad423-50d6-4617-b058-69908f5586c9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1668 - Flaw Remediation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1668\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8fb0966e-be1d-42c3-baca-60df5c0bcc61\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8fb0966e-be1d-42c3-baca-60df5c0bcc61\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1013 - Account Management | Automated System Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1013\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8fd7b917-d83b-4379-af60-51e14e316c61\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8fd7b917-d83b-4379-af60-51e14e316c61\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1147 - Security Assessments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1147\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8fef824a-29a8-4a4c-88fc-420a39c0d541\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8fef824a-29a8-4a4c-88fc-420a39c0d541\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not store passwords using reversible encryption\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not store passwords using reversible encryption. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"StorePasswordsUsingReversibleEncryption\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"StorePasswordsUsingReversibleEncryption\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8ff0b18b-262e-4512-857a-48ad0aeb9a78\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8ff0b18b-262e-4512-857a-48ad0aeb9a78\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1550 - Vulnerability Scanning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1550\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/902908fb-25a8-4225-a3a5-5603c80066c9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"902908fb-25a8-4225-a3a5-5603c80066c9\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Windows Firewall Properties'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Windows Firewall Properties'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"WindowsFirewallDomainUseProfileSettings\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Domain): Use profile settings\",\"description\":\"Specifies whether Windows Firewall with Advanced Security uses the settings for the Domain profile to filter network traffic. If you select Off, Windows Firewall with Advanced Security will not use any of the firewall rules or connection security rules for this profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallDomainBehaviorForOutboundConnections\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Domain): Behavior for outbound connections\",\"description\":\"Specifies the behavior for outbound connections for the Domain profile that do not match an outbound firewall rule. The default value of 0 means to allow connections, and a value of 1 means to block connections.\"},\"defaultValue\":\"0\"},\"WindowsFirewallDomainApplyLocalConnectionSecurityRules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Domain): Apply local connection security rules\",\"description\":\"Specifies whether local administrators are allowed to create connection security rules that apply together with connection security rules configured by Group Policy for the Domain profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallDomainApplyLocalFirewallRules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Domain): Apply local firewall rules\",\"description\":\"Specifies whether local administrators are allowed to create local firewall rules that apply together with firewall rules configured by Group Policy for the Domain profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallDomainDisplayNotifications\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Domain): Display notifications\",\"description\":\"Specifies whether Windows Firewall with Advanced Security displays notifications to the user when a program is blocked from receiving inbound connections, for the Domain profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPrivateUseProfileSettings\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Private): Use profile settings\",\"description\":\"Specifies whether Windows Firewall with Advanced Security uses the settings for the Private profile to filter network traffic. If you select Off, Windows Firewall with Advanced Security will not use any of the firewall rules or connection security rules for this profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPrivateBehaviorForOutboundConnections\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Private): Behavior for outbound connections\",\"description\":\"Specifies the behavior for outbound connections for the Private profile that do not match an outbound firewall rule. The default value of 0 means to allow connections, and a value of 1 means to block connections.\"},\"defaultValue\":\"0\"},\"WindowsFirewallPrivateApplyLocalConnectionSecurityRules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Private): Apply local connection security rules\",\"description\":\"Specifies whether local administrators are allowed to create connection security rules that apply together with connection security rules configured by Group Policy for the Private profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPrivateApplyLocalFirewallRules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Private): Apply local firewall rules\",\"description\":\"Specifies whether local administrators are allowed to create local firewall rules that apply together with firewall rules configured by Group Policy for the Private profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPrivateDisplayNotifications\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Private): Display notifications\",\"description\":\"Specifies whether Windows Firewall with Advanced Security displays notifications to the user when a program is blocked from receiving inbound connections, for the Private profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPublicUseProfileSettings\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Public): Use profile settings\",\"description\":\"Specifies whether Windows Firewall with Advanced Security uses the settings for the Public profile to filter network traffic. If you select Off, Windows Firewall with Advanced Security will not use any of the firewall rules or connection security rules for this profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPublicBehaviorForOutboundConnections\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Public): Behavior for outbound connections\",\"description\":\"Specifies the behavior for outbound connections for the Public profile that do not match an outbound firewall rule. The default value of 0 means to allow connections, and a value of 1 means to block connections.\"},\"defaultValue\":\"0\"},\"WindowsFirewallPublicApplyLocalConnectionSecurityRules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Public): Apply local connection security rules\",\"description\":\"Specifies whether local administrators are allowed to create connection security rules that apply together with connection security rules configured by Group Policy for the Public profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPublicApplyLocalFirewallRules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Public): Apply local firewall rules\",\"description\":\"Specifies whether local administrators are allowed to create local firewall rules that apply together with firewall rules configured by Group Policy for the Public profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallPublicDisplayNotifications\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall (Public): Display notifications\",\"description\":\"Specifies whether Windows Firewall with Advanced Security displays notifications to the user when a program is blocked from receiving inbound connections, for the Public profile.\"},\"defaultValue\":\"1\"},\"WindowsFirewallDomainAllowUnicastResponse\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall: Domain: Allow unicast response\",\"description\":\"Specifies whether Windows Firewall with Advanced Security permits the local computer to receive unicast responses to its outgoing multicast or broadcast messages; for the Domain profile.\"},\"defaultValue\":\"0\"},\"WindowsFirewallPrivateAllowUnicastResponse\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall: Private: Allow unicast response\",\"description\":\"Specifies whether Windows Firewall with Advanced Security permits the local computer to receive unicast responses to its outgoing multicast or broadcast messages; for the Private profile.\"},\"defaultValue\":\"0\"},\"WindowsFirewallPublicAllowUnicastResponse\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Windows Firewall: Public: Allow unicast response\",\"description\":\"Specifies whether Windows Firewall with Advanced Security permits the local computer to receive unicast responses to its outgoing multicast or broadcast messages; for the Public profile.\"},\"defaultValue\":\"1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_WindowsFirewallProperties\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Windows Firewall: Domain: Firewall state;ExpectedValue', '=', parameters('WindowsFirewallDomainUseProfileSettings'), ',', 'Windows Firewall: Domain: Outbound connections;ExpectedValue', '=', parameters('WindowsFirewallDomainBehaviorForOutboundConnections'), ',', 'Windows Firewall: Domain: Settings: Apply local connection security rules;ExpectedValue', '=', parameters('WindowsFirewallDomainApplyLocalConnectionSecurityRules'), ',', 'Windows Firewall: Domain: Settings: Apply local firewall rules;ExpectedValue', '=', parameters('WindowsFirewallDomainApplyLocalFirewallRules'), ',', 'Windows Firewall: Domain: Settings: Display a notification;ExpectedValue', '=', parameters('WindowsFirewallDomainDisplayNotifications'), ',', 'Windows Firewall: Private: Firewall state;ExpectedValue', '=', parameters('WindowsFirewallPrivateUseProfileSettings'), ',', 'Windows Firewall: Private: Outbound connections;ExpectedValue', '=', parameters('WindowsFirewallPrivateBehaviorForOutboundConnections'), ',', 'Windows Firewall: Private: Settings: Apply local connection security rules;ExpectedValue', '=', parameters('WindowsFirewallPrivateApplyLocalConnectionSecurityRules'), ',', 'Windows Firewall: Private: Settings: Apply local firewall rules;ExpectedValue', '=', parameters('WindowsFirewallPrivateApplyLocalFirewallRules'), ',', 'Windows Firewall: Private: Settings: Display a notification;ExpectedValue', '=', parameters('WindowsFirewallPrivateDisplayNotifications'), ',', 'Windows Firewall: Public: Firewall state;ExpectedValue', '=', parameters('WindowsFirewallPublicUseProfileSettings'), ',', 'Windows Firewall: Public: Outbound connections;ExpectedValue', '=', parameters('WindowsFirewallPublicBehaviorForOutboundConnections'), ',', 'Windows Firewall: Public: Settings: Apply local connection security rules;ExpectedValue', '=', parameters('WindowsFirewallPublicApplyLocalConnectionSecurityRules'), ',', 'Windows Firewall: Public: Settings: Apply local firewall rules;ExpectedValue', '=', parameters('WindowsFirewallPublicApplyLocalFirewallRules'), ',', 'Windows Firewall: Public: Settings: Display a notification;ExpectedValue', '=', parameters('WindowsFirewallPublicDisplayNotifications'), ',', 'Windows Firewall: Domain: Allow unicast response;ExpectedValue', '=', parameters('WindowsFirewallDomainAllowUnicastResponse'), ',', 'Windows Firewall: Private: Allow unicast response;ExpectedValue', '=', parameters('WindowsFirewallPrivateAllowUnicastResponse'), ',', 'Windows Firewall: Public: Allow unicast response;ExpectedValue', '=', parameters('WindowsFirewallPublicAllowUnicastResponse')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_WindowsFirewallProperties\"},\"WindowsFirewallDomainUseProfileSettings\":{\"value\":\"[parameters('WindowsFirewallDomainUseProfileSettings')]\"},\"WindowsFirewallDomainBehaviorForOutboundConnections\":{\"value\":\"[parameters('WindowsFirewallDomainBehaviorForOutboundConnections')]\"},\"WindowsFirewallDomainApplyLocalConnectionSecurityRules\":{\"value\":\"[parameters('WindowsFirewallDomainApplyLocalConnectionSecurityRules')]\"},\"WindowsFirewallDomainApplyLocalFirewallRules\":{\"value\":\"[parameters('WindowsFirewallDomainApplyLocalFirewallRules')]\"},\"WindowsFirewallDomainDisplayNotifications\":{\"value\":\"[parameters('WindowsFirewallDomainDisplayNotifications')]\"},\"WindowsFirewallPrivateUseProfileSettings\":{\"value\":\"[parameters('WindowsFirewallPrivateUseProfileSettings')]\"},\"WindowsFirewallPrivateBehaviorForOutboundConnections\":{\"value\":\"[parameters('WindowsFirewallPrivateBehaviorForOutboundConnections')]\"},\"WindowsFirewallPrivateApplyLocalConnectionSecurityRules\":{\"value\":\"[parameters('WindowsFirewallPrivateApplyLocalConnectionSecurityRules')]\"},\"WindowsFirewallPrivateApplyLocalFirewallRules\":{\"value\":\"[parameters('WindowsFirewallPrivateApplyLocalFirewallRules')]\"},\"WindowsFirewallPrivateDisplayNotifications\":{\"value\":\"[parameters('WindowsFirewallPrivateDisplayNotifications')]\"},\"WindowsFirewallPublicUseProfileSettings\":{\"value\":\"[parameters('WindowsFirewallPublicUseProfileSettings')]\"},\"WindowsFirewallPublicBehaviorForOutboundConnections\":{\"value\":\"[parameters('WindowsFirewallPublicBehaviorForOutboundConnections')]\"},\"WindowsFirewallPublicApplyLocalConnectionSecurityRules\":{\"value\":\"[parameters('WindowsFirewallPublicApplyLocalConnectionSecurityRules')]\"},\"WindowsFirewallPublicApplyLocalFirewallRules\":{\"value\":\"[parameters('WindowsFirewallPublicApplyLocalFirewallRules')]\"},\"WindowsFirewallPublicDisplayNotifications\":{\"value\":\"[parameters('WindowsFirewallPublicDisplayNotifications')]\"},\"WindowsFirewallDomainAllowUnicastResponse\":{\"value\":\"[parameters('WindowsFirewallDomainAllowUnicastResponse')]\"},\"WindowsFirewallPrivateAllowUnicastResponse\":{\"value\":\"[parameters('WindowsFirewallPrivateAllowUnicastResponse')]\"},\"WindowsFirewallPublicAllowUnicastResponse\":{\"value\":\"[parameters('WindowsFirewallPublicAllowUnicastResponse')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"WindowsFirewallDomainUseProfileSettings\":{\"type\":\"string\"},\"WindowsFirewallDomainBehaviorForOutboundConnections\":{\"type\":\"string\"},\"WindowsFirewallDomainApplyLocalConnectionSecurityRules\":{\"type\":\"string\"},\"WindowsFirewallDomainApplyLocalFirewallRules\":{\"type\":\"string\"},\"WindowsFirewallDomainDisplayNotifications\":{\"type\":\"string\"},\"WindowsFirewallPrivateUseProfileSettings\":{\"type\":\"string\"},\"WindowsFirewallPrivateBehaviorForOutboundConnections\":{\"type\":\"string\"},\"WindowsFirewallPrivateApplyLocalConnectionSecurityRules\":{\"type\":\"string\"},\"WindowsFirewallPrivateApplyLocalFirewallRules\":{\"type\":\"string\"},\"WindowsFirewallPrivateDisplayNotifications\":{\"type\":\"string\"},\"WindowsFirewallPublicUseProfileSettings\":{\"type\":\"string\"},\"WindowsFirewallPublicBehaviorForOutboundConnections\":{\"type\":\"string\"},\"WindowsFirewallPublicApplyLocalConnectionSecurityRules\":{\"type\":\"string\"},\"WindowsFirewallPublicApplyLocalFirewallRules\":{\"type\":\"string\"},\"WindowsFirewallPublicDisplayNotifications\":{\"type\":\"string\"},\"WindowsFirewallDomainAllowUnicastResponse\":{\"type\":\"string\"},\"WindowsFirewallPrivateAllowUnicastResponse\":{\"type\":\"string\"},\"WindowsFirewallPublicAllowUnicastResponse\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Windows Firewall: Domain: Firewall state;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainUseProfileSettings')]\"},{\"name\":\"Windows Firewall: Domain: Outbound connections;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainBehaviorForOutboundConnections')]\"},{\"name\":\"Windows Firewall: Domain: Settings: Apply local connection security rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainApplyLocalConnectionSecurityRules')]\"},{\"name\":\"Windows Firewall: Domain: Settings: Apply local firewall rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainApplyLocalFirewallRules')]\"},{\"name\":\"Windows Firewall: Domain: Settings: Display a notification;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainDisplayNotifications')]\"},{\"name\":\"Windows Firewall: Private: Firewall state;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateUseProfileSettings')]\"},{\"name\":\"Windows Firewall: Private: Outbound connections;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateBehaviorForOutboundConnections')]\"},{\"name\":\"Windows Firewall: Private: Settings: Apply local connection security rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateApplyLocalConnectionSecurityRules')]\"},{\"name\":\"Windows Firewall: Private: Settings: Apply local firewall rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateApplyLocalFirewallRules')]\"},{\"name\":\"Windows Firewall: Private: Settings: Display a notification;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateDisplayNotifications')]\"},{\"name\":\"Windows Firewall: Public: Firewall state;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicUseProfileSettings')]\"},{\"name\":\"Windows Firewall: Public: Outbound connections;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicBehaviorForOutboundConnections')]\"},{\"name\":\"Windows Firewall: Public: Settings: Apply local connection security rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicApplyLocalConnectionSecurityRules')]\"},{\"name\":\"Windows Firewall: Public: Settings: Apply local firewall rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicApplyLocalFirewallRules')]\"},{\"name\":\"Windows Firewall: Public: Settings: Display a notification;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicDisplayNotifications')]\"},{\"name\":\"Windows Firewall: Domain: Allow unicast response;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainAllowUnicastResponse')]\"},{\"name\":\"Windows Firewall: Private: Allow unicast response;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateAllowUnicastResponse')]\"},{\"name\":\"Windows Firewall: Public: Allow unicast response;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicAllowUnicastResponse')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Windows Firewall: Domain: Firewall state;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainUseProfileSettings')]\"},{\"name\":\"Windows Firewall: Domain: Outbound connections;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainBehaviorForOutboundConnections')]\"},{\"name\":\"Windows Firewall: Domain: Settings: Apply local connection security rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainApplyLocalConnectionSecurityRules')]\"},{\"name\":\"Windows Firewall: Domain: Settings: Apply local firewall rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainApplyLocalFirewallRules')]\"},{\"name\":\"Windows Firewall: Domain: Settings: Display a notification;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainDisplayNotifications')]\"},{\"name\":\"Windows Firewall: Private: Firewall state;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateUseProfileSettings')]\"},{\"name\":\"Windows Firewall: Private: Outbound connections;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateBehaviorForOutboundConnections')]\"},{\"name\":\"Windows Firewall: Private: Settings: Apply local connection security rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateApplyLocalConnectionSecurityRules')]\"},{\"name\":\"Windows Firewall: Private: Settings: Apply local firewall rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateApplyLocalFirewallRules')]\"},{\"name\":\"Windows Firewall: Private: Settings: Display a notification;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateDisplayNotifications')]\"},{\"name\":\"Windows Firewall: Public: Firewall state;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicUseProfileSettings')]\"},{\"name\":\"Windows Firewall: Public: Outbound connections;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicBehaviorForOutboundConnections')]\"},{\"name\":\"Windows Firewall: Public: Settings: Apply local connection security rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicApplyLocalConnectionSecurityRules')]\"},{\"name\":\"Windows Firewall: Public: Settings: Apply local firewall rules;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicApplyLocalFirewallRules')]\"},{\"name\":\"Windows Firewall: Public: Settings: Display a notification;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicDisplayNotifications')]\"},{\"name\":\"Windows Firewall: Domain: Allow unicast response;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallDomainAllowUnicastResponse')]\"},{\"name\":\"Windows Firewall: Private: Allow unicast response;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPrivateAllowUnicastResponse')]\"},{\"name\":\"Windows Firewall: Public: Allow unicast response;ExpectedValue\",\"value\":\"[parameters('WindowsFirewallPublicAllowUnicastResponse')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/909c958d-1b99-4c74-b88f-46a5c5bc34f9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"909c958d-1b99-4c74-b88f-46a5c5bc34f9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1133 - Protection Of Audit Information | Cryptographic Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1133\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/90b60a09-133d-45bc-86ef-b206a6134bbe\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"90b60a09-133d-45bc-86ef-b206a6134bbe\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not have the specified Windows PowerShell modules installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that do not have the specified Windows PowerShell modules installed. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"Modules\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"PowerShell Modules\",\"description\":\"A semicolon-separated list of the names of the PowerShell modules that should be installed. You may also specify a specific version of a module that should be installed by including a comma after the module name, followed by the desired version. e.g. PSDscResources; SqlServerDsc, 12.0.0.0; ComputerManagementDsc, 6.1.0.0\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsPowerShellModules\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[PowerShellModules]PowerShellModules1;Modules', '=', parameters('Modules')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsPowerShellModules\"},\"Modules\":{\"value\":\"[parameters('Modules')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"Modules\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[PowerShellModules]PowerShellModules1;Modules\",\"value\":\"[parameters('Modules')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[PowerShellModules]PowerShellModules1;Modules\",\"value\":\"[parameters('Modules')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/90ba2ee7-4ca8-4673-84d1-c851c50d3baf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"90ba2ee7-4ca8-4673-84d1-c851c50d3baf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1140 - Audit Generation | System-Wide / Time-Correlated Audit Trail\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1140\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/90d8b8ad-8ee3-4db7-913f-2a53fcff5316\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"90d8b8ad-8ee3-4db7-913f-2a53fcff5316\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1355 - Incident Response Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1355\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/90e01f69-3074-4de8-ade7-0fef3e7d83e0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"90e01f69-3074-4de8-ade7-0fef3e7d83e0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1657 - Secure Name / Address Resolution Service (Authoritative Source)\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1657\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/90f01329-a100-43c2-af31-098996135d2b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"90f01329-a100-43c2-af31-098996135d2b\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Windows Components'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Windows Components'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_WindowsComponents\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9178b430-2295-406e-bb28-f6a7a2a2f897\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9178b430-2295-406e-bb28-f6a7a2a2f897\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1069 - Wireless Access | Authentication And Encryption\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1069\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/91c97b44-791e-46e9-bad7-ab7c4949edbb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"91c97b44-791e-46e9-bad7-ab7c4949edbb\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy Dependency agent to Windows Azure Arc machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Dependency agent to Windows Azure Arc machines if the agent isn't installed.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Monitoring\",\"preview\":true},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.HybridCompute/machines/extensions/type\",\"equals\":\"DependencyAgentWindows\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"DaExtensionName\":\"DependencyAgent\",\"DaExtensionType\":\"DependencyAgentWindows\"},\"resources\":[{\"type\":\"Microsoft.HybridCompute/machines\",\"apiVersion\":\"2020-03-11-preview\",\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\",\"resources\":[{\"type\":\"extensions\",\"apiVersion\":\"2020-03-11-preview\",\"name\":\"[variables('DaExtensionName')]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[concat('Microsoft.HybridCompute/machines/', parameters('vmName'))]\"],\"properties\":{\"publisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"type\":\"[variables('DaExtensionType')]\",\"autoUpgradeMinorVersion\":true,\"settings\":{}}}]}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled DA extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/91cb9edd-cd92-4d2f-b2f2-bdd8d065a3d4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"91cb9edd-cd92-4d2f-b2f2-bdd8d065a3d4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1370 - Incident Monitoring | Automated Tracking / Data Collection / Analysis\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1370\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/924e1b2d-c502-478f-bfdb-a7e09a0d5c01\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"924e1b2d-c502-478f-bfdb-a7e09a0d5c01\"},{\"properties\":{\"displayName\":\"MFA should be enabled accounts with write permissions on your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Multi-Factor Authentication (MFA) should be enabled for all subscription accounts with write privileges to prevent a breach of accounts or resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"EnableMFAForWritePermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9297c21d-2ed6-4474-b48f-163f75654ce3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9297c21d-2ed6-4474-b48f-163f75654ce3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1290 - Information System Backup\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1290\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/92f85ce9-17b7-49ea-85ee-ea7271ea6b82\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"92f85ce9-17b7-49ea-85ee-ea7271ea6b82\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that contain certificates expiring within the specified number of days\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that contain certificates expiring within the specified number of days. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"CertificateExpiration\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9328f27e-611e-44a7-a244-39109d7d35ab\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9328f27e-611e-44a7-a244-39109d7d35ab\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs in which the Administrators group does not contain all of the specified members\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines in which the Administrators group does not contain all of the specified members. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"MembersToInclude\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Members to include\",\"description\":\"A semicolon-separated list of members that should be included in the Administrators local group. Ex: Administrator; myUser1; myUser2\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AdministratorsGroupMembersToInclude\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[LocalGroup]AdministratorsGroup;MembersToInclude', '=', parameters('MembersToInclude')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AdministratorsGroupMembersToInclude\"},\"MembersToInclude\":{\"value\":\"[parameters('MembersToInclude')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"MembersToInclude\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LocalGroup]AdministratorsGroup;MembersToInclude\",\"value\":\"[parameters('MembersToInclude')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LocalGroup]AdministratorsGroup;MembersToInclude\",\"value\":\"[parameters('MembersToInclude')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/93507a81-10a4-4af0-9ee2-34cf25a96e98\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"93507a81-10a4-4af0-9ee2-34cf25a96e98\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1575 - Acquisition Process | Functional Properties Of Security Controls\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1575\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/93e1bb73-1b08-4dbe-9c62-8e2e92e7ec41\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"93e1bb73-1b08-4dbe-9c62-8e2e92e7ec41\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1674 - Flaw Remediation | Time To Remediate Flaws / Benchmarks For Corrective Actions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1674\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/93e9e233-dd0a-4bde-aea5-1371bce0e002\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"93e9e233-dd0a-4bde-aea5-1371bce0e002\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1297 - Information System Recovery And Reconstitution | Restore Within Time Period\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1297\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/93fd8af1-c161-4bae-9ba9-f62731f76439\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"93fd8af1-c161-4bae-9ba9-f62731f76439\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1284 - Telecommunications Services | Provider Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1284\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/942b3e97-6ae3-410e-a794-c9c999b97c0b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"942b3e97-6ae3-410e-a794-c9c999b97c0b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1379 - Incident Response Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1379\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9442dd2c-a07f-46cd-b55a-553b66ba47ca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9442dd2c-a07f-46cd-b55a-553b66ba47ca\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1371 - Incident Reporting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1371\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9447f354-2c85-4700-93b3-ecdc6cb6a417\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9447f354-2c85-4700-93b3-ecdc6cb6a417\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation only in European data centers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation in the following locations only: North Europe, West Europe\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"General\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/94c19f19-8192-48cd-a11b-e37099d3e36b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"94c19f19-8192-48cd-a11b-e37099d3e36b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1526 - Access Agreements\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1526\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/953e6261-a05a-44fd-8246-000e1a3edbb9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"953e6261-a05a-44fd-8246-000e1a3edbb9\"},{\"properties\":{\"displayName\":\"Authentication should be enabled on your web app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Azure App Service Authentication is a feature that can prevent anonymous HTTP requests from reaching the web app, or authenticate those that have tokens before they reach the web app\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/siteAuthEnabled\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/95bccee9-a7f8-4bec-9ee9-62c3473701fc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"95bccee9-a7f8-4bec-9ee9-62c3473701fc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1163 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1163\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/961663a1-8a91-4e59-b6f5-1eee57c0f49c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"961663a1-8a91-4e59-b6f5-1eee57c0f49c\"},{\"properties\":{\"displayName\":\"Require a tag on resource groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enforces existence of a tag on resource groups.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions/resourceGroups\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/96670d01-0a4d-4649-9c89-2d3abc0a5025\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"96670d01-0a4d-4649-9c89-2d3abc0a5025\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1717 - Software, Firmware, And Information Integrity | Binary Or Machine Executable Code\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1717\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/967773fc-d9ab-4a4e-8ff6-f5e9e3f5dbef\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"967773fc-d9ab-4a4e-8ff6-f5e9e3f5dbef\"},{\"properties\":{\"displayName\":\"[Deprecated]: Advanced data security settings for SQL server should contain an email address to receive security alerts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Ensure that an email address is provided for the 'Send alerts to' field in the Advanced Data Security server settings. This email address receives alert notifications when anomalous activities are detected on SQL servers.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/securityAlertPolicies/emailAddresses[*]\",\"notEquals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9677b740-f641-4f3c-b9c5-466005c85278\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9677b740-f641-4f3c-b9c5-466005c85278\"},{\"properties\":{\"displayName\":\"App Configuration should use a customer-managed key\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Customer-managed keys provide enhanced data protection by allowing you to manage your encryption keys. This is often required to meet compliance requirements.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Configuration\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.AppConfiguration/configurationStores\"},{\"field\":\"Microsoft.AppConfiguration/configurationStores/encryption.keyVaultProperties.keyIdentifier\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/967a4b4b-2da9-43c1-b7d0-f98d0d74d0b1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"967a4b4b-2da9-43c1-b7d0-f98d0d74d0b1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1453 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1453\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9693b564-3008-42bc-9d5d-9c7fe198c011\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9693b564-3008-42bc-9d5d-9c7fe198c011\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Administrative Templates - MSS (Legacy)'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - MSS (Legacy)'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdminstrativeTemplatesMSSLegacy\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/97646672-5efa-4622-9b54-740270ad60bf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"97646672-5efa-4622-9b54-740270ad60bf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1607 - Developer Security Testing And Evaluation | Dynamic Code Analysis\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1607\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/976a74cf-b192-4d35-8cab-2068f272addb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"976a74cf-b192-4d35-8cab-2068f272addb\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Policy Change'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Policy Change'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditAuthenticationPolicyChange\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Authentication Policy Change\",\"description\":\"Specifies whether audit events are generated when changes are made to authentication policy. This setting is useful for tracking changes in domain-level and forest-level trust and privileges that are granted to user accounts or groups.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"Success\"},\"AuditAuthorizationPolicyChange\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Authorization Policy Change\",\"description\":\"Specifies whether audit events are generated for assignment and removal of user rights in user right policies, changes in security token object permission, resource attributes changes and Central Access Policy changes for file system objects.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"No Auditing\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesPolicyChange\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit Authentication Policy Change;ExpectedValue', '=', parameters('AuditAuthenticationPolicyChange'), ',', 'Audit Authorization Policy Change;ExpectedValue', '=', parameters('AuditAuthorizationPolicyChange')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesPolicyChange\"},\"AuditAuthenticationPolicyChange\":{\"value\":\"[parameters('AuditAuthenticationPolicyChange')]\"},\"AuditAuthorizationPolicyChange\":{\"value\":\"[parameters('AuditAuthorizationPolicyChange')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditAuthenticationPolicyChange\":{\"type\":\"string\"},\"AuditAuthorizationPolicyChange\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Authentication Policy Change;ExpectedValue\",\"value\":\"[parameters('AuditAuthenticationPolicyChange')]\"},{\"name\":\"Audit Authorization Policy Change;ExpectedValue\",\"value\":\"[parameters('AuditAuthorizationPolicyChange')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Authentication Policy Change;ExpectedValue\",\"value\":\"[parameters('AuditAuthenticationPolicyChange')]\"},{\"name\":\"Audit Authorization Policy Change;ExpectedValue\",\"value\":\"[parameters('AuditAuthorizationPolicyChange')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/97b595c8-fd10-400e-8543-28e2b9138b13\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"97b595c8-fd10-400e-8543-28e2b9138b13\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1136 - Audit Record Retention\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1136\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/97ed5bac-a92f-4f6d-a8ed-dc094723597c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"97ed5bac-a92f-4f6d-a8ed-dc094723597c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1378 - Incident Response Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1378\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/97fceb70-6983-42d0-9331-18ad8253184d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"97fceb70-6983-42d0-9331-18ad8253184d\"},{\"properties\":{\"displayName\":\"Azure Event Grid domains should use private links\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Azure Event Grid domains that do not have at least one approved private endpoint connection. Clients in a virtual network can securely access resources that have private endpoint connections via private links. For more information, visit https://aka.ms/privateendpoints.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Event Grid\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.EventGrid/domains\"},{\"count\":{\"field\":\"Microsoft.EventGrid/domains/privateEndpointConnections[*]\",\"where\":{\"field\":\"Microsoft.EventGrid/domains/privateEndpointConnections[*].privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}},\"less\":1}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9830b652-8523-49cc-b1b3-e17dce1127ca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9830b652-8523-49cc-b1b3-e17dce1127ca\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation only in United States data centers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation in the following locations only: Central US, East US, East US2, North Central US, South Central US, West US\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"General\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"centralus\",\"eastus\",\"eastus2\",\"northcentralus\",\"southcentralus\",\"westus\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/983211ba-f348-4758-983b-21fa29294869\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"983211ba-f348-4758-983b-21fa29294869\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Administrative Templates - Network'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - Network'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"EnableInsecureGuestLogons\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable insecure guest logons\",\"description\":\"Specifies whether the SMB client will allow insecure guest logons to an SMB server.\"},\"defaultValue\":\"0\"},\"AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Allow simultaneous connections to the Internet or a Windows Domain\",\"description\":\"Specify whether to prevent computers from connecting to both a domain based network and a non-domain based network at the same time. A value of 0 allows simultaneous connections, and a value of 1 blocks them.\"},\"defaultValue\":\"1\"},\"TurnOffMulticastNameResolution\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Turn off multicast name resolution\",\"description\":\"Specifies whether LLMNR, a secondary name resolution protocol that transmits using multicast over a local subnet link on a single subnet, is enabled.\"},\"defaultValue\":\"1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdministrativeTemplatesNetwork\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Enable insecure guest logons;ExpectedValue', '=', parameters('EnableInsecureGuestLogons'), ',', 'Minimize the number of simultaneous connections to the Internet or a Windows Domain;ExpectedValue', '=', parameters('AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain'), ',', 'Turn off multicast name resolution;ExpectedValue', '=', parameters('TurnOffMulticastNameResolution')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_AdministrativeTemplatesNetwork\"},\"EnableInsecureGuestLogons\":{\"value\":\"[parameters('EnableInsecureGuestLogons')]\"},\"AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain\":{\"value\":\"[parameters('AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain')]\"},\"TurnOffMulticastNameResolution\":{\"value\":\"[parameters('TurnOffMulticastNameResolution')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"EnableInsecureGuestLogons\":{\"type\":\"string\"},\"AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain\":{\"type\":\"string\"},\"TurnOffMulticastNameResolution\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Enable insecure guest logons;ExpectedValue\",\"value\":\"[parameters('EnableInsecureGuestLogons')]\"},{\"name\":\"Minimize the number of simultaneous connections to the Internet or a Windows Domain;ExpectedValue\",\"value\":\"[parameters('AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain')]\"},{\"name\":\"Turn off multicast name resolution;ExpectedValue\",\"value\":\"[parameters('TurnOffMulticastNameResolution')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Enable insecure guest logons;ExpectedValue\",\"value\":\"[parameters('EnableInsecureGuestLogons')]\"},{\"name\":\"Minimize the number of simultaneous connections to the Internet or a Windows Domain;ExpectedValue\",\"value\":\"[parameters('AllowSimultaneousConnectionsToTheInternetOrAWindowsDomain')]\"},{\"name\":\"Turn off multicast name resolution;ExpectedValue\",\"value\":\"[parameters('TurnOffMulticastNameResolution')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/985285b7-b97a-419c-8d48-c88cc934c8d8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"985285b7-b97a-419c-8d48-c88cc934c8d8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1076 - Use Of External Information Systems\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1076\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/98a4bd5f-6436-46d4-ad00-930b5b1dfed4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"98a4bd5f-6436-46d4-ad00-930b5b1dfed4\"},{\"properties\":{\"displayName\":\"Ensure that 'HTTP Version' is the latest, if used to run the Api app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for HTTP either due to security flaws or to include additional functionality. Using the latest HTTP version for web apps to take advantage of security fixes, if any, and/or new functionalities of the newer version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.http20Enabled\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/991310cd-e9f3-47bc-b7b6-f57b557d07db\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"991310cd-e9f3-47bc-b7b6-f57b557d07db\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1102 - Audit Events\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1102\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9943c16a-c54c-4b4a-ad28-bfd938cdbf57\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9943c16a-c54c-4b4a-ad28-bfd938cdbf57\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1300 - Identification And Authentication (Organizational Users)\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1300\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/99deec7d-5526-472e-b07c-3645a792026a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"99deec7d-5526-472e-b07c-3645a792026a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1036 - Least Privilege | Non-Privileged Access For Nonsecurity Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1036\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9a16d673-8cf0-4dcf-b1d5-9b3e114fef71\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9a16d673-8cf0-4dcf-b1d5-9b3e114fef71\"},{\"properties\":{\"displayName\":\"FTPS only should be required in your API App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Enable FTPS enforcement for enhanced security\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/ftpsState\",\"in\":[\"FtpsOnly\",\"Disabled\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9a1b8c48-453a-4044-86c3-d8bfd823e4f5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9a1b8c48-453a-4044-86c3-d8bfd823e4f5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1021 - Account Management | Restrictions On Use Of Shared / Group Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1021\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9a3eb0a3-428d-4669-baff-20a14eb4b551\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9a3eb0a3-428d-4669-baff-20a14eb4b551\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Azure SQL Database to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Azure SQL Database to stream to a regional Event Hub on any Azure SQL Database which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"SQL\"},\"parameters\":{\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers/databases\"},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"resources\":[{\"type\":\"Microsoft.Sql/servers/databases/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('fullName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"QueryStoreRuntimeStatistics\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"QueryStoreWaitStatistics\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Errors\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"DatabaseWaitStatistics\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Blocks\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"SQLInsights\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"SQLSecurityAuditEvents\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Timeouts\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"AutomaticTuning\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Deadlocks\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled diagnostic settings for ', parameters('fullName'))]\"}}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"fullName\":{\"value\":\"[field('fullName')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9a7c7a7d-49e5-4213-bea8-6a502b6272e0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9a7c7a7d-49e5-4213-bea8-6a502b6272e0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1049 - System Use Notification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1049\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9adf7ba7-900a-4f35-8d57-9f34aafc405c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9adf7ba7-900a-4f35-8d57-9f34aafc405c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1563 - Allocation Of Resources\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1563\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9afe2edf-232c-4fdf-8e6a-e867a5c525fd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9afe2edf-232c-4fdf-8e6a-e867a5c525fd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1462 - Monitoring Physical Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1462\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9b1f3a9a-13a1-4b40-8420-36bca6fd8c02\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9b1f3a9a-13a1-4b40-8420-36bca6fd8c02\"},{\"properties\":{\"displayName\":\"Microsoft IaaSAntimalware extension should be deployed on Windows servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Windows server VM without Microsoft IaaSAntimalware extension deployed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\"]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"IaaSAntimalware\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Security\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9b597639-28e4-48eb-b506-56b05d366257\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9b597639-28e4-48eb-b506-56b05d366257\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1236 - Software Usage Restrictions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1236\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9ba3ed84-c768-4e18-b87c-34ef1aff1b57\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9ba3ed84-c768-4e18-b87c-34ef1aff1b57\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1525 - Personnel Transfer\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1525\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9be2f688-7a61-45e3-8230-e1ec93893f66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9be2f688-7a61-45e3-8230-e1ec93893f66\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit API Applications that are not using latest supported Java Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported Java version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestJava\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9bfe3727-0a17-471f-a2fe-eddd6b668745\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9bfe3727-0a17-471f-a2fe-eddd6b668745\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1138 - Audit Generation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1138\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9c284fc0-268a-4f29-af44-3c126674edb4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9c284fc0-268a-4f29-af44-3c126674edb4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1135 - Non-Repudiation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1135\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9c308b6b-2429-4b97-86cf-081b8e737b04\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9c308b6b-2429-4b97-86cf-081b8e737b04\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1489 - Location Of Information System Components\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1489\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d0a794f-1444-4c96-9534-e35fc8c39c91\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d0a794f-1444-4c96-9534-e35fc8c39c91\"},{\"properties\":{\"displayName\":\"Ensure that 'Java version' is the latest, if used as a part of the Function app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for Java software either due to security flaws or to include additional functionality. Using the latest Java version for Function apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"JavaLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Latest Java version\",\"description\":\"Latest supported Java version for App Services\"},\"defaultValue\":\"11\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"JAVA\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"like\":\"[concat('*', parameters('JavaLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.javaVersion\",\"like\":\"[concat(parameters('JavaLatestVersion'), '*')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d0b6ea4-93e2-4578-bf2f-6bb17d22b4bc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d0b6ea4-93e2-4578-bf2f-6bb17d22b4bc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1322 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1322\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d1d971e-467e-4278-9633-c74c3d4fecc4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d1d971e-467e-4278-9633-c74c3d4fecc4\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy Log Analytics agent to Linux Azure Arc machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Log Analytics agent to Linux Azure Arc machines if the agent isn't installed.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Monitoring\",\"preview\":true},\"parameters\":{\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Log Analytics workspace\",\"description\":\"Specify the Log Analytics workspace the agent should be connected to. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.HybridCompute/machines/extensions/type\",\"equals\":\"OmsAgentForLinux\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"MMAExtension\",\"vmExtensionPublisher\":\"Microsoft.EnterpriseCloud.Monitoring\",\"vmExtensionType\":\"OmsAgentForLinux\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2019-12-12\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"settings\":{\"workspaceId\":\"[reference(parameters('logAnalytics'), '2015-03-20').customerId]\",\"stopOnMultipleConnections\":\"true\"},\"protectedSettings\":{\"workspaceKey\":\"[listKeys(parameters('logAnalytics'), '2015-03-20').primarySharedKey]\"}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d2b61b4-1d14-4a63-be30-d4498e7ad2cf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d2b61b4-1d14-4a63-be30-d4498e7ad2cf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1233 - Configuration Management Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1233\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d79001f-95fe-45d0-8736-f217e78c1f57\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d79001f-95fe-45d0-8736-f217e78c1f57\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1305 - Identification And Authentication (Org. Users) | Group Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1305\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d9166a8-1722-4b8f-847c-2cf3f2618b3d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d9166a8-1722-4b8f-847c-2cf3f2618b3d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1259 - Contingency Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1259\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9d9e18f7-bad9-4d30-8806-a0c9d5e26208\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d9e18f7-bad9-4d30-8806-a0c9d5e26208\"},{\"properties\":{\"displayName\":\"Access through Internet facing endpoint should be restricted\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Azure Security center has identified some of your Network Security Groups' inbound rules to be too permissive. Inbound rules should not allow access from 'Any' or 'Internet' ranges. This can potentially enable attackers to easily target your resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"unprotectedNetworkEndpoint\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9daedab3-fb2d-461e-b861-71790eead4f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9daedab3-fb2d-461e-b861-71790eead4f6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1500 - Rules Of Behavior\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1500\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9dd5b241-03cb-47d3-a5cd-4b89f9c53c92\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9dd5b241-03cb-47d3-a5cd-4b89f9c53c92\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1482 - Temperature And Humidity Controls | Monitoring With Alarms / Notifications\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1482\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9df4277e-8c88-4d5c-9b1a-541d53d15d7b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9df4277e-8c88-4d5c-9b1a-541d53d15d7b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1553 - Vulnerability Scanning | Breadth / Depth Of Coverage\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1553\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9e5225fe-cdfb-4fce-9aec-0fe20dd53b62\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9e5225fe-cdfb-4fce-9aec-0fe20dd53b62\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1490 - Security Planning Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1490\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9e61da80-0957-4892-b70c-609d5eaafb6b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9e61da80-0957-4892-b70c-609d5eaafb6b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1504 - Information Security Architecture\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1504\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9e7c35d0-12d4-4e0c-80a2-8a352537aefd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9e7c35d0-12d4-4e0c-80a2-8a352537aefd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1609 - Development Process, Standards, And Tools\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1609\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9e93fa71-42ac-41a7-b177-efbfdc53c69f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9e93fa71-42ac-41a7-b177-efbfdc53c69f\"},{\"properties\":{\"displayName\":\"Append a tag and its value from the resource group\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Appends the specified tag with its value from the resource group when any resource which is missing this tag is created or updated. Does not modify the tags of resources created before this policy was applied until those resources are changed. New 'modify' effect policies are available that support remediation of tags on existing resources (see https://aka.ms/modifydoc).\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagName')]]\",\"notEquals\":\"\"}]},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[resourceGroup().tags[parameters('tagName')]]\"}]}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9ea02ca2-71db-412d-8b00-7c7ca9fcd32d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9ea02ca2-71db-412d-8b00-7c7ca9fcd32d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1494 - System Security Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1494\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9ed09d84-3311-4853-8b67-2b55dfa33d09\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9ed09d84-3311-4853-8b67-2b55dfa33d09\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1514 - Personnel Screening | Information With Special Protection Measures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1514\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9ed5ca00-0e43-434e-a018-7aab91461ba7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9ed5ca00-0e43-434e-a018-7aab91461ba7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1187 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1187\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9f2b2f9e-4ba6-46c3-907f-66db138b6f85\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9f2b2f9e-4ba6-46c3-907f-66db138b6f85\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that are not set to the specified time zone\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that are not set to the specified time zone. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsTimeZone\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9f658460-46b7-43af-8565-94fc0662be38\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9f658460-46b7-43af-8565-94fc0662be38\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1354 - Incident Response Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1354\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/9fd92c17-163a-4511-bb96-bbb476449796\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9fd92c17-163a-4511-bb96-bbb476449796\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs on which the Log Analytics agent is not connected as expected\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines on which the Log Analytics agent is not connected to the specified workspaces. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsLogAnalyticsAgentConnection\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a030a57e-4639-4e8f-ade9-a92f33afe7ee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a030a57e-4639-4e8f-ade9-a92f33afe7ee\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1145 - Security Assessments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1145\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a0724970-9c75-4a64-a225-a28002953f28\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a0724970-9c75-4a64-a225-a28002953f28\"},{\"properties\":{\"displayName\":\"Allowed resource types\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables you to specify the resource types that your organization can deploy. Only resource types that support 'tags' and 'location' will be affected by this policy. To restrict all resources please duplicate this policy and change the 'mode' to 'All'.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"General\"},\"parameters\":{\"listOfResourceTypesAllowed\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of resource types that can be deployed.\",\"displayName\":\"Allowed resource types\",\"strongType\":\"resourceTypes\"}}},\"policyRule\":{\"if\":{\"not\":{\"field\":\"type\",\"in\":\"[parameters('listOfResourceTypesAllowed')]\"}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a08ec900-254a-4555-9bf5-e42af04b5c5c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a08ec900-254a-4555-9bf5-e42af04b5c5c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1245 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1245\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a0e45314-57b8-4623-80cd-bbb561f59516\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a0e45314-57b8-4623-80cd-bbb561f59516\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1406 - Maintenance Tools | Inspect Media\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1406\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a0f5339c-9292-43aa-a0bc-d27c6b8e30aa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a0f5339c-9292-43aa-a0bc-d27c6b8e30aa\"},{\"properties\":{\"displayName\":\"Security Center standard pricing tier should be selected\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"The standard pricing tier enables threat detection for networks and virtual machines, providing threat intelligence, anomaly detection, and behavior analytics in Azure Security Center\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Security/pricings\"},{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"exists\":\"true\"},{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"notEquals\":\"Standard\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a1181c5f-672a-477a-979a-7d58aa086233\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a1181c5f-672a-477a-979a-7d58aa086233\"},{\"properties\":{\"displayName\":\"All authorization rules except RootManageSharedAccessKey should be removed from Service Bus namespace\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Service Bus clients should not use a namespace level access policy that provides access to all queues and topics in a namespace. To align with the least privilege security model, you should create access policies at the entity level for queues and topics to provide access to only the specific entity\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Service Bus\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ServiceBus/namespaces/authorizationRules\"},{\"field\":\"name\",\"notEquals\":\"RootManageSharedAccessKey\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a1817ec0-a368-432a-8057-8371e17ac6ee\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a1817ec0-a368-432a-8057-8371e17ac6ee\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1265 - Contingency Plan Testing | Alternate Processing Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1265\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a18adb5b-1db6-4a5b-901a-7d3797d12972\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a18adb5b-1db6-4a5b-901a-7d3797d12972\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Logic Apps to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Logic Apps to stream to a regional Event Hub when any Logic Apps which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Logic Apps in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Logic/workflows\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Logic/workflows/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"WorkflowRuntime\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a1dae6c7-13f3-48ea-a149-ff8442661f60\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a1dae6c7-13f3-48ea-a149-ff8442661f60\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Administrative Templates - System'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - System'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdministrativeTemplatesSystem\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a1e8dda3-9fd2-4835-aec3-0e55531fde33\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a1e8dda3-9fd2-4835-aec3-0e55531fde33\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1612 - Developer Security Architecture And Design\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1612\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a2037b3d-8b04-4171-8610-e6d4f1d08db5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a2037b3d-8b04-4171-8610-e6d4f1d08db5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1197 - Configuration Change Control | Test / Validate / Document Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1197\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a20d2eaa-88e2-4907-96a2-8f3a05797e5c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a20d2eaa-88e2-4907-96a2-8f3a05797e5c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1275 - Alternate Processing Site | Separation From Primary Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1275\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a23d9d53-ad2e-45ef-afd5-e6d10900a737\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a23d9d53-ad2e-45ef-afd5-e6d10900a737\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1690 - Information System Monitoring | System-Wide Intrusion Detection System\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1690\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a2567a23-d1c3-4783-99f3-d471302a4d6b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a2567a23-d1c3-4783-99f3-d471302a4d6b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1410 - Maintenance Tools | Prevent Unauthorized Removal\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1410\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a2596a9f-e59f-420d-9625-6e0b536348be\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a2596a9f-e59f-420d-9625-6e0b536348be\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1059 - Remote Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1059\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a29b5d9f-4953-4afe-b560-203a6410b6b4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a29b5d9f-4953-4afe-b560-203a6410b6b4\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that are not joined to the specified domain\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that are not joined to the specified domain. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDomainMembership\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a29ee95c-0395-4515-9851-cc04ffe82a91\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a29ee95c-0395-4515-9851-cc04ffe82a91\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1532 - Third-Party Personnel Security\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1532\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a2c66299-9017-4d95-8040-8bdbf7901d52\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a2c66299-9017-4d95-8040-8bdbf7901d52\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1664 - Protection Of Information At Rest | Cryptographic Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1664\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a2cdf6b8-9505-4619-b579-309ba72037ac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a2cdf6b8-9505-4619-b579-309ba72037ac\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1252 - Contingency Plan | Capacity Planning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1252\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a328fd72-8ff5-4f96-8c9c-b30ed95db4ab\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a328fd72-8ff5-4f96-8c9c-b30ed95db4ab\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1238 - User-Installed Software\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1238\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a36cedd4-3ffd-4b1f-8b18-aa71d8d87ce1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a36cedd4-3ffd-4b1f-8b18-aa71d8d87ce1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1693 - Information System Monitoring | System-Generated Alerts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1693\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a450eba6-2efc-4a00-846a-5804a93c6b77\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a450eba6-2efc-4a00-846a-5804a93c6b77\"},{\"properties\":{\"displayName\":\"Audit usage of custom RBAC rules\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit built-in roles such as 'Owner, Contributer, Reader' instead of custom RBAC roles, which are error prone. Using custom roles is treated as an exception and requires a rigorous review and threat modeling\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"General\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Authorization/roleDefinitions\"},{\"field\":\"Microsoft.Authorization/roleDefinitions/type\",\"equals\":\"CustomRole\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a451c1ef-c6ca-483d-87ed-f49761e3ffb5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a451c1ef-c6ca-483d-87ed-f49761e3ffb5\"},{\"properties\":{\"displayName\":\"Web Application should only be accessible over HTTPS\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use of HTTPS ensures server/service authentication and protects data in transit from network layer eavesdropping attacks.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"},{\"field\":\"Microsoft.Web/sites/httpsOnly\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a4af4a39-4135-47fb-b175-47fbdf85311d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a4af4a39-4135-47fb-b175-47fbdf85311d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1617 - Application Partitioning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1617\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a631d8f5-eb81-4f9d-9ee1-74431371e4a3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a631d8f5-eb81-4f9d-9ee1-74431371e4a3\"},{\"properties\":{\"displayName\":\"Auditing on SQL server should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Auditing on your SQL Server should be enabled to track database activities across all databases on the server and save them in an audit log.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"setting\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Desired Auditing setting\"},\"allowedValues\":[\"enabled\",\"disabled\"],\"defaultValue\":\"enabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/auditingSettings\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/auditingSettings.state\",\"equals\":\"[parameters('setting')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a6fb4358-5bf4-4ad7-ba82-2cd2f41ce5e9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a6fb4358-5bf4-4ad7-ba82-2cd2f41ce5e9\"},{\"properties\":{\"displayName\":\"The Log Analytics agent should be installed on virtual machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Windows/Linux virtual machines if the Log Analytics agent is not installed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"in\":[\"MicrosoftMonitoringAgent\",\"OmsAgentForLinux\"]},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/settings.workspaceId\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a70ca396-0a34-413a-88e1-b956c1e683be\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a70ca396-0a34-413a-88e1-b956c1e683be\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1431 - Media Storage\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1431\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a7173c52-2b99-4696-a576-63dd5f970ef4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a7173c52-2b99-4696-a576-63dd5f970ef4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1644 - Cryptographic Key Establishment And Management | Availability\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1644\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a7211477-c970-446b-b4af-062f37461147\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a7211477-c970-446b-b4af-062f37461147\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1027 - Access Enforcement\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1027\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a76ca9b0-3f4a-4192-9a38-b25e4f8ae48c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a76ca9b0-3f4a-4192-9a38-b25e4f8ae48c\"},{\"properties\":{\"displayName\":\"Azure DDoS Protection Standard should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"DDoS protection standard should be enabled for all virtual networks with a subnet that is part of an application gateway with a public IP.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"microsoft.network/virtualNetworks\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"EnableDDoSProtection\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a7aca53f-2ed4-4466-a25e-0b45ade68efd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a7aca53f-2ed4-4466-a25e-0b45ade68efd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1570 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1570\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a7fcf38d-bb09-4600-be7d-825046eb162a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a7fcf38d-bb09-4600-be7d-825046eb162a\"},{\"properties\":{\"displayName\":\"Require encryption on Data Lake Store accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy ensures encryption is enabled on all Data Lake Store accounts\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Data Lake\"},\"parameters\":{},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeStore/accounts\"},{\"field\":\"Microsoft.DataLakeStore/accounts/encryptionState\",\"equals\":\"Disabled\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a7ff3161-0087-490a-9ad9-ad6217f4f43a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a7ff3161-0087-490a-9ad9-ad6217f4f43a\"},{\"properties\":{\"displayName\":\"SQL Managed Instance should have the minimal TLS version of 1.2\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Setting minimal TLS version to 1.2 improves security by ensuring your SQL Managed Instance can only be accessed from clients using TLS 1.2. Using versions of TLS less than 1.2 is not reccomended since they have well documented security vunerabilities.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},{\"anyOf\":[{\"field\":\"Microsoft.Sql/managedInstances/minimalTlsVersion\",\"exists\":false},{\"field\":\"Microsoft.Sql/managedInstances/minimalTlsVersion\",\"notEquals\":\"1.2\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a8793640-60f7-487c-b5c3-1d37215905c4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a8793640-60f7-487c-b5c3-1d37215905c4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1295 - Information System Recovery And Reconstitution\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1295\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a895fbdb-204d-4302-9689-0a59dc42b3d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a895fbdb-204d-4302-9689-0a59dc42b3d9\"},{\"properties\":{\"displayName\":\"[Deprecated]: Monitor unencrypted SQL databases in Azure Security Center\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Unencrypted SQL databases will be monitored by Azure Security Center as recommendations. This policy is deprecated and replaced by the following policy: Transparent Data Encryption on SQL databases should be enabled'\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.SQL/servers/databases\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"encryption\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a8bef009-a5c9-4d0f-90d7-6018734e8a16\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a8bef009-a5c9-4d0f-90d7-6018734e8a16\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1283 - Telecommunications Services | Separation Of Primary / Alternate Providers\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1283\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a9172e76-7f56-46e9-93bf-75d69bdb5491\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a9172e76-7f56-46e9-93bf-75d69bdb5491\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1400 - Controlled Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1400\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a96d5098-a604-4cdf-90b1-ef6449a27424\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a96d5098-a604-4cdf-90b1-ef6449a27424\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1118 - Audit Review, Analysis, And Reporting | Correlate Audit Repositories\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1118\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a96f743d-a195-420d-983a-08aa06bc441e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a96f743d-a195-420d-983a-08aa06bc441e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1199 - Configuration Change Control | Cryptography Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1199\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a9a08d1c-09b1-48f1-90ea-029bbdf7111e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a9a08d1c-09b1-48f1-90ea-029bbdf7111e\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Detailed Tracking'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Detailed Tracking'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesDetailedTracking\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a9a33475-481d-4b81-9116-0bf02ffe67e8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a9a33475-481d-4b81-9116-0bf02ffe67e8\"},{\"properties\":{\"displayName\":\"Deploy network watcher when virtual networks are created\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a network watcher resource in regions with virtual networks. You need to ensure existence of a resource group named networkWatcherRG, which will be used to deploy network watcher instances.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks\"},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkWatchers\",\"resourceGroupName\":\"networkWatcherRG\",\"existenceCondition\":{\"field\":\"location\",\"equals\":\"[field('location')]\"},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2016-09-01\",\"type\":\"Microsoft.Network/networkWatchers\",\"name\":\"[concat('networkWatcher_', parameters('location'))]\",\"location\":\"[parameters('location')]\"}]},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a9b99dd8-06c5-4317-8629-9d86a3c6e7d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a9b99dd8-06c5-4317-8629-9d86a3c6e7d9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1511 - Personnel Screening\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1511\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a9eae324-d327-4539-9293-b48e122465f8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a9eae324-d327-4539-9293-b48e122465f8\"},{\"properties\":{\"displayName\":\"MFA should be enabled on accounts with owner permissions on your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Multi-Factor Authentication (MFA) should be enabled for all subscription accounts with owner permissions to prevent a breach of accounts or resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"EnableMFAForOwnerPermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aa633080-8b72-40c4-a2d7-d00c03e80bed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aa633080-8b72-40c4-a2d7-d00c03e80bed\"},{\"properties\":{\"displayName\":\"Ensure that Register with Azure Active Directory is enabled on WEB App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Managed service identity in App Service makes the app more secure by eliminating secrets from the app, such as credentials in the connection strings. When registering with Azure Active Directory in the app service, the app will connect to other Azure services securely without the need of username and passwords\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.managedServiceIdentityId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aa81768c-cb87-4ce2-bfaa-00baa10d760c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aa81768c-cb87-4ce2-bfaa-00baa10d760c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1539 - Security Categorization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1539\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aabb155f-e7a5-4896-a767-e918bfae2ee0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aabb155f-e7a5-4896-a767-e918bfae2ee0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1006 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1006\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aae8d54c-4bce-4c04-b3aa-5b65b67caac8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aae8d54c-4bce-4c04-b3aa-5b65b67caac8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1461 - Monitoring Physical Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1461\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aafef03e-fea8-470b-88fa-54bd1fcd7064\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aafef03e-fea8-470b-88fa-54bd1fcd7064\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1073 - Access Control For Mobile Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1073\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ab55cdb0-c7dd-4bd8-ae22-a7cea7594e9c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ab55cdb0-c7dd-4bd8-ae22-a7cea7594e9c\"},{\"properties\":{\"displayName\":\"Ensure that 'PHP version' is the latest, if used as a part of the Function app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for PHP software either due to security flaws or to include additional functionality. Using the latest PHP version for Function apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"PHPLatestVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Latest PHP version\",\"description\":\"Latest supported PHP version for App Services\"},\"defaultValue\":\"7.3\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"notContains\":\"PHP\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"[concat('PHP|', parameters('PHPLatestVersion'))]\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"\"}]},{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/web.linuxFxVersion\",\"equals\":\"\"},{\"field\":\"Microsoft.Web/sites/config/web.phpVersion\",\"equals\":\"[parameters('PHPLatestVersion')]\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ab965db2-d2bf-4b64-8b39-c38ec8179461\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ab965db2-d2bf-4b64-8b39-c38ec8179461\"},{\"properties\":{\"displayName\":\"[Deprecated]: Automatic provisioning of security monitoring agent\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Installs security agent on VMs for advanced security alerts and preventions in Azure Security Center. Applies only for subscriptions that use Azure Security Center.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"AuditIfNotExists\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"securityAgent\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/abcc6037-1fc4-47f6-aac5-89706589be24\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"abcc6037-1fc4-47f6-aac5-89706589be24\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1323 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1323\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/abe8f70b-680f-470c-9b86-a7edfb664ecc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"abe8f70b-680f-470c-9b86-a7edfb664ecc\"},{\"properties\":{\"displayName\":\"Advanced data security should be enabled on your SQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit SQL servers without Advanced Data Security\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"Default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/securityAlertPolicies/state\",\"equals\":\"Enabled\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/abfb4388-5bf4-4ad7-ba82-2cd2f41ceae9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"abfb4388-5bf4-4ad7-ba82-2cd2f41ceae9\"},{\"properties\":{\"displayName\":\"Advanced data security should be enabled on SQL Managed Instance\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit each SQL Managed Instance without advanced data security.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/managedInstances/securityAlertPolicies\",\"name\":\"Default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/managedInstances/securityAlertPolicies/state\",\"equals\":\"Enabled\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/abfb7388-5bf4-4ad7-ba99-2cd2f41cebb9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"abfb7388-5bf4-4ad7-ba99-2cd2f41cebb9\"},{\"properties\":{\"displayName\":\"Enable Azure Security Center on your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Identifies existing subscriptions that are not monitored by Azure Security Center (ASC).\\nSubscriptions not monitored by ASC will be registered to the free pricing tier.\\nSubscriptions already monitored by ASC (free or standard), will be considered compliant.\\nTo register newly created subscriptions, open the compliance tab, select the relevant non-compliant assignment and create a remediation task.\\nRepeat this step when you have one or more new subscriptions you want to monitor with Security Center.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"VirtualMachines\",\"deploymentScope\":\"subscription\",\"existenceScope\":\"subscription\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\"],\"existenceCondition\":{\"anyof\":[{\"field\":\"microsoft.security/pricings/pricingTier\",\"equals\":\"standard\"},{\"field\":\"microsoft.security/pricings/pricingTier\",\"equals\":\"free\"}]},\"deployment\":{\"location\":\"westeurope\",\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Security/pricings\",\"apiVersion\":\"2018-06-01\",\"name\":\"VirtualMachines\",\"properties\":{\"pricingTier\":\"free\"}}],\"outputs\":{}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ac076320-ddcf-4066-b451-6154267e8ad2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ac076320-ddcf-4066-b451-6154267e8ad2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1056 - Session Termination | User-Initiated Logouts / Message Displays\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1056\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ac43352f-df83-4694-8738-cfce549fd08d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ac43352f-df83-4694-8738-cfce549fd08d\"},{\"properties\":{\"displayName\":\"[Preview]: Role-Based Access Control (RBAC) should be used on Kubernetes Services\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"To provide granular filtering on the actions that users can perform, use Role-Based Access Control (RBAC) to manage permissions in Kubernetes Service Clusters and configure relevant authorization policies.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Security Center\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"anyOf\":[{\"field\":\"Microsoft.ContainerService/managedClusters/enableRBAC\",\"exists\":\"false\"},{\"field\":\"Microsoft.ContainerService/managedClusters/enableRBAC\",\"equals\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ac4a19c2-fa67-49b4-8ae5-0b2e78c49457\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ac4a19c2-fa67-49b4-8ae5-0b2e78c49457\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation if 'environment' tag value in allowed values\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation if the 'environment' tag is set to one of the following values: production, dev, test, staging\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Tags\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"tags['environment']\",\"in\":[\"production\",\"dev\",\"test\",\"staging\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ac7e5fc0-c029-4b12-91d4-a8500ce697f9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ac7e5fc0-c029-4b12-91d4-a8500ce697f9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1569 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1569\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ad2f8e61-a564-4dfd-8eaa-816f5be8cb34\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ad2f8e61-a564-4dfd-8eaa-816f5be8cb34\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1454 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1454\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ad58985d-ab32-4f99-8bd3-b7e134c90229\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ad58985d-ab32-4f99-8bd3-b7e134c90229\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1025 - Account Management | Account Monitoring / Atypical Usage\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1025\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/adfe020d-0a97-45f4-a39c-696ef99f3a95\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"adfe020d-0a97-45f4-a39c-696ef99f3a95\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1272 - Alternate Processing Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1272\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ae46cf7a-e3fd-427b-9b91-44bc78e2d9d8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ae46cf7a-e3fd-427b-9b91-44bc78e2d9d8\"},{\"properties\":{\"displayName\":\"SQL Server should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any SQL Server not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/virtualNetworkRules/virtualNetworkSubnetId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ae5d2f14-d830-42b6-9899-df6cfe9c71a3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ae5d2f14-d830-42b6-9899-df6cfe9c71a3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1598 - Developer Configuration Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1598\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ae7e1f5e-2d63-4b38-91ef-bce14151cce3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ae7e1f5e-2d63-4b38-91ef-bce14151cce3\"},{\"properties\":{\"displayName\":\"[Deprecated]: Email notifications to admins should be enabled in SQL Managed Instance advanced data security settings\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit that 'email notification to admins and subscription owners' is enabled in SQL Managed Instance advanced threat protection settings. This setting ensures that any detections of anomalous activities on SQL Managed Instance are reported as soon as possible to the admins.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/managedInstances/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/managedInstances/securityAlertPolicies/emailAccountAdmins\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aeb23562-188d-47cb-80b8-551f16ef9fff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aeb23562-188d-47cb-80b8-551f16ef9fff\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1413 - Nonlocal Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1413\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/aeedddb6-6bc0-42d5-809b-80048033419d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"aeedddb6-6bc0-42d5-809b-80048033419d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1710 - Security Function Verification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1710\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/af2a93c8-e6dd-4c94-acdd-4a2eedfc478e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"af2a93c8-e6dd-4c94-acdd-4a2eedfc478e\"},{\"properties\":{\"displayName\":\"Monitor missing Endpoint Protection in Azure Security Center\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Servers without an installed Endpoint Protection agent will be monitored by Azure Security Center as recommendations\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"endpointProtection\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/af6cd1bd-1635-48cb-bde7-5b15693900b9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"af6cd1bd-1635-48cb-bde7-5b15693900b9\"},{\"properties\":{\"displayName\":\"[Deprecated]: Monitor unaudited SQL servers in Azure Security Center\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"SQL servers which don't have SQL auditing turned on will be monitored by Azure Security Center as recommendations. This policy is deprecated and replaced by the following policy: 'Auditing should be enabled on advanced data security settings on SQL Server'\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.SQL/servers\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"auditing\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/af8051bf-258b-44e2-a2bf-165330459f9d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"af8051bf-258b-44e2-a2bf-165330459f9d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1645 - Cryptographic Key Establishment And Management | Symmetric Keys\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1645\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/afbd0baf-ff1a-4447-a86f-088a97347c0c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"afbd0baf-ff1a-4447-a86f-088a97347c0c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1725 - Error Handling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1725\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/afc234b5-456b-4aa5-b3e2-ce89108124cc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"afc234b5-456b-4aa5-b3e2-ce89108124cc\"},{\"properties\":{\"displayName\":\"Activity log should be retained for at least one year\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits the activity log if the retention is not set for 365 days or forever (retention days set to 0).\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/logProfiles\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/logProfiles/retentionPolicy.enabled\",\"equals\":\"true\"},{\"field\":\"Microsoft.Insights/logProfiles/retentionPolicy.days\",\"equals\":\"365\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/logProfiles/retentionPolicy.enabled\",\"equals\":\"false\"},{\"field\":\"Microsoft.Insights/logProfiles/retentionPolicy.days\",\"equals\":\"0\"}]}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b02aacc0-b073-424e-8298-42b22829ee0a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b02aacc0-b073-424e-8298-42b22829ee0a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1429 - Media Marking\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1429\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b07c9b24-729e-4e85-95fc-f224d2d08a80\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b07c9b24-729e-4e85-95fc-f224d2d08a80\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1711 - Security Function Verification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1711\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b083a535-a66a-41ec-ba7f-f9498bf67cde\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b083a535-a66a-41ec-ba7f-f9498bf67cde\"},{\"properties\":{\"displayName\":\"Management ports of virtual machines should be protected with just-in-time network access control\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Possible network Just In Time (JIT) access will be monitored by Azure Security Center as recommendations\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"jitNetworkAccess\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b0f33259-77d7-4c9e-aac6-3aabcfae693c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b0f33259-77d7-4c9e-aac6-3aabcfae693c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1571 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1571\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b11c985b-f2cd-4bd7-85f4-b52426edf905\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b11c985b-f2cd-4bd7-85f4-b52426edf905\"},{\"properties\":{\"displayName\":\"Show audit results from Linux VMs that do not have the passwd file permissions set to 0644\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Linux virtual machines that do not have the passwd file permissions set to 0644. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordPolicy_msid121\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b18175dd-c599-4c64-83ba-bb018a06d35b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b18175dd-c599-4c64-83ba-bb018a06d35b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1537 - Risk Assessment Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1537\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b19454ca-0d70-42c0-acf5-ea1c1e5726d1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b19454ca-0d70-42c0-acf5-ea1c1e5726d1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1091 - Security Awareness Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1091\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b23bd715-5d1c-4e5c-9759-9cbdf79ded9d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b23bd715-5d1c-4e5c-9759-9cbdf79ded9d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1078 - Use Of External Information Systems | Limits On Authorized Use\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1078\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b25faf85-8a16-4f28-8e15-d05c0072d64d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b25faf85-8a16-4f28-8e15-d05c0072d64d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1009 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1009\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b26f8610-e615-47c2-abd6-c00b2b0b503a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b26f8610-e615-47c2-abd6-c00b2b0b503a\"},{\"properties\":{\"displayName\":\"All authorization rules except RootManageSharedAccessKey should be removed from Event Hub namespace\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Event Hub clients should not use a namespace level access policy that provides access to all queues and topics in a namespace. To align with the least privilege security model, you should create access policies at the entity level for queues and topics to provide access to only the specific entity\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Event Hub\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.EventHub/namespaces/authorizationRules\"},{\"field\":\"name\",\"notEquals\":\"RootManageSharedAccessKey\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b278e460-7cfc-4451-8294-cccc40a940d7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b278e460-7cfc-4451-8294-cccc40a940d7\"},{\"properties\":{\"displayName\":\"Inherit a tag from the subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Adds or replaces the specified tag and value from the containing subscription when any resource is created or updated. Existing resources can be remediated by triggering a remediation task.\",\"metadata\":{\"category\":\"Tags\",\"version\":\"1.0.0\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"notEquals\":\"[subscription().tags[parameters('tagName')]]\"},{\"value\":\"[subscription().tags[parameters('tagName')]]\",\"notEquals\":\"\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"addOrReplace\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[subscription().tags[parameters('tagName')]]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b27a0cbd-a167-4dfa-ae64-4337be671140\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b27a0cbd-a167-4dfa-ae64-4337be671140\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1234 - Software Usage Restrictions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1234\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b293f881-361c-47ed-b997-bc4e2296bc0b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b293f881-361c-47ed-b997-bc4e2296bc0b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1107 - Content Of Audit Records\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1107\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b29ed931-8e21-4779-8458-27916122a904\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b29ed931-8e21-4779-8458-27916122a904\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows web servers that are not using secure communication protocols\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows web servers that are not using secure communication protocols (TLS 1.1 or TLS 1.2). It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"MinimumTLSVersion\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Minimum TLS version\",\"description\":\"The minimum TLS protocol version that should be enabled. Windows web servers with lower TLS versions will be marked as non-compliant.\"},\"allowedValues\":[\"1.1\",\"1.2\"],\"defaultValue\":\"1.1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AuditSecureProtocol\",\"existenceCondition\":{\"anyOf\":[{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[SecureWebServer]s1;MinimumTLSVersion', '=', parameters('MinimumTLSVersion')))]\"},{\"allOf\":[{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"\"},{\"value\":\"[parameters('MinimumTLSVersion')]\",\"equals\":\"1.1\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AuditSecureProtocol\"},\"MinimumTLSVersion\":{\"value\":\"[parameters('MinimumTLSVersion')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"MinimumTLSVersion\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[SecureWebServer]s1;MinimumTLSVersion\",\"value\":\"[parameters('MinimumTLSVersion')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[SecureWebServer]s1;MinimumTLSVersion\",\"value\":\"[parameters('MinimumTLSVersion')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b2fc8f91-866d-4434-9089-5ebfe38d6fd8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b2fc8f91-866d-4434-9089-5ebfe38d6fd8\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Logon-Logoff'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Logon-Logoff'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesLogonLogoff\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b3802d79-dd88-4bce-b81d-780218e48280\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b3802d79-dd88-4bce-b81d-780218e48280\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1041 - Least Privilege | Privilege Levels For Code Execution\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1041\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b3d8d15b-627a-4219-8c96-4d16f788888b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b3d8d15b-627a-4219-8c96-4d16f788888b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1380 - Incident Response Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1380\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b4319b7e-ea8d-42ff-8a67-ccd462972827\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b4319b7e-ea8d-42ff-8a67-ccd462972827\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Search services should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Search\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Search/searchServices\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b4330a05-a843-4bc8-bf9a-cacce50c67f4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b4330a05-a843-4bc8-bf9a-cacce50c67f4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1172 - Internal System Connections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1172\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b43e946e-a4c8-4b92-8201-4a39331db43c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b43e946e-a4c8-4b92-8201-4a39331db43c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1672 - Flaw Remediation | Central Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1672\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b45fe972-904e-45a4-ac20-673ba027a301\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b45fe972-904e-45a4-ac20-673ba027a301\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1131 - Protection Of Audit Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1131\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b472a17e-c2bc-493f-b50b-42d55a346962\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b472a17e-c2bc-493f-b50b-42d55a346962\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Sockets state for an API App\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"The Web Sockets protocol is vulnerable to different types of security threats. Use of Web Sockets within an API app must be carefully reviewed.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"DisableWebSockets\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b48334a4-911b-4084-b1ab-3e6a4e50b951\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b48334a4-911b-4084-b1ab-3e6a4e50b951\"},{\"properties\":{\"displayName\":\"A security contact phone number should be provided for your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enter a phone number to receive notifications when Azure Security Center detects compromised resources\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/securityContacts\",\"existenceCondition\":{\"field\":\"Microsoft.Security/securityContacts/phone\",\"notEquals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b4d66858-c922-44e3-9566-5cdb7a7be744\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b4d66858-c922-44e3-9566-5cdb7a7be744\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1286 - Telecommunications Services | Provider Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1286\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b4f9b47a-2116-4e6f-88db-4edbf22753f1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b4f9b47a-2116-4e6f-88db-4edbf22753f1\"},{\"properties\":{\"displayName\":\"Public network access should be disabled for PostgreSQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits PostgreSQL servers in your environment with public network access enabled. For more details, visit https://go.microsoft.com/fwlink/?linkid=2120015.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},{\"field\":\"Microsoft.DBforPostgreSQL/servers/publicNetworkAccess\",\"notEquals\":\"Disabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b52376f7-9612-48a1-81cd-1ffe4b61032c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b52376f7-9612-48a1-81cd-1ffe4b61032c\"},{\"properties\":{\"displayName\":\"Service Fabric clusters should only use Azure Active Directory for client authentication\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit usage of client authentication only via Azure Active Directory in Service Fabric\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Service Fabric\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ServiceFabric/clusters\"},{\"anyOf\":[{\"field\":\"Microsoft.ServiceFabric/clusters/azureActiveDirectory.tenantId\",\"exists\":\"false\"},{\"field\":\"Microsoft.ServiceFabric/clusters/azureActiveDirectory.tenantId\",\"equals\":\"\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b54ed75b-3e1a-44ac-a333-05ba39b99ff0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b54ed75b-3e1a-44ac-a333-05ba39b99ff0\"},{\"properties\":{\"displayName\":\"Deploy Advanced Threat Protection for Cosmos DB Accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables Advanced Threat Protection across Cosmos DB accounts.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Cosmos DB\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DocumentDB/databaseAccounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/advancedThreatProtectionSettings\",\"name\":\"current\",\"existenceCondition\":{\"field\":\"Microsoft.Security/advancedThreatProtectionSettings/isEnabled\",\"equals\":\"true\"},\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"cosmosDbAccountName\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2019-01-01\",\"type\":\"Microsoft.DocumentDB/databaseAccounts/providers/advancedThreatProtectionSettings\",\"name\":\"[concat(parameters('cosmosDbAccountName'), '/Microsoft.Security/current')]\",\"properties\":{\"isEnabled\":true}}]},\"parameters\":{\"cosmosDbAccountName\":{\"value\":\"[field('name')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b5f04e03-92a3-4b09-9410-2cc5e5047656\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b5f04e03-92a3-4b09-9410-2cc5e5047656\"},{\"properties\":{\"displayName\":\"Diagnostic logs in App Services should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit enabling of diagnostic logs on the app. This enables you to recreate activity trails for investigation purposes if a security incident occurs or your network is compromised\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"notContains\":\"functionapp\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Web/sites/config/detailedErrorLoggingEnabled\",\"equals\":\"true\"},{\"field\":\"Microsoft.Web/sites/config/httpLoggingEnabled\",\"equals\":\"true\"},{\"field\":\"Microsoft.Web/sites/config/requestTracingEnabled\",\"equals\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b607c5de-e7d9-4eee-9e5c-83f1bcee4fa0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b607c5de-e7d9-4eee-9e5c-83f1bcee4fa0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1419 - Nonlocal Maintenance | Cryptographic Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1419\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b6747bf9-2b97-45b8-b162-3c8becb9937d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b6747bf9-2b97-45b8-b162-3c8becb9937d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1301 - Identification And Authentication (Org. Users) | Network Access To Privileged Accounts\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1301\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b6a8e0cc-ac23-468b-abe4-a8a1cc6d7a08\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b6a8e0cc-ac23-468b-abe4-a8a1cc6d7a08\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1568 - Acquisition Process\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1568\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b6a8eae8-9854-495a-ac82-d2cd3eac02a6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b6a8eae8-9854-495a-ac82-d2cd3eac02a6\"},{\"properties\":{\"displayName\":\"Network Watcher should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Network Watcher is a regional service that enables you to monitor and diagnose conditions at a network scenario level in, to, and from Azure. Scenario level monitoring enables you to diagnose problems at an end to end network level view. Network diagnostic and visualization tools available with Network Watcher help you understand, diagnose, and gain insights to your network in Azure.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"listOfLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Locations\",\"description\":\"Audit if Network Watcher is not enabled for region(s).\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkWatchers\",\"resourceGroupName\":\"NetworkWatcherRG\",\"existenceCondition\":{\"field\":\"location\",\"in\":\"[parameters('listOfLocations')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b6e2945c-0b7b-40f5-9233-7a5323b5cdc6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b6e2945c-0b7b-40f5-9233-7a5323b5cdc6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1608 - Supply Chain Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1608\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b73b7b3b-677c-4a2a-b949-ad4dc4acd89f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b73b7b3b-677c-4a2a-b949-ad4dc4acd89f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1401 - Controlled Maintenance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1401\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b78ee928-e3c1-4569-ad97-9f8c4b629847\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b78ee928-e3c1-4569-ad97-9f8c4b629847\"},{\"properties\":{\"displayName\":\"API App should only be accessible over HTTPS\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use of HTTPS ensures server/service authentication and protects data in transit from network layer eavesdropping attacks.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"},{\"field\":\"Microsoft.Web/sites/httpsOnly\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b7ddfbdc-1260-477d-91fd-98bd9be789a6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b7ddfbdc-1260-477d-91fd-98bd9be789a6\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs in which the Administrators group does not contain only the specified members\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines in which the Administrators group does not contain only the specified members. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"Members\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Members\",\"description\":\"A semicolon-separated list of all the expected members of the Administrators local group. Ex: Administrator; myUser1; myUser2\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AdministratorsGroupMembers\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[LocalGroup]AdministratorsGroup;Members', '=', parameters('Members')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AdministratorsGroupMembers\"},\"Members\":{\"value\":\"[parameters('Members')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"Members\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LocalGroup]AdministratorsGroup;Members\",\"value\":\"[parameters('Members')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[LocalGroup]AdministratorsGroup;Members\",\"value\":\"[parameters('Members')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b821191b-3a12-44bc-9c38-212138a29ff3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b821191b-3a12-44bc-9c38-212138a29ff3\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Accounts'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Accounts'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsAccounts\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b872a447-cc6f-43b9-bccf-45703cd81607\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b872a447-cc6f-43b9-bccf-45703cd81607\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Logic Apps to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Logic Apps to stream to a regional Log Analytics workspace when any Logic Apps which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Logic/workflows\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Logic/workflows/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"WorkflowRuntime\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b889a06c-ec72-4b03-910a-cb169ee18721\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b889a06c-ec72-4b03-910a-cb169ee18721\"},{\"properties\":{\"displayName\":\"An activity log alert should exist for specific Administrative operations\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits specific Administrative operations with no activity log alerts configured.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"operationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Operation Name\",\"description\":\"Administrative Operation name for which activity log alert should be configured\"},\"allowedValues\":[\"Microsoft.Sql/servers/firewallRules/write\",\"Microsoft.Sql/servers/firewallRules/delete\",\"Microsoft.Network/networkSecurityGroups/write\",\"Microsoft.Network/networkSecurityGroups/delete\",\"Microsoft.ClassicNetwork/networkSecurityGroups/write\",\"Microsoft.ClassicNetwork/networkSecurityGroups/delete\",\"Microsoft.Network/networkSecurityGroups/securityRules/write\",\"Microsoft.Network/networkSecurityGroups/securityRules/delete\",\"Microsoft.ClassicNetwork/networkSecurityGroups/securityRules/write\",\"Microsoft.ClassicNetwork/networkSecurityGroups/securityRules/delete\"]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/ActivityLogAlerts\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/enabled\",\"equals\":\"true\"},{\"count\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"category\"},{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].equals\",\"equals\":\"Administrative\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"operationName\"},{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].equals\",\"equals\":\"[parameters('operationName')]\"}]}]}},\"equals\":2},{\"not\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"category\"}},{\"not\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"operationName\"}}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b954148f-4c11-4c38-8221-be76711e194a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b954148f-4c11-4c38-8221-be76711e194a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1257 - Contingency Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1257\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b958b241-4245-4bd6-bd2d-b8f0779fb543\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b958b241-4245-4bd6-bd2d-b8f0779fb543\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1186 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1186\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b95ba3bd-4ded-49ea-9d10-c6f4b680813d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b95ba3bd-4ded-49ea-9d10-c6f4b680813d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1447 - Physical Access Authorizations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1447\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b9783a99-98fe-4a95-873f-29613309fe9a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b9783a99-98fe-4a95-873f-29613309fe9a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1625 - Boundary Protection | Access Points\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1625\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b9b66a4d-70a1-4b47-8fa1-289cec68c605\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b9b66a4d-70a1-4b47-8fa1-289cec68c605\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1610 - Development Process, Standards, And Tools\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1610\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b9f3fb54-4222-46a1-a308-4874061f8491\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b9f3fb54-4222-46a1-a308-4874061f8491\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Recovery console'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Recovery console'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsRecoveryconsole\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ba12366f-f9a6-42b8-9d98-157d0b1a837b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ba12366f-f9a6-42b8-9d98-157d0b1a837b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1606 - Developer Security Testing And Evaluation | Threat And Vulnerability Analyses\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1606\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/baa8a9a4-5bbe-4c72-98f6-a3a47ae2b1ca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"baa8a9a4-5bbe-4c72-98f6-a3a47ae2b1ca\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1726 - Information Handling And Retention\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1726\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/baff1279-05e0-4463-9a70-8ba5de4c7aa4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"baff1279-05e0-4463-9a70-8ba5de4c7aa4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1166 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1166\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bb02733d-3cc5-4bb0-a6cd-695ba2c2272e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bb02733d-3cc5-4bb0-a6cd-695ba2c2272e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1188 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1188\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bb20548a-c926-4e4d-855c-bcddc6faf95e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bb20548a-c926-4e4d-855c-bcddc6faf95e\"},{\"properties\":{\"displayName\":\"Non-internet-facing virtual machines should be protected with network security groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Protect your non-internet-facing virtual machines from potential threats by restricting access with network security groups (NSG). Learn more about controlling traffic with NSGs at https://aka.ms/nsg-doc\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"networkSecurityGroupsOnInternalVirtualMachines\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bb91dfba-c30d-4263-9add-9c2384e659a6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bb91dfba-c30d-4263-9add-9c2384e659a6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1533 - Third-Party Personnel Security\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1533\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bba2a036-fb3b-4261-b1be-a13dfb5fbcaa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bba2a036-fb3b-4261-b1be-a13dfb5fbcaa\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Microsoft Network Client'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Microsoft Network Client'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"MicrosoftNetworkClientDigitallySignCommunicationsAlways\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Microsoft network client: Digitally sign communications (always)\",\"description\":\"Specifies whether packet signing is required by the SMB client component.\"},\"defaultValue\":\"1\"},\"MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Microsoft network client: Send unencrypted password to third-party SMB servers\",\"description\":\"Specifies whether the SMB redirector will send plaintext passwords during authentication to third-party SMB servers that do not support password encryption. It is recommended that you disable this policy setting unless there is a strong business case to enable it.\"},\"defaultValue\":\"0\"},\"MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Microsoft network server: Amount of idle time required before suspending session\",\"description\":\"Specifies the amount of continuous idle time that must pass in an SMB session before the session is suspended because of inactivity. The format of the value is two integers separated by a comma, denoting an inclusive range.\"},\"defaultValue\":\"1,15\"},\"MicrosoftNetworkServerDigitallySignCommunicationsAlways\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Microsoft network server: Digitally sign communications (always)\",\"description\":\"Specifies whether packet signing is required by the SMB server component.\"},\"defaultValue\":\"1\"},\"MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Microsoft network server: Disconnect clients when logon hours expire\",\"description\":\"Specifies whether to disconnect users who are connected to the local computer outside their user account's valid logon hours. This setting affects the Server Message Block (SMB) component. If you enable this policy setting you should also enable 'Network security: Force logoff when logon hours expire'\"},\"defaultValue\":\"1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsMicrosoftNetworkClient\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Microsoft network client: Digitally sign communications (always);ExpectedValue', '=', parameters('MicrosoftNetworkClientDigitallySignCommunicationsAlways'), ',', 'Microsoft network client: Send unencrypted password to third-party SMB servers;ExpectedValue', '=', parameters('MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers'), ',', 'Microsoft network server: Amount of idle time required before suspending session;ExpectedValue', '=', parameters('MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession'), ',', 'Microsoft network server: Digitally sign communications (always);ExpectedValue', '=', parameters('MicrosoftNetworkServerDigitallySignCommunicationsAlways'), ',', 'Microsoft network server: Disconnect clients when logon hours expire;ExpectedValue', '=', parameters('MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsMicrosoftNetworkClient\"},\"MicrosoftNetworkClientDigitallySignCommunicationsAlways\":{\"value\":\"[parameters('MicrosoftNetworkClientDigitallySignCommunicationsAlways')]\"},\"MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers\":{\"value\":\"[parameters('MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers')]\"},\"MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession\":{\"value\":\"[parameters('MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession')]\"},\"MicrosoftNetworkServerDigitallySignCommunicationsAlways\":{\"value\":\"[parameters('MicrosoftNetworkServerDigitallySignCommunicationsAlways')]\"},\"MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire\":{\"value\":\"[parameters('MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"MicrosoftNetworkClientDigitallySignCommunicationsAlways\":{\"type\":\"string\"},\"MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers\":{\"type\":\"string\"},\"MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession\":{\"type\":\"string\"},\"MicrosoftNetworkServerDigitallySignCommunicationsAlways\":{\"type\":\"string\"},\"MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Microsoft network client: Digitally sign communications (always);ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkClientDigitallySignCommunicationsAlways')]\"},{\"name\":\"Microsoft network client: Send unencrypted password to third-party SMB servers;ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers')]\"},{\"name\":\"Microsoft network server: Amount of idle time required before suspending session;ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession')]\"},{\"name\":\"Microsoft network server: Digitally sign communications (always);ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkServerDigitallySignCommunicationsAlways')]\"},{\"name\":\"Microsoft network server: Disconnect clients when logon hours expire;ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Microsoft network client: Digitally sign communications (always);ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkClientDigitallySignCommunicationsAlways')]\"},{\"name\":\"Microsoft network client: Send unencrypted password to third-party SMB servers;ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkClientSendUnencryptedPasswordToThirdpartySMBServers')]\"},{\"name\":\"Microsoft network server: Amount of idle time required before suspending session;ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkServerAmountOfIdleTimeRequiredBeforeSuspendingSession')]\"},{\"name\":\"Microsoft network server: Digitally sign communications (always);ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkServerDigitallySignCommunicationsAlways')]\"},{\"name\":\"Microsoft network server: Disconnect clients when logon hours expire;ExpectedValue\",\"value\":\"[parameters('MicrosoftNetworkServerDisconnectClientsWhenLogonHoursExpire')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bbcdd8fa-b600-4ee3-85b8-d184e3339652\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bbcdd8fa-b600-4ee3-85b8-d184e3339652\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit API Applications that are not using latest supported Python Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported Python version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestPython\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bc0378bb-d7ab-4614-a0f6-5a6e3f02d644\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bc0378bb-d7ab-4614-a0f6-5a6e3f02d644\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1194 - Configuration Change Control | Automated Document / Notification / Prohibition Of Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1194\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bc34667f-397e-4a65-9b72-d0358f0b6b09\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bc34667f-397e-4a65-9b72-d0358f0b6b09\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1095 - Role-Based Security Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1095\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bc3f6f7a-057b-433e-9834-e8c97b0194f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bc3f6f7a-057b-433e-9834-e8c97b0194f6\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Account Logon'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Account Logon'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesAccountLogon\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bc87d811-4a9b-47cc-ae54-0a41abda7768\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bc87d811-4a9b-47cc-ae54-0a41abda7768\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1427 - Media Protection Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1427\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bc90e44f-d83f-4bdf-900f-3d5eb4111b31\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bc90e44f-d83f-4bdf-900f-3d5eb4111b31\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1351 - Incident Response Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1351\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bcfb6683-05e5-4ce6-9723-c3fbe9896bdd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bcfb6683-05e5-4ce6-9723-c3fbe9896bdd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1050 - Concurrent Session Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1050\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bd20184c-b4ec-4ce5-8db6-6e86352d183f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bd20184c-b4ec-4ce5-8db6-6e86352d183f\"},{\"properties\":{\"displayName\":\"IP Forwarding on your virtual machine should be disabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enabling IP forwarding on a virtual machine's NIC allows the machine to receive traffic addressed to other destinations. IP forwarding is rarely required (e.g., when using the VM as a network virtual appliance), and therefore, this should be reviewed by the network security team.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"disableIPForwarding\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"Monitored\",\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bd352bd5-2853-4985-bf0d-73806b4a5744\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bd352bd5-2853-4985-bf0d-73806b4a5744\"},{\"properties\":{\"displayName\":\"[Deprecated]: Advanced Threat Protection types should be set to 'All' in SQL Managed Instance advanced data security settings\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"It's recommended to enable all Advanced Threat Protection types on your SQL Managed Instance. Enabling all types protects against SQL injection, database vulnerabilities, and any other anomalous activities.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/managedInstances\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/managedInstances/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/managedInstances/securityAlertPolicies/disabledAlerts[*]\",\"equals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bda18df3-5e41-4709-add9-2554ce68c966\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bda18df3-5e41-4709-add9-2554ce68c966\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs in which the Administrators group contains any of the specified members\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines in which the Administrators group contains any of the specified members. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AdministratorsGroupMembersToExclude\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bde62c94-ccca-4821-a815-92c1d31a76de\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bde62c94-ccca-4821-a815-92c1d31a76de\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Applications that are not using latest supported Java Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported Java version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestJava\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/be0a7681-bed4-48dc-9ff3-f0171ee170b6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"be0a7681-bed4-48dc-9ff3-f0171ee170b6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1360 - Incident Handling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1360\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/be5b05e7-0b82-4ebc-9eda-25e447b1a41e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"be5b05e7-0b82-4ebc-9eda-25e447b1a41e\"},{\"properties\":{\"displayName\":\"[Deprecated]: Web Application Firewall should be enabled for Azure Front Door Service or Application Gateway\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Requires Web Application Firewall on any Azure Front Door Service or Application Gateway. A Web Application Firewall provides greater security for your other Azure resources.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Network\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Deny\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/frontdoors\"},{\"field\":\"Microsoft.Network/frontdoors/frontendEndpoints[*].webApplicationFirewallPolicyLink.id\",\"exists\":\"false\"}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/applicationGateways\"},{\"field\":\"Microsoft.Network/applicationGateways/webApplicationFirewallConfiguration\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/be7ed5c8-2660-4136-8216-e6f3412ba909\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"be7ed5c8-2660-4136-8216-e6f3412ba909\"},{\"properties\":{\"displayName\":\"[Preview]: Audit Windows VMs on which Windows Defender Exploit Guard is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Windows Defender Exploit Guard helps protect against malware that uses exploits to infect devices and spread. Exploit Guard protection consists of a number of mitigations that can be applied to either the operating system or individual apps. This policy requires the Azure Policy for Windows extension. For details, visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"1.1.0-preview\",\"preview\":true,\"requiredProviders\":[\"Microsoft.GuestConfiguration\"],\"guestConfiguration\":{\"name\":\"WindowsDefenderExploitGuard\",\"version\":\"1.*\",\"configurationParameter\":{\"NotAvailableMachineState\":\"[WindowsDefenderExploitGuard]WindowsDefenderExploitGuard1;NotAvailableMachineState\"}}},\"parameters\":{\"NotAvailableMachineState\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Status if Windows Defender is not available on machine\",\"description\":\"Windows Defender Exploit Guard is only available starting with Windows 10/Windows Server with update 1709. Setting this value to 'Non-Compliant' shows machines with older versions on which Windows Defender Exploit Guard is not available (such as Windows Server 2012 R2) as non-compliant. Setting this value to 'Compliant' shows these machines as compliant.\"},\"allowedValues\":[\"Compliant\",\"Non-Compliant\"],\"defaultValue\":\"Non-Compliant\"},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of this policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDefenderExploitGuard\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"},{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsDefenderExploitGuard]WindowsDefenderExploitGuard1;NotAvailableMachineState', '=', parameters('NotAvailableMachineState')))]\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bed48b13-6647-468e-aa2f-1af1d3f4dd40\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bed48b13-6647-468e-aa2f-1af1d3f4dd40\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Key Vault to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Key Vault to stream to a regional Log Analytics workspace when any Key Vault which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.KeyVault/vaults\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.KeyVault/vaults/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"AuditEvent\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bef3f64c-5290-43b7-85b0-9b254eef4c47\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bef3f64c-5290-43b7-85b0-9b254eef4c47\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1152 - System Interconnections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1152\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/beff0acf-7e67-40b2-b1ca-1a0e8205cf1b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"beff0acf-7e67-40b2-b1ca-1a0e8205cf1b\"},{\"properties\":{\"displayName\":\"Geo-redundant storage should be enabled for Storage Accounts\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Storage Account with geo-redundant storage not enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Storage\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"not\":{\"field\":\"Microsoft.Storage/storageAccounts/sku.name\",\"in\":[\"Standard_GRS\",\"Standard_RAGRS\",\"Standard_GZRS\",\"Standard_RAGZRS\"]}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bf045164-79ba-4215-8f95-f8048dc1780b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bf045164-79ba-4215-8f95-f8048dc1780b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1590 - External Information System Services | Risk Assessments / Organizational Approvals\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1590\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bf296b8c-f391-4ea4-9198-be3c9d39dd1f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bf296b8c-f391-4ea4-9198-be3c9d39dd1f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1446 - Physical And Environmental Protection Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1446\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bf6850fe-abba-468e-9ef4-d09ec7d983cd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bf6850fe-abba-468e-9ef4-d09ec7d983cd\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Logon-Logoff'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Logon-Logoff'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditGroupMembership\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Group Membership\",\"description\":\"Specifies whether audit events are generated when group memberships are enumerated on the client computer.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"Success\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesLogonLogoff\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit Group Membership;ExpectedValue', '=', parameters('AuditGroupMembership')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesLogonLogoff\"},\"AuditGroupMembership\":{\"value\":\"[parameters('AuditGroupMembership')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditGroupMembership\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Group Membership;ExpectedValue\",\"value\":\"[parameters('AuditGroupMembership')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Group Membership;ExpectedValue\",\"value\":\"[parameters('AuditGroupMembership')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c04255ee-1b9f-42c1-abaa-bf1553f79930\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c04255ee-1b9f-42c1-abaa-bf1553f79930\"},{\"properties\":{\"displayName\":\"Only approved VM extensions should be installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy governs the virtual machine extensions that are not approved.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"approvedExtensions\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of approved extension types that can be installed. Example: AzureDiskEncryption\",\"displayName\":\"Approved extensions\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines/extensions\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"notIn\":\"[parameters('approvedExtensions')]\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c0e996f8-39cf-4af9-9f45-83fbde810432\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c0e996f8-39cf-4af9-9f45-83fbde810432\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1124 - Audit Reduction And Report Generation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1124\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c10152dd-78f8-4335-ae2d-ad92cc028da4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c10152dd-78f8-4335-ae2d-ad92cc028da4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1676 - Malicious Code Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1676\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c10fb58b-56a8-489e-9ce3-7ffe24e78e4b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c10fb58b-56a8-489e-9ce3-7ffe24e78e4b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1719 - Spam Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1719\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c13da9b4-fe14-4fe2-853a-5997c9d4215a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c13da9b4-fe14-4fe2-853a-5997c9d4215a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1226 - Information System Component Inventory | Automated Unauthorized Component Detection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1226\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c158eb1c-ae7e-4081-8057-d527140c4e0c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c158eb1c-ae7e-4081-8057-d527140c4e0c\"},{\"properties\":{\"displayName\":\"Deploy associations for a custom provider\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys an association resource that associates selected resource types to the specified custom provider. This policy deployment does not support nested resource types.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Custom Provider\"},\"parameters\":{\"targetCustomProviderId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Custom provider ID\",\"description\":\"Resource ID of the Custom provider to which resources need to be associated.\"}},\"resourceTypesToAssociate\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Resource types to associate\",\"description\":\"The list of resource types to be associated to the custom provider.\",\"strongType\":\"resourceTypes\"}},\"associationNamePrefix\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Association name prefix\",\"description\":\"Prefix to be added to the name of the association resource being created.\"},\"defaultValue\":\"DeployedByPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":\"[parameters('resourceTypesToAssociate')]\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.CustomProviders/Associations\",\"name\":\"[concat(parameters('associationNamePrefix'), '-', uniqueString(parameters('targetCustomProviderId')))]\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"associatedResourceName\":{\"type\":\"string\"},\"resourceTypesToAssociate\":{\"type\":\"string\"},\"targetCustomProviderId\":{\"type\":\"string\"},\"associationNamePrefix\":{\"type\":\"string\"}},\"variables\":{\"resourceType\":\"[concat(parameters('resourceTypesToAssociate'), '/providers/associations')]\",\"resourceName\":\"[concat(parameters('associatedResourceName'), '/microsoft.customproviders/', parameters('associationNamePrefix'), '-', uniqueString(parameters('targetCustomProviderId')))]\"},\"resources\":[{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2017-05-10\",\"name\":\"[concat(deployment().Name, '-2')]\",\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"resources\":[{\"type\":\"[variables('resourceType')]\",\"name\":\"[variables('resourceName')]\",\"apiVersion\":\"2018-09-01-preview\",\"properties\":{\"targetResourceId\":\"[parameters('targetCustomProviderId')]\"}}]}}}]},\"parameters\":{\"resourceTypesToAssociate\":{\"value\":\"[field('type')]\"},\"associatedResourceName\":{\"value\":\"[field('name')]\"},\"targetCustomProviderId\":{\"value\":\"[parameters('targetCustomProviderId')]\"},\"associationNamePrefix\":{\"value\":\"[parameters('associationNamePrefix')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c15c281f-ea5c-44cd-90b8-fc3c14d13f0c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c15c281f-ea5c-44cd-90b8-fc3c14d13f0c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1629 - Boundary Protection | External Telecommunications Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1629\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c171b095-7756-41de-8644-a062a96043f2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c171b095-7756-41de-8644-a062a96043f2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1004 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1004\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c17822dc-736f-4eb4-a97d-e6be662ff835\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c17822dc-736f-4eb4-a97d-e6be662ff835\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation only in Asia data centers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation in the following locations only: East Asia, Southeast Asia, West India, South India, Central India, Japan East, Japan West\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"General\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"eastasia\",\"southeastasia\",\"westindia\",\"southindia\",\"centralindia\",\"japaneast\",\"japanwest\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c1b9cbed-08e3-427d-b9ce-7c535b1e9b94\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c1b9cbed-08e3-427d-b9ce-7c535b1e9b94\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Account Logon'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Account Logon'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditCredentialValidation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Credential Validation\",\"description\":\"Specifies whether audit events are generated when credentials are submitted for a user account logon request. This setting is especially useful for monitoring unsuccessful attempts, to find brute-force attacks, account enumeration, and potential account compromise events on domain controllers.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"Success and Failure\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesAccountLogon\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit Credential Validation;ExpectedValue', '=', parameters('AuditCredentialValidation')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesAccountLogon\"},\"AuditCredentialValidation\":{\"value\":\"[parameters('AuditCredentialValidation')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditCredentialValidation\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Credential Validation;ExpectedValue\",\"value\":\"[parameters('AuditCredentialValidation')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Credential Validation;ExpectedValue\",\"value\":\"[parameters('AuditCredentialValidation')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c1e289c0-ffad-475d-a924-adc058765d65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c1e289c0-ffad-475d-a924-adc058765d65\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1503 - Information Security Architecture\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1503\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c1fa9c2f-d439-4ab9-8b83-81fb1934f81d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c1fa9c2f-d439-4ab9-8b83-81fb1934f81d\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that are not set to the specified time zone\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that are not set to the specified time zone. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"TimeZone\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Time zone\",\"description\":\"The expected time zone\"},\"allowedValues\":[\"(UTC-12:00) International Date Line West\",\"(UTC-11:00) Coordinated Universal Time-11\",\"(UTC-10:00) Aleutian Islands\",\"(UTC-10:00) Hawaii\",\"(UTC-09:30) Marquesas Islands\",\"(UTC-09:00) Alaska\",\"(UTC-09:00) Coordinated Universal Time-09\",\"(UTC-08:00) Baja California\",\"(UTC-08:00) Coordinated Universal Time-08\",\"(UTC-08:00) Pacific Time (US & Canada)\",\"(UTC-07:00) Arizona\",\"(UTC-07:00) Chihuahua, La Paz, Mazatlan\",\"(UTC-07:00) Mountain Time (US & Canada)\",\"(UTC-06:00) Central America\",\"(UTC-06:00) Central Time (US & Canada)\",\"(UTC-06:00) Easter Island\",\"(UTC-06:00) Guadalajara, Mexico City, Monterrey\",\"(UTC-06:00) Saskatchewan\",\"(UTC-05:00) Bogota, Lima, Quito, Rio Branco\",\"(UTC-05:00) Chetumal\",\"(UTC-05:00) Eastern Time (US & Canada)\",\"(UTC-05:00) Haiti\",\"(UTC-05:00) Havana\",\"(UTC-05:00) Indiana (East)\",\"(UTC-05:00) Turks and Caicos\",\"(UTC-04:00) Asuncion\",\"(UTC-04:00) Atlantic Time (Canada)\",\"(UTC-04:00) Caracas\",\"(UTC-04:00) Cuiaba\",\"(UTC-04:00) Georgetown, La Paz, Manaus, San Juan\",\"(UTC-04:00) Santiago\",\"(UTC-03:30) Newfoundland\",\"(UTC-03:00) Araguaina\",\"(UTC-03:00) Brasilia\",\"(UTC-03:00) Cayenne, Fortaleza\",\"(UTC-03:00) City of Buenos Aires\",\"(UTC-03:00) Greenland\",\"(UTC-03:00) Montevideo\",\"(UTC-03:00) Punta Arenas\",\"(UTC-03:00) Saint Pierre and Miquelon\",\"(UTC-03:00) Salvador\",\"(UTC-02:00) Coordinated Universal Time-02\",\"(UTC-02:00) Mid-Atlantic - Old\",\"(UTC-01:00) Azores\",\"(UTC-01:00) Cabo Verde Is.\",\"(UTC) Coordinated Universal Time\",\"(UTC+00:00) Dublin, Edinburgh, Lisbon, London\",\"(UTC+00:00) Monrovia, Reykjavik\",\"(UTC+00:00) Sao Tome\",\"(UTC+01:00) Casablanca\",\"(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna\",\"(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague\",\"(UTC+01:00) Brussels, Copenhagen, Madrid, Paris\",\"(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb\",\"(UTC+01:00) West Central Africa\",\"(UTC+02:00) Amman\",\"(UTC+02:00) Athens, Bucharest\",\"(UTC+02:00) Beirut\",\"(UTC+02:00) Cairo\",\"(UTC+02:00) Chisinau\",\"(UTC+02:00) Damascus\",\"(UTC+02:00) Gaza, Hebron\",\"(UTC+02:00) Harare, Pretoria\",\"(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius\",\"(UTC+02:00) Jerusalem\",\"(UTC+02:00) Kaliningrad\",\"(UTC+02:00) Khartoum\",\"(UTC+02:00) Tripoli\",\"(UTC+02:00) Windhoek\",\"(UTC+03:00) Baghdad\",\"(UTC+03:00) Istanbul\",\"(UTC+03:00) Kuwait, Riyadh\",\"(UTC+03:00) Minsk\",\"(UTC+03:00) Moscow, St. Petersburg\",\"(UTC+03:00) Nairobi\",\"(UTC+03:30) Tehran\",\"(UTC+04:00) Abu Dhabi, Muscat\",\"(UTC+04:00) Astrakhan, Ulyanovsk\",\"(UTC+04:00) Baku\",\"(UTC+04:00) Izhevsk, Samara\",\"(UTC+04:00) Port Louis\",\"(UTC+04:00) Saratov\",\"(UTC+04:00) Tbilisi\",\"(UTC+04:00) Volgograd\",\"(UTC+04:00) Yerevan\",\"(UTC+04:30) Kabul\",\"(UTC+05:00) Ashgabat, Tashkent\",\"(UTC+05:00) Ekaterinburg\",\"(UTC+05:00) Islamabad, Karachi\",\"(UTC+05:00) Qyzylorda\",\"(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi\",\"(UTC+05:30) Sri Jayawardenepura\",\"(UTC+05:45) Kathmandu\",\"(UTC+06:00) Astana\",\"(UTC+06:00) Dhaka\",\"(UTC+06:00) Omsk\",\"(UTC+06:30) Yangon (Rangoon)\",\"(UTC+07:00) Bangkok, Hanoi, Jakarta\",\"(UTC+07:00) Barnaul, Gorno-Altaysk\",\"(UTC+07:00) Hovd\",\"(UTC+07:00) Krasnoyarsk\",\"(UTC+07:00) Novosibirsk\",\"(UTC+07:00) Tomsk\",\"(UTC+08:00) Beijing, Chongqing, Hong Kong, Urumqi\",\"(UTC+08:00) Irkutsk\",\"(UTC+08:00) Kuala Lumpur, Singapore\",\"(UTC+08:00) Perth\",\"(UTC+08:00) Taipei\",\"(UTC+08:00) Ulaanbaatar\",\"(UTC+08:45) Eucla\",\"(UTC+09:00) Chita\",\"(UTC+09:00) Osaka, Sapporo, Tokyo\",\"(UTC+09:00) Pyongyang\",\"(UTC+09:00) Seoul\",\"(UTC+09:00) Yakutsk\",\"(UTC+09:30) Adelaide\",\"(UTC+09:30) Darwin\",\"(UTC+10:00) Brisbane\",\"(UTC+10:00) Canberra, Melbourne, Sydney\",\"(UTC+10:00) Guam, Port Moresby\",\"(UTC+10:00) Hobart\",\"(UTC+10:00) Vladivostok\",\"(UTC+10:30) Lord Howe Island\",\"(UTC+11:00) Bougainville Island\",\"(UTC+11:00) Chokurdakh\",\"(UTC+11:00) Magadan\",\"(UTC+11:00) Norfolk Island\",\"(UTC+11:00) Sakhalin\",\"(UTC+11:00) Solomon Is., New Caledonia\",\"(UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky\",\"(UTC+12:00) Auckland, Wellington\",\"(UTC+12:00) Coordinated Universal Time+12\",\"(UTC+12:00) Fiji\",\"(UTC+12:00) Petropavlovsk-Kamchatsky - Old\",\"(UTC+12:45) Chatham Islands\",\"(UTC+13:00) Coordinated Universal Time+13\",\"(UTC+13:00) Nuku'alofa\",\"(UTC+13:00) Samoa\",\"(UTC+14:00) Kiritimati Island\"]}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsTimeZone\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[WindowsTimeZone]WindowsTimeZone1;TimeZone', '=', parameters('TimeZone')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsTimeZone\"},\"TimeZone\":{\"value\":\"[parameters('TimeZone')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"TimeZone\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsTimeZone]WindowsTimeZone1;TimeZone\",\"value\":\"[parameters('TimeZone')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[WindowsTimeZone]WindowsTimeZone1;TimeZone\",\"value\":\"[parameters('TimeZone')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c21f7060-c148-41cf-a68b-0ab3e14c764c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c21f7060-c148-41cf-a68b-0ab3e14c764c\"},{\"properties\":{\"displayName\":\"Advanced threat protection should be enabled on Azure Container Registry registries\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Advanced threat protection provides scanning of container registries for security vulnerabilities on each pushed container image and exposes detailed findings per image.\",\"metadata\":{\"version\":\"1.0.2\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/pricings\",\"name\":\"ContainerRegistry\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"field\":\"Microsoft.Security/pricings/pricingTier\",\"equals\":\"Standard\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c25d9a16-bc35-4e15-a7e5-9db606bf9ed4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c25d9a16-bc35-4e15-a7e5-9db606bf9ed4\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs on which the specified services are not installed and 'Running'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines on which the specified services are not installed and 'Running'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsServiceStatus\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c2dd2a9a-8a20-4a9c-b8d6-f17ccc26939a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c2dd2a9a-8a20-4a9c-b8d6-f17ccc26939a\"},{\"properties\":{\"displayName\":\"Ensure that '.NET Framework' version is the latest, if used as a part of the API app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for .NET Framework software either due to security flaws or to include additional functionality. Using the latest .NET framework version for web apps is recommended in order to take advantage of security fixes, if any, and/or new functionalities of the latest version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.netFrameworkVersion\",\"in\":[\"v3.0\",\"v4.0\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c2e7ca55-f62c-49b2-89a4-d41eb661d2f0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c2e7ca55-f62c-49b2-89a4-d41eb661d2f0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1176 - Baseline Configuration\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1176\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c30690a5-7bf3-467f-b0cd-ef5c7c7449cd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c30690a5-7bf3-467f-b0cd-ef5c7c7449cd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1389 - Information Spillage Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1389\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c39e6fda-ae70-4891-a739-be7bba6d1062\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c39e6fda-ae70-4891-a739-be7bba6d1062\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1390 - Information Spillage Response | Responsible Personnel\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1390\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c3b65b63-09ec-4cb5-8028-7dd324d10eb0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c3b65b63-09ec-4cb5-8028-7dd324d10eb0\"},{\"properties\":{\"displayName\":\"System updates on virtual machine scale sets should be installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit whether there are any missing system security updates and critical updates that should be installed to ensure that your Windows and Linux virtual machine scale sets are secure.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"SystemUpdates\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c3f317a7-a95c-4547-b7e7-11017ebdf2fe\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c3f317a7-a95c-4547-b7e7-11017ebdf2fe\"},{\"properties\":{\"displayName\":\"Show audit results from Linux VMs that have accounts without passwords\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Linux virtual machines that have accounts without passwords. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordPolicy_msid232\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c40c9087-1981-4e73-9f53-39743eda9d05\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c40c9087-1981-4e73-9f53-39743eda9d05\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1220 - Least Functionality | Authorized Software / Whitelisting\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1220\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c40f31a7-81e1-4130-99e5-a02ceea2a1d6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c40f31a7-81e1-4130-99e5-a02ceea2a1d6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1513 - Personnel Screening | Information With Special Protection Measures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1513\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c416970d-b12b-49eb-8af4-fb144cd7c290\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c416970d-b12b-49eb-8af4-fb144cd7c290\"},{\"properties\":{\"displayName\":\"Microsoft Antimalware for Azure should be configured to automatically update protection signatures\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Windows virtual machine not configured with automatic update of Microsoft Antimalware protection signatures.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Compute\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"equals\":\"Windows\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"IaaSAntimalware\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Security\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/autoUpgradeMinorVersion\",\"equals\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c43e4a30-77cb-48ab-a4dd-93f175c63b57\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c43e4a30-77cb-48ab-a4dd-93f175c63b57\"},{\"properties\":{\"displayName\":\"[Preview]: Container Registry should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Container Registry not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Network\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerRegistry/registries\"},{\"anyOf\":[{\"field\":\"Microsoft.ContainerRegistry/registries/networkRuleSet.defaultAction\",\"notEquals\":\"Deny\"},{\"field\":\"Microsoft.ContainerRegistry/registries/networkRuleSet.virtualNetworkRules[*].action\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c4857be7-912a-4c75-87e6-e30292bcdf78\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c4857be7-912a-4c75-87e6-e30292bcdf78\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1235 - Software Usage Restrictions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1235\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c49c610b-ece4-44b3-988c-2172b70d6e46\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c49c610b-ece4-44b3-988c-2172b70d6e46\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1173 - Internal System Connections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1173\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c4aff9e7-2e60-46fa-86be-506b79033fc5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c4aff9e7-2e60-46fa-86be-506b79033fc5\"},{\"properties\":{\"displayName\":\"Managed identity should be used in your API App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Use a managed identity for enhanced authentication security\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/managedServiceIdentityId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c4d441f8-f9d9-4a9e-9cef-e82117cb3eef\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c4d441f8-f9d9-4a9e-9cef-e82117cb3eef\"},{\"properties\":{\"displayName\":\"Authentication should be enabled on your API app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Azure App Service Authentication is a feature that can prevent anonymous HTTP requests from reaching the API app, or authenticate those that have tokens before they reach the API app\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/siteAuthEnabled\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c4ebc54a-46e1-481a-bee2-d4411e95d828\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c4ebc54a-46e1-481a-bee2-d4411e95d828\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1600 - Developer Security Testing And Evaluation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1600\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c53f3123-d233-44a7-930b-f40d3bfeb7d6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c53f3123-d233-44a7-930b-f40d3bfeb7d6\"},{\"properties\":{\"displayName\":\"An activity log alert should exist for specific Policy operations\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits specific Policy operations with no activity log alerts configured.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"operationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Operation Name\",\"description\":\"Policy Operation name for which activity log alert should exist\"},\"allowedValues\":[\"Microsoft.Authorization/policyAssignments/write\",\"Microsoft.Authorization/policyAssignments/delete\"]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/ActivityLogAlerts\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/enabled\",\"equals\":\"true\"},{\"count\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"category\"},{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].equals\",\"equals\":\"Policy\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"operationName\"},{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].equals\",\"equals\":\"[parameters('operationName')]\"}]}]}},\"equals\":2},{\"not\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"category\"}},{\"not\":{\"field\":\"Microsoft.Insights/ActivityLogAlerts/condition.allOf[*].field\",\"equals\":\"operationName\"}}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c5447c04-a4d7-4ba8-a263-c9ee321a6858\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c5447c04-a4d7-4ba8-a263-c9ee321a6858\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1408 - Maintenance Tools | Prevent Unauthorized Removal\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1408\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c5f56ac6-4bb2-4086-bc41-ad76344ba2c2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c5f56ac6-4bb2-4086-bc41-ad76344ba2c2\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that contain certificates expiring within the specified number of days\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that contain certificates expiring within the specified number of days. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"CertificateStorePath\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Certificate store path\",\"description\":\"The path to the certificate store containing the certificates to check the expiration dates of. Default value is 'Cert:' which is the root certificate store path, so all certificates on the machine will be checked. Other example paths: 'Cert:\\\\LocalMachine', 'Cert:\\\\LocalMachine\\\\TrustedPublisher', 'Cert:\\\\CurrentUser'\"},\"defaultValue\":\"Cert:\"},\"ExpirationLimitInDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Expiration limit in days\",\"description\":\"An integer indicating the number of days within which to check for certificates that are expiring. For example, if this value is 30, any certificate expiring within the next 30 days will cause this policy to be non-compliant.\"},\"defaultValue\":\"30\"},\"CertificateThumbprintsToInclude\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Certificate thumbprints to include\",\"description\":\"A semicolon-separated list of certificate thumbprints to check under the specified path. If a value is not specified, all certificates under the certificate store path will be checked. If a value is specified, no certificates other than those with the thumbprints specified will be checked. e.g. THUMBPRINT1;THUMBPRINT2;THUMBPRINT3\"},\"defaultValue\":\"\"},\"CertificateThumbprintsToExclude\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Certificate thumbprints to exclude\",\"description\":\"A semicolon-separated list of certificate thumbprints to ignore. e.g. THUMBPRINT1;THUMBPRINT2;THUMBPRINT3\"},\"defaultValue\":\"\"},\"IncludeExpiredCertificates\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Include expired certificates\",\"description\":\"Must be 'true' or 'false'. True indicates that any found certificates that have already expired will also make this policy non-compliant. False indicates that certificates that have expired will be be ignored.\"},\"allowedValues\":[\"true\",\"false\"],\"defaultValue\":\"false\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"CertificateExpiration\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[CertificateStore]CertificateStore1;CertificateStorePath', '=', parameters('CertificateStorePath'), ',', '[CertificateStore]CertificateStore1;ExpirationLimitInDays', '=', parameters('ExpirationLimitInDays'), ',', '[CertificateStore]CertificateStore1;CertificateThumbprintsToInclude', '=', parameters('CertificateThumbprintsToInclude'), ',', '[CertificateStore]CertificateStore1;CertificateThumbprintsToExclude', '=', parameters('CertificateThumbprintsToExclude'), ',', '[CertificateStore]CertificateStore1;IncludeExpiredCertificates', '=', parameters('IncludeExpiredCertificates')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"CertificateExpiration\"},\"CertificateStorePath\":{\"value\":\"[parameters('CertificateStorePath')]\"},\"ExpirationLimitInDays\":{\"value\":\"[parameters('ExpirationLimitInDays')]\"},\"CertificateThumbprintsToInclude\":{\"value\":\"[parameters('CertificateThumbprintsToInclude')]\"},\"CertificateThumbprintsToExclude\":{\"value\":\"[parameters('CertificateThumbprintsToExclude')]\"},\"IncludeExpiredCertificates\":{\"value\":\"[parameters('IncludeExpiredCertificates')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"CertificateStorePath\":{\"type\":\"string\"},\"ExpirationLimitInDays\":{\"type\":\"string\"},\"CertificateThumbprintsToInclude\":{\"type\":\"string\"},\"CertificateThumbprintsToExclude\":{\"type\":\"string\"},\"IncludeExpiredCertificates\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[CertificateStore]CertificateStore1;CertificateStorePath\",\"value\":\"[parameters('CertificateStorePath')]\"},{\"name\":\"[CertificateStore]CertificateStore1;ExpirationLimitInDays\",\"value\":\"[parameters('ExpirationLimitInDays')]\"},{\"name\":\"[CertificateStore]CertificateStore1;CertificateThumbprintsToInclude\",\"value\":\"[parameters('CertificateThumbprintsToInclude')]\"},{\"name\":\"[CertificateStore]CertificateStore1;CertificateThumbprintsToExclude\",\"value\":\"[parameters('CertificateThumbprintsToExclude')]\"},{\"name\":\"[CertificateStore]CertificateStore1;IncludeExpiredCertificates\",\"value\":\"[parameters('IncludeExpiredCertificates')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[CertificateStore]CertificateStore1;CertificateStorePath\",\"value\":\"[parameters('CertificateStorePath')]\"},{\"name\":\"[CertificateStore]CertificateStore1;ExpirationLimitInDays\",\"value\":\"[parameters('ExpirationLimitInDays')]\"},{\"name\":\"[CertificateStore]CertificateStore1;CertificateThumbprintsToInclude\",\"value\":\"[parameters('CertificateThumbprintsToInclude')]\"},{\"name\":\"[CertificateStore]CertificateStore1;CertificateThumbprintsToExclude\",\"value\":\"[parameters('CertificateThumbprintsToExclude')]\"},{\"name\":\"[CertificateStore]CertificateStore1;IncludeExpiredCertificates\",\"value\":\"[parameters('IncludeExpiredCertificates')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c5fbc59e-fb6f-494f-81e2-d99a671bdaa8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c5fbc59e-fb6f-494f-81e2-d99a671bdaa8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1670 - Flaw Remediation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1670\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c6108469-57ee-4666-af7e-79ba61c7ae0c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c6108469-57ee-4666-af7e-79ba61c7ae0c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1190 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1190\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c66a3d1e-465b-4f28-9da5-aef701b59892\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c66a3d1e-465b-4f28-9da5-aef701b59892\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1120 - Audit Review, Analysis, And Reporting | Integration / Scanning And Monitoring Capabilities\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1120\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c69b870e-857b-458b-af02-bb234f7a00d3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c69b870e-857b-458b-af02-bb234f7a00d3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1125 - Audit Reduction And Report Generation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1125\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c6ce745a-670e-47d3-a6c4-3cfe5ef00c10\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c6ce745a-670e-47d3-a6c4-3cfe5ef00c10\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy Diagnostic Settings for Recovery Services Vault to Log Analytics workspace for resource specific categories.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploy Diagnostic Settings for Recovery Services Vault to stream to Log Analytics workspace for Resource specific categories. If any of the Resource specific categories are not enabled, a new diagnostic setting is created.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"preview\":true,\"category\":\"Monitoring\"},\"parameters\":{\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Exclusion Tag Name\",\"description\":\"Name of the tag to use for excluding vaults from this policy. This should be used along with the Exclusion Tag Value parameter.\"},\"defaultValue\":\"\"},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Exclusion Tag Value\",\"description\":\"Value of the tag to use for excluding vaults from this policy. This should be used along with the Exclusion Tag Name parameter.\"},\"defaultValue\":\"\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"Microsoft.RecoveryServices/vaults\"},{\"not\":{\"field\":\"[concat('tags[',parameters('tagName'), ']')]\",\"equals\":\"[parameters('tagValue')]\"}}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"allof\":[{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"allof\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].Category\",\"in\":[\"CoreAzureBackup\",\"AddonAzureBackupJobs\",\"AddonAzureBackupAlerts\",\"AddonAzureBackupPolicy\",\"AddonAzureBackupStorage\",\"AddonAzureBackupProtectedInstance\"]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].Enabled\",\"equals\":\"True\"}]}},\"Equals\":6},{\"field\":\"Microsoft.Insights/diagnosticSettings/workspaceId\",\"notEquals\":\"\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logAnalyticsDestinationType\",\"equals\":\"Dedicated\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vaultName\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.RecoveryServices/vaults/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('vaultName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"logAnalyticsDestinationType\":\"Dedicated\",\"metrics\":[],\"logs\":[{\"category\":\"CoreAzureBackup\",\"enabled\":\"true\"},{\"category\":\"AddonAzureBackupAlerts\",\"enabled\":\"true\"},{\"category\":\"AddonAzureBackupJobs\",\"enabled\":\"true\"},{\"category\":\"AddonAzureBackupPolicy\",\"enabled\":\"true\"},{\"category\":\"AddonAzureBackupProtectedInstance\",\"enabled\":\"true\"},{\"category\":\"AddonAzureBackupStorage\",\"enabled\":\"true\"}]}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat(parameters('logAnalytics'), 'configured for diagnostic logs for ', ': ', parameters('vaultName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\"}}},\"parameters\":{\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"vaultName\":{\"value\":\"[field('name')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c717fb0c-d118-4c43-ab3d-ece30ac81fb3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c717fb0c-d118-4c43-ab3d-ece30ac81fb3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1619 - Information In Shared Resources\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1619\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c722e569-cb52-45f3-a643-836547d016e1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c722e569-cb52-45f3-a643-836547d016e1\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1121 - Audit Review, Analysis, And Reporting | Correlation With Physical Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1121\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c72b0eb9-1fc2-44e5-a866-e7cb0532f7c1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c72b0eb9-1fc2-44e5-a866-e7cb0532f7c1\"},{\"properties\":{\"displayName\":\"Authentication should be enabled on your Function app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Azure App Service Authentication is a feature that can prevent anonymous HTTP requests from reaching the Function app, or authenticate those that have tokens before they reach the Function app\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"equals\":\"functionapp\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/siteAuthEnabled\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c75248c1-ea1d-4a9c-8fc9-29a6aabd5da8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c75248c1-ea1d-4a9c-8fc9-29a6aabd5da8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1353 - Incident Response Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1353\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c785ad59-f78f-44ad-9a7f-d1202318c748\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c785ad59-f78f-44ad-9a7f-d1202318c748\"},{\"properties\":{\"displayName\":\"[Deprecated]: Email notifications to admins should be enabled in SQL server advanced data security settings\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit that 'email notification to admins and subscription owners' is enabled in the SQL server advanced threat protection settings. This ensures that any detections of anomalous activities on SQL server are reported as soon as possible to the admins.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/securityAlertPolicies/emailAccountAdmins\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c8343d2f-fdc9-4a97-b76f-fc71d1163bfc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c8343d2f-fdc9-4a97-b76f-fc71d1163bfc\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Batch Account to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Batch Account to stream to a regional Log Analytics workspace when any Batch Account which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Batch/batchAccounts/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"ServiceLog\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c84e5349-db6d-4769-805e-e14037dab9b5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c84e5349-db6d-4769-805e-e14037dab9b5\"},{\"properties\":{\"displayName\":\"[Deprecated]: API App should only be accessible over HTTPS\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use of HTTPS ensures server/service authentication and protects data in transit from network layer eavesdropping attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"api\"},{\"field\":\"kind\",\"equals\":\"apiApp\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"OnlyHttpsForApiApp\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c85538c1-b527-4ce4-bdb4-1dabcb3fd90d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c85538c1-b527-4ce4-bdb4-1dabcb3fd90d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1470 - Emergency Shutoff\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1470\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c89ba09f-2e0f-44d0-8095-65b05bd151ef\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c89ba09f-2e0f-44d0-8095-65b05bd151ef\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Interactive Logon'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Interactive Logon'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsInteractiveLogon\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c8abcef9-fc26-482f-b8db-5fa60ee4586d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c8abcef9-fc26-482f-b8db-5fa60ee4586d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1018 - Account Management | Role-Based Schemes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1018\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c9121abf-e698-4ee9-b1cf-71ee528ff07f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c9121abf-e698-4ee9-b1cf-71ee528ff07f\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Data Lake Analytics should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Data Lake\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeAnalytics/accounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c95c74d9-38fe-4f0d-af86-0c7d626a315c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c95c74d9-38fe-4f0d-af86-0c7d626a315c\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'User Rights Assignment'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'User Rights Assignment'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_UserRightsAssignment\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c961dac9-5916-42e8-8fb1-703148323994\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c961dac9-5916-42e8-8fb1-703148323994\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs with a pending reboot\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with a pending reboot. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsPendingReboot\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsPendingReboot\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c96f3246-4382-4264-bf6b-af0b35e23c3c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c96f3246-4382-4264-bf6b-af0b35e23c3c\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Network Security Groups\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy automatically deploys diagnostic settings to network security groups. A storage account with name '{storagePrefixParameter}{NSGLocation}' will be automatically created.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"storagePrefix\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Storage Account Prefix for Regional Storage Account\",\"description\":\"This prefix will be combined with the network security group location to form the created storage account name.\"}},\"rgName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource Group Name for Storage Account (must exist)\",\"description\":\"The resource group that the storage account will be created in. This resource group must already exist.\",\"strongType\":\"ExistingResourceGroups\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"setbypolicy\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"location\":{\"type\":\"string\"},\"storagePrefix\":{\"type\":\"string\"},\"nsgName\":{\"type\":\"string\"},\"rgName\":{\"type\":\"string\"}},\"variables\":{\"storageDeployName\":\"[concat('policyStorage_', uniqueString(parameters('location'), parameters('nsgName')))]\"},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/providers/diagnosticSettings\",\"name\":\"[concat(parameters('nsgName'),'/Microsoft.Insights/setbypolicy')]\",\"apiVersion\":\"2017-05-01-preview\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[variables('storageDeployName')]\"],\"properties\":{\"storageAccountId\":\"[reference(variables('storageDeployName')).outputs.storageAccountId.value]\",\"logs\":[{\"category\":\"NetworkSecurityGroupEvent\",\"enabled\":true,\"retentionPolicy\":{\"enabled\":false,\"days\":0}},{\"category\":\"NetworkSecurityGroupRuleCounter\",\"enabled\":true,\"retentionPolicy\":{\"enabled\":false,\"days\":0}}]}},{\"apiVersion\":\"2017-05-10\",\"name\":\"[variables('storageDeployName')]\",\"type\":\"Microsoft.Resources/deployments\",\"resourceGroup\":\"[parameters('rgName')]\",\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"location\":{\"value\":\"[parameters('location')]\"},\"storagePrefix\":{\"value\":\"[parameters('storagePrefix')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"location\":{\"type\":\"string\"},\"storagePrefix\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2017-06-01\",\"type\":\"Microsoft.Storage/storageAccounts\",\"name\":\"[concat(parameters('storageprefix'), parameters('location'))]\",\"sku\":{\"name\":\"Standard_LRS\",\"tier\":\"Standard\"},\"kind\":\"Storage\",\"location\":\"[parameters('location')]\",\"tags\":{\"created-by\":\"policy\"},\"scale\":null,\"properties\":{\"networkAcls\":{\"bypass\":\"AzureServices\",\"defaultAction\":\"Allow\",\"ipRules\":[],\"virtualNetworkRules\":[]},\"supportsHttpsTrafficOnly\":true}}],\"outputs\":{\"storageAccountId\":{\"type\":\"string\",\"value\":\"[resourceId(parameters('rgName'), 'Microsoft.Storage/storageAccounts',concat(parameters('storagePrefix'), parameters('location')))]\"}}}}}]},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"storagePrefix\":{\"value\":\"[parameters('storagePrefix')]\"},\"rgName\":{\"value\":\"[parameters('rgName')]\"},\"nsgName\":{\"value\":\"[field('name')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c9c29499-c1d1-4195-99bd-2ec9e3a9dc89\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c9c29499-c1d1-4195-99bd-2ec9e3a9dc89\"},{\"properties\":{\"displayName\":\"Storage accounts should allow access from trusted Microsoft services\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Some Microsoft services that interact with storage accounts operate from networks that can't be granted access through network rules. To help this type of service work as intended, allow the set of trusted Microsoft services to bypass the network rules. These services will then use strong authentication to access the storage account.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Storage\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Storage/storageAccounts\"},{\"field\":\"Microsoft.Storage/storageAccounts/networkAcls.bypass\",\"exists\":\"true\"},{\"field\":\"Microsoft.Storage/storageAccounts/networkAcls.bypass\",\"notContains\":\"AzureServices\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c9d007d0-c057-4772-b18c-01e546713bcd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c9d007d0-c057-4772-b18c-01e546713bcd\"},{\"properties\":{\"displayName\":\"App Configuration should use a private link\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Private endpoint connections allow clients on a virtual network to securely access Azure App Configuration over a private link.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Configuration\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.AppConfiguration/configurationStores\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections\",\"existenceCondition\":{\"field\":\"Microsoft.AppConfiguration/configurationStores/privateEndpointConnections/privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ca610c1d-041c-4332-9d88-7ed3094967c7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ca610c1d-041c-4332-9d88-7ed3094967c7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1035 - Least Privilege | Authorize Access To Security Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1035\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ca94b046-45e2-444f-a862-dc8ce262a516\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ca94b046-45e2-444f-a862-dc8ce262a516\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1243 - Contingency Planning Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1243\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ca9a4469-d6df-4ab2-a42f-1213c396f0ec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ca9a4469-d6df-4ab2-a42f-1213c396f0ec\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1306 - Identification And Authentication (Org. Users) | Net. Access To Priv. Accts. - Replay\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1306\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cafc6c3c-5fc5-4c5e-a99b-a0ccb1d34eff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cafc6c3c-5fc5-4c5e-a99b-a0ccb1d34eff\"},{\"properties\":{\"displayName\":\"Remote debugging should be turned off for Web Applications\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Remote debugging requires inbound ports to be opened on a web application. Remote debugging should be turned off.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.remoteDebuggingEnabled\",\"equals\":\"false\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cb510bfd-1cba-4d9f-a230-cb0976f4bb71\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cb510bfd-1cba-4d9f-a230-cb0976f4bb71\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1486 - Alternate Work Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1486\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cb790345-a51f-43de-934e-98dbfaf9dca5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cb790345-a51f-43de-934e-98dbfaf9dca5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1167 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1167\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cbb2be76-4891-430b-95a7-ca0b0a3d1300\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cbb2be76-4891-430b-95a7-ca0b0a3d1300\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1374 - Incident Response Assistance\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1374\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cc5c8616-52ef-4e5e-8000-491634ed9249\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cc5c8616-52ef-4e5e-8000-491634ed9249\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs in which the Administrators group does not contain only the specified members\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines in which the Administrators group does not contain only the specified members. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AdministratorsGroupMembers\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cc7cda28-f867-4311-8497-a526129a8d19\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cc7cda28-f867-4311-8497-a526129a8d19\"},{\"properties\":{\"displayName\":\"[Preview]: Sensitive data in your SQL databases should be classified\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Azure Security Center monitors the data discovery and classification scan results for your SQL databases and provides recommendations to classify the sensitive data in your databases for better monitoring and security\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Security Center\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Sql/servers/databases\",\"Microsoft.Sql/managedInstances/databases\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"sqlDataClassification\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cc9835f2-9f6b-4cc8-ab4a-f8ef615eb349\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cc9835f2-9f6b-4cc8-ab4a-f8ef615eb349\"},{\"properties\":{\"displayName\":\"Allowed virtual machine size SKUs\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables you to specify a set of virtual machine size SKUs that your organization can deploy.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Compute\"},\"parameters\":{\"listOfAllowedSKUs\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of size SKUs that can be specified for virtual machines.\",\"displayName\":\"Allowed Size SKUs\",\"strongType\":\"VMSKUs\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"not\":{\"field\":\"Microsoft.Compute/virtualMachines/sku.name\",\"in\":\"[parameters('listOfAllowedSKUs')]\"}}]},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cccc23c7-8427-4f53-ad12-b6a63eb452b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cccc23c7-8427-4f53-ad12-b6a63eb452b3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1443 - Media Use\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1443\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cd0ec6fa-a2e7-4361-aee4-a8688659a9ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cd0ec6fa-a2e7-4361-aee4-a8688659a9ed\"},{\"properties\":{\"displayName\":\"Inherit a tag from the resource group\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Adds or replaces the specified tag and value from the parent resource group when any resource is created or updated. Existing resources can be remediated by triggering a remediation task.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"notEquals\":\"[resourceGroup().tags[parameters('tagName')]]\"},{\"value\":\"[resourceGroup().tags[parameters('tagName')]]\",\"notEquals\":\"\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"addOrReplace\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[resourceGroup().tags[parameters('tagName')]]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cd3aa116-8754-49c9-a813-ad46512ece54\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cd3aa116-8754-49c9-a813-ad46512ece54\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation if 'department' tag set\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation only if the 'department' tag is set\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Tags\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"tags\",\"containsKey\":\"department\"}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cd8dc879-a2ae-43c3-8211-1877c5755064\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cd8dc879-a2ae-43c3-8211-1877c5755064\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1582 - Information System Documentation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1582\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cd9e2f38-259b-462c-bfad-0ad7ab4e65c5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cd9e2f38-259b-462c-bfad-0ad7ab4e65c5\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that allow re-use of the previous 24 passwords\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that allow re-use of the previous 24 passwords. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"EnforcePasswordHistory\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cdbf72d9-ac9c-4026-8a3a-491a5ac59293\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cdbf72d9-ac9c-4026-8a3a-491a5ac59293\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1104 - Audit Events\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1104\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cdd8d244-18b2-4306-a1d1-df175ae0935f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cdd8d244-18b2-4306-a1d1-df175ae0935f\"},{\"properties\":{\"displayName\":\"Deploy export to Event Hub for Azure Security Center alerts and recommendations\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable export to Event Hub of Azure Security Center alerts and/or recommendations. This policy deploys an export to Event Hub configuration with your conditions and target Event Hub on the assigned scope. To deploy this policy on newly created subscriptions, open the Compliance tab, select the relevant non-compliant assignment and create a remediation task.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"resourceGroupName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group name\",\"description\":\"The resource group name where the export to Event Hub configuration is created. If you enter a name for a resource group that doesn't exist, it'll be created in the subscription. Note that each resource group can only have one export to Event Hub configured.\"}},\"resourceGroupLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group location\",\"description\":\"The location where the resource group and the export to Event Hub configuration are created.\",\"strongType\":\"location\"}},\"exportedDataTypes\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Exported data types\",\"description\":\"The data types to be exported. Example: Security recommendations;Security alerts;\"},\"allowedValues\":[\"Security recommendations\",\"Security alerts\"],\"defaultValue\":[\"Security recommendations\",\"Security alerts\"]},\"recommendationNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation IDs\",\"description\":\"Applicable only for export of security recommendations. To export all recommendations, leave this empty. To export specific recommendations, enter a list of recommendation IDs separated by semicolons (';'). Recommendation IDs are available through the Assessments API (https://docs.microsoft.com/rest/api/securitycenter/assessments), or Azure Resource Graph Explorer (https://portal.azure.com/#blade/HubsExtension/ArgQueryBlade), choose securityresources and microsoft.security/assessments.\"},\"defaultValue\":[]},\"recommendationSeverities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation severities\",\"description\":\"Applicable only for export of security recommendations. Determines recommendation severities. Example: High;Medium;Low;\"},\"allowedValues\":[\"High\",\"Medium\",\"Low\"],\"defaultValue\":[\"High\",\"Medium\",\"Low\"]},\"alertSeverities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Alert severities\",\"description\":\"Applicable only for export of security alerts. Determines alert severities. Example: High;Medium;Low;\"},\"allowedValues\":[\"High\",\"Medium\",\"Low\"],\"defaultValue\":[\"High\",\"Medium\",\"Low\"]},\"eventHubDetails\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub details\",\"description\":\"The Event Hub details of where the data should be exported to: Subscription, Event Hub Namespace, Event Hub, and Authorizations rules with 'Send' claim. If you do not already have an event hub, visit Event Hubs to create one (https://portal.azure.com/#blade/HubsExtension/BrowseResource/resourceType/Microsoft.EventHub%2Fnamespaces).\",\"strongType\":\"Microsoft.EventHub/namespaces/eventhubs/authorizationrules\",\"assignPermissions\":true}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Security/automations\",\"name\":\"exportToEventHub\",\"existenceScope\":\"resourcegroup\",\"ResourceGroupName\":\"[parameters('resourceGroupName')]\",\"deploymentScope\":\"subscription\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"location\":\"westeurope\",\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceGroupName\":{\"type\":\"string\"},\"resourceGroupLocation\":{\"type\":\"string\"},\"exportedDataTypes\":{\"type\":\"array\"},\"recommendationNames\":{\"type\":\"array\"},\"recommendationSeverities\":{\"type\":\"array\"},\"alertSeverities\":{\"type\":\"array\"},\"eventHubDetails\":{\"type\":\"string\"},\"guidValue\":{\"type\":\"string\",\"defaultValue\":\"[newGuid()]\"}},\"variables\":{\"scopeDescription\":\"scope for subscription {0}\",\"recommendationNamesLength\":\"[length(parameters('recommendationNames'))]\",\"recommendationSeveritiesLength\":\"[length(parameters('recommendationSeverities'))]\",\"alertSeveritiesLength\":\"[length(parameters('alertSeverities'))]\",\"recommendationNamesLengthIfEmpty\":\"[if(equals(variables('recommendationNamesLength'), 0), 1, variables('recommendationNamesLength'))]\",\"recommendationSeveritiesLengthIfEmpty\":\"[if(equals(variables('recommendationSeveritiesLength'), 0), 1, variables('recommendationSeveritiesLength'))]\",\"alertSeveritiesLengthIfEmpty\":\"[if(equals(variables('alertSeveritiesLength'), 0), 1, variables('alertSeveritiesLength'))]\",\"totalRuleCombinationsForOneRecommendationName\":\"[variables('recommendationSeveritiesLengthIfEmpty')]\",\"totalRuleCombinationsForOneRecommendationSeverity\":1,\"exportedDataTypesLength\":\"[length(parameters('exportedDataTypes'))]\",\"exportedDataTypesLengthIfEmpty\":\"[if(equals(variables('exportedDataTypesLength'), 0), 1, variables('exportedDataTypesLength'))]\",\"SeperatedEventHubDetails\":\"[split(parameters('eventHubDetails'),'/')]\",\"dataTypeMap\":{\"Security recommendations\":\"Assessments\",\"Security alerts\":\"Alerts\"},\"alertSeverityMap\":{\"High\":\"high\",\"Medium\":\"medium\",\"Low\":\"low\"},\"ruleSetsForAssessmentsObj\":{\"copy\":[{\"name\":\"ruleSetsForAssessmentsArr\",\"count\":\"[mul(variables('recommendationNamesLengthIfEmpty'),variables('recommendationSeveritiesLengthIfEmpty'))]\",\"input\":{\"rules\":[{\"propertyJPath\":\"[if(equals(variables('recommendationNamesLength'),0),'type','name')]\",\"propertyType\":\"string\",\"expectedValue\":\"[if(equals(variables('recommendationNamesLength'),0),'Microsoft.Security/assessments',parameters('recommendationNames')[mod(div(copyIndex('ruleSetsForAssessmentsArr'),variables('totalRuleCombinationsForOneRecommendationName')),variables('recommendationNamesLength'))])]\",\"operator\":\"Contains\"},{\"propertyJPath\":\"properties.metadata.severity\",\"propertyType\":\"string\",\"expectedValue\":\"[parameters('recommendationSeverities')[mod(div(copyIndex('ruleSetsForAssessmentsArr'),variables('totalRuleCombinationsForOneRecommendationSeverity')),variables('recommendationSeveritiesLength'))]]\",\"operator\":\"Equals\"}]}}]},\"ruleSetsForAlertsObj\":{\"copy\":[{\"name\":\"ruleSetsForAlertsArr\",\"count\":\"[variables('alertSeveritiesLengthIfEmpty')]\",\"input\":{\"rules\":[{\"propertyJPath\":\"Severity\",\"propertyType\":\"string\",\"expectedValue\":\"[variables('alertSeverityMap')[parameters('alertSeverities')[mod(copyIndex('ruleSetsForAlertsArr'),variables('alertSeveritiesLengthIfEmpty'))]]]\",\"operator\":\"Equals\"}]}}]}},\"resources\":[{\"name\":\"[parameters('resourceGroupName')]\",\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2019-10-01\",\"location\":\"[parameters('resourceGroupLocation')]\",\"tags\":{},\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2019-10-01\",\"name\":\"[concat('nestedAutomationDeployment', '_', parameters('guidValue'))]\",\"resourceGroup\":\"[parameters('resourceGroupName')]\",\"dependsOn\":[\"[resourceId('Microsoft.Resources/resourceGroups/', parameters('resourceGroupName'))]\"],\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"tags\":{},\"apiVersion\":\"2019-01-01-preview\",\"location\":\"[parameters('resourceGroupLocation')]\",\"name\":\"exportToEventHub\",\"type\":\"Microsoft.Security/automations\",\"dependsOn\":[],\"properties\":{\"description\":\"Export Azure Security Center alerts and/or recommendations to Event Hub via policy\",\"isEnabled\":true,\"scopes\":[{\"description\":\"[replace(variables('scopeDescription'),'{0}', subscription().subscriptionId)]\",\"scopePath\":\"[subscription().id]\"}],\"copy\":[{\"name\":\"sources\",\"count\":\"[variables('exportedDataTypesLengthIfEmpty')]\",\"input\":{\"eventSource\":\"[variables('dataTypeMap')[parameters('exportedDataTypes')[copyIndex('sources')]]]\",\"ruleSets\":\"[if(equals(parameters('exportedDataTypes')[copyIndex('sources')], 'Security recommendations'), variables('ruleSetsForAssessmentsObj').ruleSetsForAssessmentsArr, variables('ruleSetsForAlertsObj').ruleSetsForAlertsArr)]\"}}],\"actions\":[{\"actionType\":\"EventHub\",\"eventHubResourceId\":\"[concat('/', variables('SeperatedEventHubDetails')[1], '/', variables('SeperatedEventHubDetails')[2], '/', variables('SeperatedEventHubDetails')[3], '/', variables('SeperatedEventHubDetails')[4], '/', variables('SeperatedEventHubDetails')[5], '/', variables('SeperatedEventHubDetails')[6], '/', variables('SeperatedEventHubDetails')[7], '/', variables('SeperatedEventHubDetails')[8], '/', variables('SeperatedEventHubDetails')[9], '/', variables('SeperatedEventHubDetails')[10])]\",\"connectionString\":\"[listkeys(parameters('eventHubDetails'),'2017-04-01').primaryConnectionString]\"}]}}]}}}]},\"parameters\":{\"resourceGroupName\":{\"value\":\"[parameters('resourceGroupName')]\"},\"resourceGroupLocation\":{\"value\":\"[parameters('resourceGroupLocation')]\"},\"exportedDataTypes\":{\"value\":\"[parameters('exportedDataTypes')]\"},\"recommendationNames\":{\"value\":\"[parameters('recommendationNames')]\"},\"recommendationSeverities\":{\"value\":\"[parameters('recommendationSeverities')]\"},\"alertSeverities\":{\"value\":\"[parameters('alertSeverities')]\"},\"eventHubDetails\":{\"value\":\"[parameters('eventHubDetails')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cdfcce10-4578-4ecd-9703-530938e4abcb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cdfcce10-4578-4ecd-9703-530938e4abcb\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - Privilege Use'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Privilege Use'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesPrivilegeUse\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesPrivilegeUse\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ce2370f6-0ac5-4d85-8ab4-10721cc640b0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ce2370f6-0ac5-4d85-8ab4-10721cc640b0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1209 - Configuration Settings\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1209\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ce669c31-9103-4552-ae9c-cdef4e03580d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ce669c31-9103-4552-ae9c-cdef4e03580d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1242 - Contingency Planning Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1242\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cf3b3293-667a-445e-a722-fa0b0afc0958\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cf3b3293-667a-445e-a722-fa0b0afc0958\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1097 - Role-Based Security Training | Suspicious Communications And Anomalous System Behavior\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1097\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cf3e4836-f19e-47eb-a8cd-c3ca150452c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cf3e4836-f19e-47eb-a8cd-c3ca150452c0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1424 - Maintenance Personnel | Individuals Without Appropriate Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1424\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cf55fc87-48e1-4676-a2f8-d9a8cf993283\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cf55fc87-48e1-4676-a2f8-d9a8cf993283\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Key Vault should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Key Vault\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.KeyVault/vaults\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cf820ca0-f99e-4f3e-84fb-66e913812d21\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cf820ca0-f99e-4f3e-84fb-66e913812d21\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1292 - Information System Backup | Test Restoration Using Sampling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1292\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d03516cf-0293-489f-9b32-a18f2a79f836\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d03516cf-0293-489f-9b32-a18f2a79f836\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1724 - Error Handling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1724\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d07594d1-0307-4c08-94db-5d71ff31f0f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d07594d1-0307-4c08-94db-5d71ff31f0f6\"},{\"properties\":{\"displayName\":\"Container Registries should not allow unrestricted network access\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Container Registries that do not have any Network (IP or VNET) Rules configured and allow all network access by default. Container Registries with at least one IP / Firewall rule or configured virtual network will be deemed compliant. For more information on Container Registry Network rules, please visit: https://aka.ms/acr/vnet.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Container Registry\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerRegistry/registries\"},{\"anyof\":[{\"field\":\"Microsoft.ContainerRegistry/registries/networkRuleSet.defaultAction\",\"exists\":\"false\"},{\"field\":\"Microsoft.ContainerRegistry/registries/networkRuleSet.defaultAction\",\"equals\":\"Allow\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d0793b48-0edc-4296-a390-4c75d1bdfd71\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d0793b48-0edc-4296-a390-4c75d1bdfd71\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1084 - Publicly Accessible Content\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1084\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d0eb15db-dd1c-4d1d-b200-b12dd6cd060c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d0eb15db-dd1c-4d1d-b200-b12dd6cd060c\"},{\"properties\":{\"displayName\":\"Add or replace a tag on resource groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Adds or replaces the specified tag and value when any resource group is created or updated. Existing resource groups can be remediated by triggering a remediation task.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}},\"tagValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Value\",\"description\":\"Value of the tag, such as 'production'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions/resourceGroups\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"notEquals\":\"[parameters('tagValue')]\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"addOrReplace\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[parameters('tagValue')]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d157c373-a6c4-483d-aaad-570756956268\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d157c373-a6c4-483d-aaad-570756956268\"},{\"properties\":{\"displayName\":\"Enforce SSL connection should be enabled for PostgreSQL database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any PostgreSQL server that is not enforcing SSL connection. Azure Database for PostgreSQL prefers connecting your client applications to the PostgreSQL service using Secure Sockets Layer (SSL). Enforcing SSL connections between your database server and your client applications helps protect against 'man-in-the-middle' attacks by encrypting the data stream between the server and your application\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},{\"field\":\"Microsoft.DBforPostgreSQL/servers/sslEnforcement\",\"exists\":\"true\"},{\"field\":\"Microsoft.DBforPostgreSQL/servers/sslEnforcement\",\"notEquals\":\"Enabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d158790f-bfb0-486c-8631-2dc6b4e8e6af\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d158790f-bfb0-486c-8631-2dc6b4e8e6af\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1620 - Denial Of Service Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1620\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d17c826b-1dec-43e1-a984-7b71c446649c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d17c826b-1dec-43e1-a984-7b71c446649c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1409 - Maintenance Tools | Prevent Unauthorized Removal\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1409\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d1880188-e51a-4772-b2ab-68f5e8bd27f6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d1880188-e51a-4772-b2ab-68f5e8bd27f6\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Function Apps that are not using custom domains\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use of custom domains protects a Function app from common attacks such as phishing and other DNS-related attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"functionapp\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux\"},{\"field\":\"kind\",\"equals\":\"functionapp,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UsedCustomDomains\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d1cb47db-b7a1-4c46-814e-aad1c0e84f3c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d1cb47db-b7a1-4c46-814e-aad1c0e84f3c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1195 - Configuration Change Control | Automated Document / Notification / Prohibition Of Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1195\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d1e1d65c-1013-4484-bd54-991332e6a0d2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d1e1d65c-1013-4484-bd54-991332e6a0d2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1721 - Spam Protection | Central Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1721\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d207aaef-7c4d-4f8c-9dce-4d62dfa3d29a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d207aaef-7c4d-4f8c-9dce-4d62dfa3d29a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1106 - Audit Events | Reviews And Updates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1106\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d2b4feae-61ab-423f-a4c5-0e38ac4464d8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d2b4feae-61ab-423f-a4c5-0e38ac4464d8\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1030 - Information Flow Enforcement | Physical / Logical Separation Of Information Flows\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1030\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d3531453-b869-4606-9122-29c1cd6e7ed1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d3531453-b869-4606-9122-29c1cd6e7ed1\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs on which the DSC configuration is not compliant\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows VMs on which the Desired State Configuration (DSC) configuration is not compliant. This policy is only applicable to machines with WMF 4 and above. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsDscConfiguration\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsDscConfiguration\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d38b4c26-9d2e-47d7-aefe-18d859a8706a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d38b4c26-9d2e-47d7-aefe-18d859a8706a\"},{\"properties\":{\"displayName\":\"Long-term geo-redundant backup should be enabled for Azure SQL Databases\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Azure SQL Database with long-term geo-redundant backup not enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers/databases\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies\",\"name\":\"default\",\"existenceCondition\":{\"anyOf\":[{\"field\":\"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies/weeklyRetention\",\"notEquals\":\"PT0S\"},{\"field\":\"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies/monthlyRetention\",\"notEquals\":\"PT0S\"},{\"field\":\"Microsoft.Sql/servers/databases/backupLongTermRetentionPolicies/yearlyRetention\",\"notEquals\":\"PT0S\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d38fc420-0735-4ef3-ac11-c806f651a570\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d38fc420-0735-4ef3-ac11-c806f651a570\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1641 - Transmission Confidentiality And Integrity | Cryptographic Or Alternate Physical Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1641\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d39d4f68-7346-4133-8841-15318a714a24\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d39d4f68-7346-4133-8841-15318a714a24\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1249 - Contingency Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1249\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d3bf4251-0818-42db-950b-afd5b25a51c2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d3bf4251-0818-42db-950b-afd5b25a51c2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1562 - Allocation Of Resources\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1562\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d4142013-7964-4163-a313-a900301c2cef\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d4142013-7964-4163-a313-a900301c2cef\"},{\"properties\":{\"displayName\":\"Virtual machines should be connected to an approved virtual network\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any virtual machine connected to a virtual network that is not approved.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"The effect determines what happens when the policy rule is evaluated to match\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"virtualNetworkId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Virtual network Id\",\"description\":\"Resource Id of the virtual network. Example: /subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroupName/providers/Microsoft.Network/virtualNetworks/Name\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkInterfaces\"},{\"not\":{\"field\":\"Microsoft.Network/networkInterfaces/ipconfigurations[*].subnet.id\",\"like\":\"[concat(parameters('virtualNetworkId'),'/*')]\"}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d416745a-506c-48b6-8ab1-83cb814bcaa3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d416745a-506c-48b6-8ab1-83cb814bcaa3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1383 - Incident Response Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1383\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d4558451-e16a-4d2d-a066-fe12a6282bb9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d4558451-e16a-4d2d-a066-fe12a6282bb9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1112 - Response To Audit Processing Failures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1112\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d530aad8-4ee2-45f4-b234-c061dae683c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d530aad8-4ee2-45f4-b234-c061dae683c0\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Data Lake Analytics to Log Analytics workspace\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Data Lake Analytics to stream to a regional Log Analytics workspace when any Data Lake Analytics which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_logAnalytics\"},\"logAnalytics\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"Select Log Analytics workspace from dropdown list. If this workspace is outside of the scope of the assignment you must manually grant 'Log Analytics Contributor' permissions (or similar) to the policy assignment's principal ID.\",\"strongType\":\"omsWorkspace\",\"assignPermissions\":true}},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Log Analytics workspace - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeAnalytics/accounts\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\"/providers/microsoft.authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"logAnalytics\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.DataLakeAnalytics/accounts/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"workspaceId\":\"[parameters('logAnalytics')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"Audit\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Requests\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"logAnalytics\":{\"value\":\"[parameters('logAnalytics')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d56a5a7c-72d7-42bc-8ceb-3baf4c0eae03\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d56a5a7c-72d7-42bc-8ceb-3baf4c0eae03\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1585 - Security Engineering Principles\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1585\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d57f8732-5cdc-4cda-8d27-ab148e1f3a55\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d57f8732-5cdc-4cda-8d27-ab148e1f3a55\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1667 - System And Information Integrity Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1667\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d61880dc-6e38-4f2a-a30c-3406a98f8220\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d61880dc-6e38-4f2a-a30c-3406a98f8220\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1150 - Security Assessments | External Organizations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1150\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d630429d-e763-40b1-8fba-d20ba7314afb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d630429d-e763-40b1-8fba-d20ba7314afb\"},{\"properties\":{\"displayName\":\"Event Hub should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Event Hub not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.EventHub/namespaces\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.EventHub/namespaces/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.EventHub/namespaces/virtualNetworkRules/virtualNetworkSubnetId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d63edb4a-c612-454d-b47d-191a724fcbf0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d63edb4a-c612-454d-b47d-191a724fcbf0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1549 - Vulnerability Scanning\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1549\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d6976a08-d969-4df2-bb38-29556c2eb48a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d6976a08-d969-4df2-bb38-29556c2eb48a\"},{\"properties\":{\"displayName\":\"[Preview]: Log Analytics agent should be installed on your Windows Azure Arc machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits Windows Azure Arc machines if the Log Analytics agent is not installed.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Monitoring\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.HybridCompute/machines/extensions/type\",\"equals\":\"MicrosoftMonitoringAgent\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d69b1763-b96d-40b8-a2d9-ca31e9fd0d3e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d69b1763-b96d-40b8-a2d9-ca31e9fd0d3e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1473 - Emergency Power\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1473\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d7047705-d719-46a7-8bb0-76ad233eba71\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d7047705-d719-46a7-8bb0-76ad233eba71\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1529 - Third-Party Personnel Security\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1529\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d74fdc92-1cb8-4a34-9978-8556425cd14c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d74fdc92-1cb8-4a34-9978-8556425cd14c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1350 - Identification And Authentication (Non-Org. Users) | Use Of FICAM-Issued Profiles\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1350\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d77fd943-6ba6-4a21-ba07-22b03e347cc4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d77fd943-6ba6-4a21-ba07-22b03e347cc4\"},{\"properties\":{\"displayName\":\"Show audit results from Windows Server VMs on which Windows Serial Console is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows Server virtual machines on which Windows Serial Console is not enabled. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsSerialConsole\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d7ccd0ca-8d78-42af-a43d-6b7f928accbc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d7ccd0ca-8d78-42af-a43d-6b7f928accbc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1016 - Account Management | Automated Audit Actions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1016\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d8b43277-512e-40c3-ab00-14b3b6e72238\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d8b43277-512e-40c3-ab00-14b3b6e72238\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1488 - Alternate Work Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1488\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d8ef30eb-a44f-47af-8524-ac19a36d41d2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d8ef30eb-a44f-47af-8524-ac19a36d41d2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1577 - Acquisition Process | Continuous Monitoring Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1577\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d922484a-8cfc-4a6b-95a4-77d6a685407f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d922484a-8cfc-4a6b-95a4-77d6a685407f\"},{\"properties\":{\"displayName\":\"Public network access should be disabled for MySQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MySQL servers in your environment with public network access enabled. For more details, visit https://go.microsoft.com/fwlink/?linkid=2120014.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforMySQL/servers\"},{\"field\":\"Microsoft.DBforMySQL/servers/publicNetworkAccess\",\"notEquals\":\"Disabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d9844e8a-1437-4aeb-a32c-0c992f056095\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d9844e8a-1437-4aeb-a32c-0c992f056095\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1271 - Alternate Storage Site | Accessibility\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1271\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/da3bfb53-9c46-4010-b3db-a7ba1296dada\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"da3bfb53-9c46-4010-b3db-a7ba1296dada\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1516 - Personnel Termination\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1516\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/da3cd269-156f-435b-b472-c3af34c032ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"da3cd269-156f-435b-b472-c3af34c032ed\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Batch Account to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Batch Account to stream to a regional Event Hub when any Batch Account which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Batch Accounts in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Batch/batchAccounts/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"ServiceLog\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/db51110f-0865-4a6e-b274-e2e07a5b2cd7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"db51110f-0865-4a6e-b274-e2e07a5b2cd7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1277 - Alternate Processing Site | Priority Of Service\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1277\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dc43e829-3d50-4a0a-aa0f-428d551862aa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dc43e829-3d50-4a0a-aa0f-428d551862aa\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1439 - Media Sanitization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1439\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dce72873-c5f1-47c3-9b4f-6b8207fd5a45\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dce72873-c5f1-47c3-9b4f-6b8207fd5a45\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1264 - Contingency Plan Testing | Coordinate With Related Plans\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1264\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd280d4b-50a1-42fb-a479-ece5878acf19\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd280d4b-50a1-42fb-a479-ece5878acf19\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Applications that are not using custom domains\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use of custom domains protects a web application from common attacks such as phishing and other DNS-related attacks.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UsedCustomDomains\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd2ea520-6b06-45c3-806e-ea297c23e06a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd2ea520-6b06-45c3-806e-ea297c23e06a\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'System Audit Policies - Policy Change'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - Policy Change'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesPolicyChange\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd4680ed-0559-4a6a-ad10-081d14cbb484\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd4680ed-0559-4a6a-ad10-081d14cbb484\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1715 - Software, Firmware, And Information Integrity | Automated Response To Integrity Violations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1715\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd469ae0-71a8-4adc-aafc-de6949ca3339\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd469ae0-71a8-4adc-aafc-de6949ca3339\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1678 - Malicious Code Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1678\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd533cb0-b416-4be7-8e86-4d154824dfd7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd533cb0-b416-4be7-8e86-4d154824dfd7\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1391 - Information Spillage Response | Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1391\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd6ac1a1-660e-4810-baa8-74e868e2ed47\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd6ac1a1-660e-4810-baa8-74e868e2ed47\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1146 - Security Assessments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1146\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dd83410c-ecb6-4547-8f14-748c3cbdc7ac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dd83410c-ecb6-4547-8f14-748c3cbdc7ac\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1602 - Developer Security Testing And Evaluation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1602\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ddae2e97-a449-499f-a1c8-aea4a7e52ec9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ddae2e97-a449-499f-a1c8-aea4a7e52ec9\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Settings - Account Policies'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Settings - Account Policies'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecuritySettingsAccountPolicies\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ddb53c61-9db4-41d4-a953-2abff5b66c12\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ddb53c61-9db4-41d4-a953-2abff5b66c12\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Recovery console'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Recovery console'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Recovery console: Allow floppy copy and access to all drives and all folders\",\"description\":\"Specifies whether to make the Recovery Console SET command available, which allows setting of recovery console environment variables.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsRecoveryconsole\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Recovery console: Allow floppy copy and access to all drives and all folders;ExpectedValue', '=', parameters('RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsRecoveryconsole\"},\"RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders\":{\"value\":\"[parameters('RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Recovery console: Allow floppy copy and access to all drives and all folders;ExpectedValue\",\"value\":\"[parameters('RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Recovery console: Allow floppy copy and access to all drives and all folders;ExpectedValue\",\"value\":\"[parameters('RecoveryConsoleAllowFloppyCopyAndAccessToAllDrivesAndAllFolders')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ddc0a4d5-5e08-43d5-9fd9-b586d8d7116b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ddc0a4d5-5e08-43d5-9fd9-b586d8d7116b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1689 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1689\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/de901f2f-a01a-4456-97f0-33cda7966172\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"de901f2f-a01a-4456-97f0-33cda7966172\"},{\"properties\":{\"displayName\":\"[Preview]: Deploy Dependency agent to hybrid Linux Azure Arc machines\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy deploys the Dependency agent to Linux Azure Arc machines if the agent isn't installed.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Monitoring\",\"preview\":true},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\"],\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.HybridCompute/machines/extensions/type\",\"equals\":\"DependencyAgentLinux\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"},{\"field\":\"Microsoft.HybridCompute/machines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"vmExtensionName\":\"DependencyAgent\",\"vmExtensionPublisher\":\"Microsoft.Azure.Monitoring.DependencyAgent\",\"vmExtensionType\":\"DependencyAgentLinux\"},\"resources\":[{\"name\":\"[concat(parameters('vmName'), '/', variables('vmExtensionName'))]\",\"type\":\"Microsoft.HybridCompute/machines/extensions\",\"location\":\"[parameters('location')]\",\"apiVersion\":\"2019-12-12\",\"properties\":{\"publisher\":\"[variables('vmExtensionPublisher')]\",\"type\":\"[variables('vmExtensionType')]\",\"settings\":{}}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled DA extension for VM', ': ', parameters('vmName'))]\"}}},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/deacecc0-9f84-44d2-bb82-46f32d766d43\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"deacecc0-9f84-44d2-bb82-46f32d766d43\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1528 - Access Agreements\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1528\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/deb9797c-22f8-40e8-b342-a84003c924e6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"deb9797c-22f8-40e8-b342-a84003c924e6\"},{\"properties\":{\"displayName\":\"MariaDB server should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MariaDB servers not configured to use a virtual network service endpoint. For more details, visit https://aka.ms/mariadbvirtualnetwork.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforMariaDB/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules\",\"existenceCondition\":{\"field\":\"Microsoft.DBforMariaDB/servers/virtualNetworkRules/virtualNetworkSubnetId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dfbd9a64-6114-48de-a47d-90574dc2e489\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dfbd9a64-6114-48de-a47d-90574dc2e489\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1673 - Flaw Remediation | Automated Flaw Remediation Status\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1673\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/dff0b90d-5a6f-491c-b2f8-b90aa402d844\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dff0b90d-5a6f-491c-b2f8-b90aa402d844\"},{\"properties\":{\"displayName\":\"[Deprecated]: Allow resource creation only in Japan data centers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Allows resource creation in the following locations only: Japan East, Japan West\",\"metadata\":{\"category\":\"General\",\"deprecated\":true},\"parameters\":{},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"japaneast\",\"japanwest\"]}},\"then\":{\"effect\":\"Deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e01598e8-6538-41ed-95e8-8b29746cd697\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e01598e8-6538-41ed-95e8-8b29746cd697\"},{\"properties\":{\"displayName\":\"Cosmos DB should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Cosmos DB not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DocumentDB/databaseAccounts\"},{\"field\":\"Microsoft.DocumentDB/databaseAccounts/virtualNetworkRules[*].id\",\"exists\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e0a2b1a3-f7f9-4569-807f-2a9edebdf4d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e0a2b1a3-f7f9-4569-807f-2a9edebdf4d9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1206 - Access Restrictions For Change | Limit Production / Operational Privileges\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1206\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e0de232d-02a0-4652-872d-88afb4ae5e91\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e0de232d-02a0-4652-872d-88afb4ae5e91\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that do not have the specified Windows PowerShell execution policy\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines where Windows PowerShell is not configured to use the specified PowerShell execution policy. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"ExecutionPolicy\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"PowerShell Execution Policy\",\"description\":\"The expected PowerShell execution policy.\"},\"allowedValues\":[\"AllSigned\",\"Bypass\",\"Default\",\"RemoteSigned\",\"Restricted\",\"Undefined\",\"Unrestricted\"]}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsPowerShellExecutionPolicy\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[PowerShellExecutionPolicy]PowerShellExecutionPolicy1;ExecutionPolicy', '=', parameters('ExecutionPolicy')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"WindowsPowerShellExecutionPolicy\"},\"ExecutionPolicy\":{\"value\":\"[parameters('ExecutionPolicy')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"ExecutionPolicy\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[PowerShellExecutionPolicy]PowerShellExecutionPolicy1;ExecutionPolicy\",\"value\":\"[parameters('ExecutionPolicy')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[PowerShellExecutionPolicy]PowerShellExecutionPolicy1;ExecutionPolicy\",\"value\":\"[parameters('ExecutionPolicy')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e0efc13a-122a-47c5-b817-2ccfe5d12615\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e0efc13a-122a-47c5-b817-2ccfe5d12615\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1714 - Software, Firmware, And Information Integrity | Automated Notifications Of Integrity Violations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1714\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e12494fa-b81e-4080-af71-7dbacc2da0ec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e12494fa-b81e-4080-af71-7dbacc2da0ec\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1686 - Information System Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1686\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e17085c5-0be8-4423-b39b-a52d3d1402e5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e17085c5-0be8-4423-b39b-a52d3d1402e5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1722 - Spam Protection | Automatic Updates\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1722\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e1da06bd-25b6-4127-a301-c313d6873fff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e1da06bd-25b6-4127-a301-c313d6873fff\"},{\"properties\":{\"displayName\":\"Vulnerabilities in security configuration on your machines should be remediated\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Servers which do not satisfy the configured baseline will be monitored by Azure Security Center as recommendations\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"osVulnerabilities\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e1e5fd5d-3e4c-4ce1-8661-7d1873ae6b15\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e1e5fd5d-3e4c-4ce1-8661-7d1873ae6b15\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1047 - System Use Notification\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1047\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e1ff6d62-a55c-41ab-90ba-90bb5b7b6f62\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e1ff6d62-a55c-41ab-90ba-90bb5b7b6f62\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1276 - Alternate Processing Site | Accessibility\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1276\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e214e563-1206-4a43-a56b-ac5880c9c571\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e214e563-1206-4a43-a56b-ac5880c9c571\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1560 - System And Services Acquisition Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1560\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e29e0915-5c2f-4d09-8806-048b749ad763\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e29e0915-5c2f-4d09-8806-048b749ad763\"},{\"properties\":{\"displayName\":\"Ensure that 'HTTP Version' is the latest, if used to run the Function app\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Periodically, newer versions are released for HTTP either due to security flaws or to include additional functionality. Using the latest HTTP version for web apps to take advantage of security fixes, if any, and/or new functionalities of the newer version.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.http20Enabled\",\"equals\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e2c1c086-2d84-4019-bff3-c44ccd95113c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e2c1c086-2d84-4019-bff3-c44ccd95113c\"},{\"properties\":{\"displayName\":\"Audit Dependency agent deployment in virtual machine scale sets - VM Image (OS) unlisted\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Reports virtual machine scale sets as non-compliant if the VM Image (OS) is not in the list defined and the agent is not installed. The list of OS images will be updated over time as support is updated.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"listOfImageIdToInclude_windows\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Windows OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]},\"listOfImageIdToInclude_linux\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Optional: List of VM images that have supported Linux OS to add to scope\",\"description\":\"Example value: '/subscriptions//resourceGroups/YourResourceGroup/providers/Microsoft.Compute/images/ContosoStdImage'\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"not\":{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_windows')]\"},{\"field\":\"Microsoft.Compute/imageId\",\"in\":\"[parameters('listOfImageIdToInclude_linux')]\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"2008-R2-SP1\",\"2008-R2-SP1-smalldisk\",\"2012-Datacenter\",\"2012-Datacenter-smalldisk\",\"2012-R2-Datacenter\",\"2012-R2-Datacenter-smalldisk\",\"2016-Datacenter\",\"2016-Datacenter-Server-Core\",\"2016-Datacenter-Server-Core-smalldisk\",\"2016-Datacenter-smalldisk\",\"2016-Datacenter-with-Containers\",\"2016-Datacenter-with-RDSH\",\"2019-Datacenter\",\"2019-Datacenter-Core\",\"2019-Datacenter-Core-smalldisk\",\"2019-Datacenter-Core-with-Containers\",\"2019-Datacenter-Core-with-Containers-smalldisk\",\"2019-Datacenter-smalldisk\",\"2019-Datacenter-with-Containers\",\"2019-Datacenter-with-Containers-smalldisk\",\"2019-Datacenter-zhcn\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerSemiAnnual\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"Datacenter-Core-1709-smalldisk\",\"Datacenter-Core-1709-with-Containers-smalldisk\",\"Datacenter-Core-1803-with-Containers-smalldisk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServerHPCPack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"WindowsServerHPCPack\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2016-BYOL\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"*-WS2012R2-BYOL\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"MLServer-WS2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftVisualStudio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"VisualStudio\",\"Windows\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftDynamicsAX\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Dynamics\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"equals\":\"Pre-Req-AX7-Onebox-U8\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"windows-data-science-vm\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsDesktop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Windows-10\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-SAP-HANA\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SLES\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-Priority\",\"SLES-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"12-SP2\",\"12-SP3\",\"12-SP4\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"14.04.0-LTS\",\"14.04.1-LTS\",\"14.04.5-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"16.04-LTS\",\"16.04.0-LTS\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"in\":[\"18.04-LTS\"]}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Centos\",\"Centos-LVM\",\"CentOS-SRIOV\"]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"6.*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"like\":\"7*\"}]}]}}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"existenceCondition\":{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Monitoring.DependencyAgent\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e2dd799a-a932-4e9d-ac17-d473bc3c6c10\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e2dd799a-a932-4e9d-ac17-d473bc3c6c10\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1161 - Continuous Monitoring\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1161\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e2f8f6c6-dde4-436b-a79d-bc50e129eb3a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e2f8f6c6-dde4-436b-a79d-bc50e129eb3a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1387 - Information Spillage Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1387\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e3007185-3857-43a9-8237-06ca94f1084c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e3007185-3857-43a9-8237-06ca94f1084c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1479 - Fire Protection | Automatic Fire Suppression\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1479\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e327b072-281d-4f75-9c28-4216e5d72f26\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e327b072-281d-4f75-9c28-4216e5d72f26\"},{\"properties\":{\"displayName\":\"Azure VPN gateways should not use 'basic' SKU\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy ensures that VPN gateways do not use 'basic' SKU.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworkGateways\"},{\"field\":\"Microsoft.Network/virtualNetworkGateways/gatewayType\",\"equals\":\"Vpn\"},{\"field\":\"Microsoft.Network/virtualNetworkGateways/sku.tier\",\"equals\":\"Basic\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e345b6c3-24bd-4c93-9bbb-7e5e49a17b78\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e345b6c3-24bd-4c93-9bbb-7e5e49a17b78\"},{\"properties\":{\"displayName\":\"MFA should be enabled on accounts with read permissions on your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Multi-Factor Authentication (MFA) should be enabled for all subscription accounts with read privileges to prevent a breach of accounts or resources.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"EnableMFAForReadPermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e3576e28-8b17-4677-84c3-db2990658d64\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e3576e28-8b17-4677-84c3-db2990658d64\"},{\"properties\":{\"displayName\":\"RDP access from the Internet should be blocked\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits any network security rule that allows RDP access from Internet\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups/securityRules\"},{\"allOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Allow\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"},{\"anyOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange\",\"equals\":\"*\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange\",\"equals\":\"3389\"},{\"value\":\"[if(and(not(empty(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'))), contains(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'),'-')), and(lessOrEquals(int(first(split(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'), '-'))),3389),greaterOrEquals(int(last(split(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRange'), '-'))),3389)), 'false')]\",\"equals\":\"true\"},{\"count\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\"where\":{\"value\":\"[if(and(not(empty(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')))), contains(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')),'-')), and(lessOrEquals(int(first(split(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')), '-'))),3389),greaterOrEquals(int(last(split(first(field('Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]')), '-'))),3389)) , 'false')]\",\"equals\":\"true\"}},\"greater\":0},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\"notEquals\":\"*\"}},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/destinationPortRanges[*]\",\"notEquals\":\"3389\"}}]},{\"anyOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"*\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Internet\"},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefixes[*]\",\"notEquals\":\"*\"}},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefixes[*]\",\"notEquals\":\"Internet\"}}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e372f825-a257-4fb8-9175-797a8a8627d6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e372f825-a257-4fb8-9175-797a8a8627d6\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Shutdown'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Shutdown'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsShutdown\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e3a77a94-cf41-4ee8-b45c-98be28841c03\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e3a77a94-cf41-4ee8-b45c-98be28841c03\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Settings - Account Policies'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Settings - Account Policies'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"EnforcePasswordHistory\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enforce password history\",\"description\":\"Specifies limits on password reuse - how many times a new password must be created for a user account before the password can be repeated.\"},\"defaultValue\":\"24\"},\"MaximumPasswordAge\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Maximum password age\",\"description\":\"Specifies the maximum number of days that may elapse before a user account password must be changed. The format of the value is two integers separated by a comma, denoting an inclusive range.\"},\"defaultValue\":\"1,70\"},\"MinimumPasswordAge\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Minimum password age\",\"description\":\"Specifies the minimum number of days that must elapse before a user account password can be changed.\"},\"defaultValue\":\"1\"},\"MinimumPasswordLength\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Minimum password length\",\"description\":\"Specifies the minimum number of characters that a user account password may contain.\"},\"defaultValue\":\"14\"},\"PasswordMustMeetComplexityRequirements\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Password must meet complexity requirements\",\"description\":\"Specifies whether a user account password must be complex. If required, a complex password must not contain part of user's account name or full name; be at least 6 characters long; contain a mix of uppercase, lowercase, number, and non-alphabetic characters.\"},\"defaultValue\":\"1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecuritySettingsAccountPolicies\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Enforce password history;ExpectedValue', '=', parameters('EnforcePasswordHistory'), ',', 'Maximum password age;ExpectedValue', '=', parameters('MaximumPasswordAge'), ',', 'Minimum password age;ExpectedValue', '=', parameters('MinimumPasswordAge'), ',', 'Minimum password length;ExpectedValue', '=', parameters('MinimumPasswordLength'), ',', 'Password must meet complexity requirements;ExpectedValue', '=', parameters('PasswordMustMeetComplexityRequirements')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecuritySettingsAccountPolicies\"},\"EnforcePasswordHistory\":{\"value\":\"[parameters('EnforcePasswordHistory')]\"},\"MaximumPasswordAge\":{\"value\":\"[parameters('MaximumPasswordAge')]\"},\"MinimumPasswordAge\":{\"value\":\"[parameters('MinimumPasswordAge')]\"},\"MinimumPasswordLength\":{\"value\":\"[parameters('MinimumPasswordLength')]\"},\"PasswordMustMeetComplexityRequirements\":{\"value\":\"[parameters('PasswordMustMeetComplexityRequirements')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"EnforcePasswordHistory\":{\"type\":\"string\"},\"MaximumPasswordAge\":{\"type\":\"string\"},\"MinimumPasswordAge\":{\"type\":\"string\"},\"MinimumPasswordLength\":{\"type\":\"string\"},\"PasswordMustMeetComplexityRequirements\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Enforce password history;ExpectedValue\",\"value\":\"[parameters('EnforcePasswordHistory')]\"},{\"name\":\"Maximum password age;ExpectedValue\",\"value\":\"[parameters('MaximumPasswordAge')]\"},{\"name\":\"Minimum password age;ExpectedValue\",\"value\":\"[parameters('MinimumPasswordAge')]\"},{\"name\":\"Minimum password length;ExpectedValue\",\"value\":\"[parameters('MinimumPasswordLength')]\"},{\"name\":\"Password must meet complexity requirements;ExpectedValue\",\"value\":\"[parameters('PasswordMustMeetComplexityRequirements')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Enforce password history;ExpectedValue\",\"value\":\"[parameters('EnforcePasswordHistory')]\"},{\"name\":\"Maximum password age;ExpectedValue\",\"value\":\"[parameters('MaximumPasswordAge')]\"},{\"name\":\"Minimum password age;ExpectedValue\",\"value\":\"[parameters('MinimumPasswordAge')]\"},{\"name\":\"Minimum password length;ExpectedValue\",\"value\":\"[parameters('MinimumPasswordLength')]\"},{\"name\":\"Password must meet complexity requirements;ExpectedValue\",\"value\":\"[parameters('PasswordMustMeetComplexityRequirements')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e3d95ab7-f47a-49d8-a347-784177b6c94c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e3d95ab7-f47a-49d8-a347-784177b6c94c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1451 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1451\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e3f1e5a3-25c1-4476-8cb6-3955031f8e65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e3f1e5a3-25c1-4476-8cb6-3955031f8e65\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1357 - Incident Response Training | Automated Training Environments\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1357\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e4213689-05e8-4241-9d4e-8dd1cdafd105\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e4213689-05e8-4241-9d4e-8dd1cdafd105\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - User Account Control'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - User Account Control'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"UACAdminApprovalModeForTheBuiltinAdministratorAccount\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"UAC: Admin Approval Mode for the Built-in Administrator account\",\"description\":\"Specifies the behavior of Admin Approval Mode for the built-in Administrator account.\"},\"defaultValue\":\"1\"},\"UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"UAC: Behavior of the elevation prompt for administrators in Admin Approval Mode\",\"description\":\"Specifies the behavior of the elevation prompt for administrators.\"},\"defaultValue\":\"2\"},\"UACDetectApplicationInstallationsAndPromptForElevation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"UAC: Detect application installations and prompt for elevation\",\"description\":\"Specifies the behavior of application installation detection for the computer.\"},\"defaultValue\":\"1\"},\"UACRunAllAdministratorsInAdminApprovalMode\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"UAC: Run all administrators in Admin Approval Mode\",\"description\":\"Specifies the behavior of all User Account Control (UAC) policy settings for the computer.\"},\"defaultValue\":\"1\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsUserAccountControl\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('User Account Control: Admin Approval Mode for the Built-in Administrator account;ExpectedValue', '=', parameters('UACAdminApprovalModeForTheBuiltinAdministratorAccount'), ',', 'User Account Control: Behavior of the elevation prompt for administrators in Admin Approval Mode;ExpectedValue', '=', parameters('UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode'), ',', 'User Account Control: Detect application installations and prompt for elevation;ExpectedValue', '=', parameters('UACDetectApplicationInstallationsAndPromptForElevation'), ',', 'User Account Control: Run all administrators in Admin Approval Mode;ExpectedValue', '=', parameters('UACRunAllAdministratorsInAdminApprovalMode')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsUserAccountControl\"},\"UACAdminApprovalModeForTheBuiltinAdministratorAccount\":{\"value\":\"[parameters('UACAdminApprovalModeForTheBuiltinAdministratorAccount')]\"},\"UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode\":{\"value\":\"[parameters('UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode')]\"},\"UACDetectApplicationInstallationsAndPromptForElevation\":{\"value\":\"[parameters('UACDetectApplicationInstallationsAndPromptForElevation')]\"},\"UACRunAllAdministratorsInAdminApprovalMode\":{\"value\":\"[parameters('UACRunAllAdministratorsInAdminApprovalMode')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"UACAdminApprovalModeForTheBuiltinAdministratorAccount\":{\"type\":\"string\"},\"UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode\":{\"type\":\"string\"},\"UACDetectApplicationInstallationsAndPromptForElevation\":{\"type\":\"string\"},\"UACRunAllAdministratorsInAdminApprovalMode\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"User Account Control: Admin Approval Mode for the Built-in Administrator account;ExpectedValue\",\"value\":\"[parameters('UACAdminApprovalModeForTheBuiltinAdministratorAccount')]\"},{\"name\":\"User Account Control: Behavior of the elevation prompt for administrators in Admin Approval Mode;ExpectedValue\",\"value\":\"[parameters('UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode')]\"},{\"name\":\"User Account Control: Detect application installations and prompt for elevation;ExpectedValue\",\"value\":\"[parameters('UACDetectApplicationInstallationsAndPromptForElevation')]\"},{\"name\":\"User Account Control: Run all administrators in Admin Approval Mode;ExpectedValue\",\"value\":\"[parameters('UACRunAllAdministratorsInAdminApprovalMode')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"User Account Control: Admin Approval Mode for the Built-in Administrator account;ExpectedValue\",\"value\":\"[parameters('UACAdminApprovalModeForTheBuiltinAdministratorAccount')]\"},{\"name\":\"User Account Control: Behavior of the elevation prompt for administrators in Admin Approval Mode;ExpectedValue\",\"value\":\"[parameters('UACBehaviorOfTheElevationPromptForAdministratorsInAdminApprovalMode')]\"},{\"name\":\"User Account Control: Detect application installations and prompt for elevation;ExpectedValue\",\"value\":\"[parameters('UACDetectApplicationInstallationsAndPromptForElevation')]\"},{\"name\":\"User Account Control: Run all administrators in Admin Approval Mode;ExpectedValue\",\"value\":\"[parameters('UACRunAllAdministratorsInAdminApprovalMode')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e425e402-a050-45e5-b010-bd3f934589fc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e425e402-a050-45e5-b010-bd3f934589fc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1340 - Authenticator Management | No Embedded Unencrypted Static Authenticators\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1340\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e51ff84b-e5ea-408f-b651-2ecc2933e4c6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e51ff84b-e5ea-408f-b651-2ecc2933e4c6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1381 - Incident Response Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1381\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e5368258-9684-4567-8126-269f34e65eab\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e5368258-9684-4567-8126-269f34e65eab\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1421 - Maintenance Personnel\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1421\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e539caaa-da8c-41b8-9e1e-449851e2f7a6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e539caaa-da8c-41b8-9e1e-449851e2f7a6\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1716 - Software, Firmware, And Information Integrity | Integration Of Detection And Response\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1716\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e54c325e-42a0-4dcf-b105-046e0f6f590f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e54c325e-42a0-4dcf-b105-046e0f6f590f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1023 - Account Management | Usage Conditions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1023\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e55698b6-3dea-4aa9-99b9-d8218c6ab6e5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e55698b6-3dea-4aa9-99b9-d8218c6ab6e5\"},{\"properties\":{\"displayName\":\"Allowed locations\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy enables you to restrict the locations your organization can specify when deploying resources. Use to enforce your geo-compliance requirements. Excludes resource groups, Microsoft.AzureActiveDirectory/b2cDirectories, and resources that use the 'global' region.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"General\"},\"parameters\":{\"listOfAllowedLocations\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\",\"displayName\":\"Allowed locations\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"notIn\":\"[parameters('listOfAllowedLocations')]\"},{\"field\":\"location\",\"notEquals\":\"global\"},{\"field\":\"type\",\"notEquals\":\"Microsoft.AzureActiveDirectory/b2cDirectories\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e56962a6-4747-49cd-b67b-bf8b01975c4c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e56962a6-4747-49cd-b67b-bf8b01975c4c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1296 - Information System Recovery And Reconstitution | Transaction Recovery\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1296\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e57b98a0-a011-4956-a79d-5d17ed8b8e48\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e57b98a0-a011-4956-a79d-5d17ed8b8e48\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1499 - Rules Of Behavior\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1499\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e59671ab-9720-4ee2-9c60-170e8c82251e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e59671ab-9720-4ee2-9c60-170e8c82251e\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Accounts'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Accounts'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AccountsGuestAccountStatus\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Accounts: Guest account status\",\"description\":\"Specifies whether the local Guest account is disabled.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsAccounts\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Accounts: Guest account status;ExpectedValue', '=', parameters('AccountsGuestAccountStatus')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsAccounts\"},\"AccountsGuestAccountStatus\":{\"value\":\"[parameters('AccountsGuestAccountStatus')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AccountsGuestAccountStatus\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Accounts: Guest account status;ExpectedValue\",\"value\":\"[parameters('AccountsGuestAccountStatus')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Accounts: Guest account status;ExpectedValue\",\"value\":\"[parameters('AccountsGuestAccountStatus')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e5b81f87-9185-4224-bf00-9f505e9f89f3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e5b81f87-9185-4224-bf00-9f505e9f89f3\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Applications that are not using latest supported Node.js Framework\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Use the latest supported Node.js version for the latest security classes. Using older classes and types can make your application vulnerable.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"UseLatestNodeJS\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e67687e8-08d5-4e7f-8226-5b4753bba008\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e67687e8-08d5-4e7f-8226-5b4753bba008\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1465 - Monitoring Physical Access | Monitoring Physical Access To Information Systems\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1465\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e6e41554-86b5-4537-9f7f-4fc41a1d1640\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e6e41554-86b5-4537-9f7f-4fc41a1d1640\"},{\"properties\":{\"displayName\":\"Subnets should be associated with a Network Security Group\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Protect your subnet from potential threats by restricting access to it with a Network Security Group (NSG). NSGs contain a list of Access Control List (ACL) rules that allow or deny network traffic to your subnet.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"networkSecurityGroupsOnSubnets\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"NotApplicable\",\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e71308d3-144b-4262-b144-efdc3cc90517\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e71308d3-144b-4262-b144-efdc3cc90517\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1567 - System Development Life Cycle\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1567\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e72edbf6-aa61-436d-a227-0f32b77194b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e72edbf6-aa61-436d-a227-0f32b77194b3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1311 - Identifier Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1311\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e7568697-0c9e-4ea3-9cec-9e567d14f3c6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e7568697-0c9e-4ea3-9cec-9e567d14f3c6\"},{\"properties\":{\"displayName\":\"[Deprecated]: Advanced Threat Protection types should be set to 'All' in SQL server Advanced Data Security settings\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"It is recommended to enable all Advanced Threat Protection types on your SQL servers. Enabling all types protects against SQL injection, database vulnerabilities, and any other anomalous activities.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"SQL\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"Disabled\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/securityAlertPolicies/disabledAlerts[*]\",\"equals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e756b945-1b1b-480b-8de8-9a0859d5f7ad\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e756b945-1b1b-480b-8de8-9a0859d5f7ad\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1154 - System Interconnections | Unclassified Non-National Security System Connections\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1154\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e757ceb9-93b3-45fe-a4f4-f43f64f1ac5a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e757ceb9-93b3-45fe-a4f4-f43f64f1ac5a\"},{\"properties\":{\"displayName\":\"Allowed locations for resource groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy enables you to restrict the locations your organization can create resource groups in. Use to enforce your geo-compliance requirements.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"General\"},\"parameters\":{\"listOfAllowedLocations\":{\"type\":\"Array\",\"metadata\":{\"description\":\"The list of locations that resource groups can be created in.\",\"strongType\":\"location\",\"displayName\":\"Allowed locations\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions/resourceGroups\"},{\"field\":\"location\",\"notIn\":\"[parameters('listOfAllowedLocations')]\"}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e765b5de-1225-4ba3-bd56-1ac6695af988\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e765b5de-1225-4ba3-bd56-1ac6695af988\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1273 - Alternate Processing Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1273\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e77fcbf2-a1e8-44f1-860e-ed6583761e65\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e77fcbf2-a1e8-44f1-860e-ed6583761e65\"},{\"properties\":{\"displayName\":\"[Deprecated]: Audit Web Sockets state for a Web Application\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"The Web Sockets protocol is vulnerable to different types of security threats. Use of Web Sockets within a web application must be carefully reviewed.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Security Center\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"type\",\"equals\":\"microsoft.Web/sites\"},{\"anyof\":[{\"field\":\"kind\",\"equals\":\"app\"},{\"field\":\"kind\",\"equals\":\"WebApp\"},{\"field\":\"kind\",\"equals\":\"app,linux\"},{\"field\":\"kind\",\"equals\":\"app,linux,container\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"DisableWebSockets\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e797f851-8be7-4c40-bb56-2e3395215b0e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e797f851-8be7-4c40-bb56-2e3395215b0e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1169 - Continuous Monitoring | Trend Analyses\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1169\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e7ba2cb3-5675-4468-8b50-8486bdd998a5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e7ba2cb3-5675-4468-8b50-8486bdd998a5\"},{\"properties\":{\"displayName\":\"Enforce SSL connection should be enabled for MySQL database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any MySQL server that is not enforcing SSL connection. Azure Database for MySQL supports connecting your Azure Database for MySQL server to client applications using Secure Sockets Layer (SSL). Enforcing SSL connections between your database server and your client applications helps protect against 'man in the middle' attacks by encrypting the data stream between the server and your application.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforMySQL/servers\"},{\"field\":\"Microsoft.DBforMySQL/servers/sslEnforcement\",\"exists\":\"true\"},{\"field\":\"Microsoft.DBforMySQL/servers/sslEnforcement\",\"notEquals\":\"Enabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e802a67a-daf5-4436-9ea6-f6d821dd0c5d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e802a67a-daf5-4436-9ea6-f6d821dd0c5d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1237 - Software Usage Restrictions | Open Source Software\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1237\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e80b6812-0bfa-4383-8223-cdd86a46a890\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e80b6812-0bfa-4383-8223-cdd86a46a890\"},{\"properties\":{\"displayName\":\"Vulnerabilities in container security configurations should be remediated\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit vulnerabilities in security configuration on machines with Docker installed and display as recommendations in Azure Security Center.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\",\"Microsoft.Compute/virtualMachineScaleSets\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"ContainerBenchmark\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e8cbc669-f12d-49eb-93e7-9273119e9933\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e8cbc669-f12d-49eb-93e7-9273119e9933\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Data Lake Storage Gen1 to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Data Lake Storage Gen1 to stream to a regional Event Hub when any Data Lake Storage Gen1 which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Data Lake Storage in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DataLakeStore/accounts\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.DataLakeStore/accounts/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"Audit\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Requests\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e8d096bc-85de-4c5f-8cfb-857bd1b9d62d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e8d096bc-85de-4c5f-8cfb-857bd1b9d62d\"},{\"properties\":{\"displayName\":\"Container Registries should use private links\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Container Registries that do not have at least one approved private endpoint connection. Clients in a virtual network can securely access resources that have private endpoint connections through private links. For more information, visit: https://aka.ms/acr/private-link.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Container Registry\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerRegistry/registries\"},{\"count\":{\"field\":\"Microsoft.ContainerRegistry/registries/privateEndpointConnections[*]\",\"where\":{\"field\":\"Microsoft.ContainerRegistry/registries/privateEndpointConnections[*].privateLinkServiceConnectionState.status\",\"equals\":\"Approved\"}},\"less\":1}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e8eef0a8-67cf-4eb4-9386-14b0e78733d4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e8eef0a8-67cf-4eb4-9386-14b0e78733d4\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1626 - Boundary Protection | External Telecommunications Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1626\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e8f6bddd-6d67-439a-88d4-c5fe39a79341\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e8f6bddd-6d67-439a-88d4-c5fe39a79341\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1502 - Rules Of Behavior | Social Media And Networking Restrictions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1502\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e901375c-8f01-4ac8-9183-d5312f47fe63\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e901375c-8f01-4ac8-9183-d5312f47fe63\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1723 - Information Input Validation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1723\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e91927a0-ac1d-44a0-95f8-5185f9dfce9f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e91927a0-ac1d-44a0-95f8-5185f9dfce9f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1200 - Security Impact Analysis\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1200\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e98fe9d7-2ed3-44f8-93b7-24dca69783ff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e98fe9d7-2ed3-44f8-93b7-24dca69783ff\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1487 - Alternate Work Site\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1487\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e9c3371d-c30c-4f58-abd9-30b8a8199571\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e9c3371d-c30c-4f58-abd9-30b8a8199571\"},{\"properties\":{\"displayName\":\"Remote debugging should be turned off for API Apps\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Remote debugging requires inbound ports to be opened on API apps. Remote debugging should be turned off.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"*api\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/remoteDebuggingEnabled\",\"equals\":\"false\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e9c8d085-d9cc-4b17-9cdc-059f1f01f19e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e9c8d085-d9cc-4b17-9cdc-059f1f01f19e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1363 - Incident Handling | Automated Incident Handling Processes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1363\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ea3e8156-89a1-45b1-8bd6-938abc79fdfd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ea3e8156-89a1-45b1-8bd6-938abc79fdfd\"},{\"properties\":{\"displayName\":\"Inherit a tag from the resource group if missing\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Adds the specified tag with its value from the parent resource group when any resource missing this tag is created or updated. Existing resources can be remediated by triggering a remediation task. If the tag exists with a different value it will not be changed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Tags\"},\"parameters\":{\"tagName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Name of the tag, such as 'environment'\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagName')]]\",\"notEquals\":\"\"}]},\"then\":{\"effect\":\"modify\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"operations\":[{\"operation\":\"add\",\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"value\":\"[resourceGroup().tags[parameters('tagName')]]\"}]}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ea3f2387-9b95-492a-a190-fcdc54f7b070\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ea3f2387-9b95-492a-a190-fcdc54f7b070\"},{\"properties\":{\"displayName\":\"Key Vault should use a virtual network service endpoint\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Key Vault not configured to use a virtual network service endpoint.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.KeyVault/vaults\"},{\"anyOf\":[{\"field\":\"Microsoft.KeyVault/vaults/networkAcls.defaultAction\",\"notEquals\":\"Deny\"},{\"field\":\"Microsoft.KeyVault/vaults/networkAcls.virtualNetworkRules[*].id\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ea4d6841-2173-4317-9747-ff522a45120f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ea4d6841-2173-4317-9747-ff522a45120f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1422 - Maintenance Personnel\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1422\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ea556850-838d-4a37-8ce5-9d7642f95e11\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ea556850-838d-4a37-8ce5-9d7642f95e11\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1542 - Risk Assessment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1542\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eab340d0-3d55-4826-a0e5-feebfeb0131d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eab340d0-3d55-4826-a0e5-feebfeb0131d\"},{\"properties\":{\"displayName\":\"Ensure Function app has 'Client Certificates (Incoming client certificates)' set to 'On'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Client certificates allow for the app to request a certificate for incoming requests. Only clients that have a valid certificate will be able to reach the app.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"},{\"field\":\"Microsoft.Web/sites/clientCertEnabled\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eaebaea7-8013-4ceb-9d14-7eb32271373c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eaebaea7-8013-4ceb-9d14-7eb32271373c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1064 - Remote Access | Privileged Commands / Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1064\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eb4d9508-cbf0-4a3c-bb5c-6c95b159f3fb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb4d9508-cbf0-4a3c-bb5c-6c95b159f3fb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1321 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1321\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eb627cc6-3a9d-46b5-96b7-5fca49178a37\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb627cc6-3a9d-46b5-96b7-5fca49178a37\"},{\"properties\":{\"displayName\":\"Log checkpoints should be enabled for PostgreSQL database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy helps audit any PostgreSQL databases in your environment without log_checkpoints setting enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\",\"name\":\"log_checkpoints\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/configurations/value\",\"equals\":\"ON\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eb6f77b9-bd53-4e35-a23d-7f65d5f0e43d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb6f77b9-bd53-4e35-a23d-7f65d5f0e43d\"},{\"properties\":{\"displayName\":\"Log connections should be enabled for PostgreSQL database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy helps audit any PostgreSQL databases in your environment without log_connections setting enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\",\"name\":\"log_connections\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/configurations/value\",\"equals\":\"ON\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eb6f77b9-bd53-4e35-a23d-7f65d5f0e442\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb6f77b9-bd53-4e35-a23d-7f65d5f0e442\"},{\"properties\":{\"displayName\":\"Disconnections should be logged for PostgreSQL database servers.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy helps audit any PostgreSQL databases in your environment without log_disconnections enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\",\"name\":\"log_disconnections\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/configurations/value\",\"equals\":\"ON\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eb6f77b9-bd53-4e35-a23d-7f65d5f0e446\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb6f77b9-bd53-4e35-a23d-7f65d5f0e446\"},{\"properties\":{\"displayName\":\"Log duration should be enabled for PostgreSQL database servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy helps audit any PostgreSQL databases in your environment without log_duration setting enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.DBforPostgreSQL/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.DBforPostgreSQL/servers/configurations\",\"name\":\"log_duration\",\"existenceCondition\":{\"field\":\"Microsoft.DBforPostgreSQL/servers/configurations/value\",\"equals\":\"ON\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eb6f77b9-bd53-4e35-a23d-7f65d5f0e8f3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb6f77b9-bd53-4e35-a23d-7f65d5f0e8f3\"},{\"properties\":{\"displayName\":\"Deprecated accounts with owner permissions should be removed from your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Deprecated accounts with owner permissions should be removed from your subscription. Deprecated accounts are accounts that have been blocked from signing in.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"RemoveDeprecatedAccountsWithOwnerPermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ebb62a0c-3560-49e1-89ed-27e074e9f8ad\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ebb62a0c-3560-49e1-89ed-27e074e9f8ad\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Linux VMs that allow remote connections from accounts without passwords\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Linux virtual machines that allow remote connections from accounts without passwords. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordPolicy_msid110\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"PasswordPolicy_msid110\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ec49586f-4939-402d-a29e-6ff502b20592\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ec49586f-4939-402d-a29e-6ff502b20592\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Administrative Templates - Control Panel'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - Control Panel'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdministrativeTemplatesControlPanel\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_AdministrativeTemplatesControlPanel\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ec7ac234-2af5-4729-94d2-c557c071799d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ec7ac234-2af5-4729-94d2-c557c071799d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1241 - User-Installed Software | Alerts For Unauthorized Installations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1241\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/eca4d7b2-65e2-4e04-95d4-c68606b063c3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eca4d7b2-65e2-4e04-95d4-c68606b063c3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1622 - Boundary Protection\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1622\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ecf56554-164d-499a-8d00-206b07c27bed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ecf56554-164d-499a-8d00-206b07c27bed\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Key Vault to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Key Vault to stream to a regional Event Hub when any Key Vault which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Key Vault\"},\"parameters\":{\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Key Vaults in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.KeyVault/vaults\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vaultName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"resources\":[{\"type\":\"Microsoft.KeyVault/vaults/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('vaultName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"AuditEvent\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{\"policy\":{\"type\":\"string\",\"value\":\"[concat('Enabled diagnostic settings for ', parameters('vaultName'))]\"}}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"vaultName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ed7c8c13-51e7-49d1-8a43-8490431a0da2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ed7c8c13-51e7-49d1-8a43-8490431a0da2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1217 - Least Functionality | Periodic Review\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1217\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/edea4f20-b02c-4115-be75-86c080e5c0ed\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"edea4f20-b02c-4115-be75-86c080e5c0ed\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Stream Analytics to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Stream Analytics to stream to a regional Event Hub when any Stream Analytics which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Location\",\"description\":\"The location the Event Hub resides in. Only Stream Analytics in this location will be linked to this Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.StreamAnalytics/streamingjobs\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.StreamAnalytics/streamingjobs/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"Execution\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"Authoring\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/edf3780c-3d70-40fe-b17e-ab72013dafca\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"edf3780c-3d70-40fe-b17e-ab72013dafca\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1189 - Configuration Change Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1189\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ee45e02a-4140-416c-82c4-fecfea660b9d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ee45e02a-4140-416c-82c4-fecfea660b9d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1089 - Security Awareness Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Awareness and Training control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1089\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef080e67-0d1a-4f76-a0c5-fb9b0358485e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef080e67-0d1a-4f76-a0c5-fb9b0358485e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1314 - Identifier Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1314\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef0c8530-efd9-45b8-b753-f03083d06295\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef0c8530-efd9-45b8-b753-f03083d06295\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1128 - Time Stamps\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1128\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef212163-3bc4-4e86-bcf8-705127086393\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef212163-3bc4-4e86-bcf8-705127086393\"},{\"properties\":{\"displayName\":\"Vulnerability assessment should be enabled on your SQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit Azure SQL servers which do not have recurring vulnerability assessment scans enabled. Vulnerability assessment can discover, track, and help you remediate potential database vulnerabilities.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/vulnerabilityAssessments\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/vulnerabilityAssessments/recurringScans.isEnabled\",\"equals\":\"True\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef2a8f2a-b3d9-49cd-a8a8-9a3aaaf647d9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef2a8f2a-b3d9-49cd-a8a8-9a3aaaf647d9\"},{\"properties\":{\"displayName\":\"API Management services should use a virtual network\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Virtual network on API Management services of the specified SKU should be enabled.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"API Management\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"evaluatedSkuNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"API Management SKU Names\",\"description\":\"List of API Management SKUs against which this policy will be evaluated.\"},\"allowedValues\":[\"Developer\",\"Basic\",\"Standard\",\"Premium\",\"Consumption\"],\"defaultValue\":[\"Developer\",\"Premium\"]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ApiManagement/service\"},{\"field\":\"Microsoft.ApiManagement/service/sku.name\",\"in\":\"[parameters('evaluatedSkuNames')]\"},{\"anyOf\":[{\"field\":\"Microsoft.ApiManagement/service/virtualNetworkType\",\"exists\":\"false\"},{\"field\":\"Microsoft.ApiManagement/service/virtualNetworkType\",\"equals\":\"None\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef619a2c-cc4d-4d03-b2ba-8c94a834d85b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef619a2c-cc4d-4d03-b2ba-8c94a834d85b\"},{\"properties\":{\"displayName\":\"Deploy Diagnostic Settings for Event Hub to Event Hub\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Deploys the diagnostic settings for Event Hub to stream to a regional Event Hub when any Event Hub which is missing this diagnostic settings is created or updated.\",\"metadata\":{\"version\":\"2.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"DeployIfNotExists\",\"Disabled\"],\"defaultValue\":\"DeployIfNotExists\"},\"profileName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Profile name\",\"description\":\"The diagnostic settings profile name\"},\"defaultValue\":\"setbypolicy_eventHub\"},\"eventHubRuleId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Authorization Rule Id\",\"description\":\"The Event Hub authorization rule Id for Azure Diagnostics. The authorization rule needs to be at Event Hub namespace level. e.g. /subscriptions/{subscription Id}/resourceGroups/{resource group}/providers/Microsoft.EventHub/namespaces/{Event Hub namespace}/authorizationrules/{authorization rule}\",\"strongType\":\"Microsoft.EventHub/Namespaces/AuthorizationRules\",\"assignPermissions\":true}},\"eventHubLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Event Hub Destination Location\",\"description\":\"The location the Event Hub that will get diagnostic data resides in. Only source Event Hubs in this location will be linked to this destination Event Hub.\",\"strongType\":\"location\"},\"defaultValue\":\"\"},\"metricsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable metrics\",\"description\":\"Whether to enable metrics stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"False\"},\"logsEnabled\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Enable logs\",\"description\":\"Whether to enable logs stream to the Event Hub - True or False\"},\"allowedValues\":[\"True\",\"False\"],\"defaultValue\":\"True\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.EventHub/namespaces\"},{\"anyOf\":[{\"value\":\"[parameters('eventHubLocation')]\",\"equals\":\"\"},{\"field\":\"location\",\"equals\":\"[parameters('eventHubLocation')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"name\":\"[parameters('profileName')]\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"[parameters('logsEnabled')]\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/metrics.enabled\",\"equals\":\"[parameters('metricsEnabled')]\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"eventHubRuleId\":{\"type\":\"string\"},\"metricsEnabled\":{\"type\":\"string\"},\"logsEnabled\":{\"type\":\"string\"},\"profileName\":{\"type\":\"string\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.EventHub/namespaces/providers/diagnosticSettings\",\"apiVersion\":\"2017-05-01-preview\",\"name\":\"[concat(parameters('resourceName'), '/', 'Microsoft.Insights/', parameters('profileName'))]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[],\"properties\":{\"eventHubAuthorizationRuleId\":\"[parameters('eventHubRuleId')]\",\"metrics\":[{\"category\":\"AllMetrics\",\"enabled\":\"[parameters('metricsEnabled')]\",\"retentionPolicy\":{\"enabled\":false,\"days\":0}}],\"logs\":[{\"category\":\"ArchiveLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"OperationalLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"AutoScaleLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"KafkaCoordinatorLogs\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"EventHubVNetConnectionEvent\",\"enabled\":\"[parameters('logsEnabled')]\"},{\"category\":\"CustomerManagedKeyUserLogs\",\"enabled\":\"[parameters('logsEnabled')]\"}]}}],\"outputs\":{}},\"parameters\":{\"location\":{\"value\":\"[field('location')]\"},\"resourceName\":{\"value\":\"[field('name')]\"},\"eventHubRuleId\":{\"value\":\"[parameters('eventHubRuleId')]\"},\"metricsEnabled\":{\"value\":\"[parameters('metricsEnabled')]\"},\"logsEnabled\":{\"value\":\"[parameters('logsEnabled')]\"},\"profileName\":{\"value\":\"[parameters('profileName')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef7b61ef-b8e4-4c91-8e78-6946c6b0023f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef7b61ef-b8e4-4c91-8e78-6946c6b0023f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1472 - Emergency Shutoff\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1472\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ef869332-921d-4c28-9402-3be73e6e50c8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ef869332-921d-4c28-9402-3be73e6e50c8\"},{\"properties\":{\"displayName\":\"The Log Analytics agent should be installed on Virtual Machine Scale Sets\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any Windows/Linux Virtual Machine Scale Sets if the Log Analytics agent is not installed.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"in\":[\"MicrosoftMonitoringAgent\",\"OmsAgentForLinux\"]},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/provisioningState\",\"equals\":\"Succeeded\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/settings.workspaceId\",\"exists\":\"true\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/efbde977-ba53-4479-b8e9-10b957924fbf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"efbde977-ba53-4479-b8e9-10b957924fbf\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1012 - Account Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1012\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/efd7b9ae-1db6-4eb6-b0fe-87e6565f9738\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"efd7b9ae-1db6-4eb6-b0fe-87e6565f9738\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1358 - Incident Response Testing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Incident Response control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1358\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/effbaeef-5bf4-400d-895e-ef8cbc0e64c7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"effbaeef-5bf4-400d-895e-ef8cbc0e64c7\"},{\"properties\":{\"displayName\":\"Ensure that Register with Azure Active Directory is enabled on Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Managed service identity in App Service makes the app more secure by eliminating secrets from the app, such as credentials in the connection strings. When registering with Azure Active Directory in the app service, the app will connect to other Azure services securely without the need of username and passwords\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/web.managedServiceIdentityId\",\"exists\":\"true\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f0473e7a-a1ba-4e86-afb2-e829e11b01d8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f0473e7a-a1ba-4e86-afb2-e829e11b01d8\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that have the specified applications installed. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"ApplicationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Application names (supports wildcards)\",\"description\":\"A semicolon-separated list of the names of the applications that should not be installed. e.g. 'Microsoft SQL Server 2014 (64-bit); Microsoft Visual Studio Code' or 'Microsoft SQL Server 2014*' (to match any application starting with 'Microsoft SQL Server 2014')\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"NotInstalledApplication\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[InstalledApplication]NotInstalledApplicationResource1;Name', '=', parameters('ApplicationName')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"NotInstalledApplication\"},\"ApplicationName\":{\"value\":\"[parameters('ApplicationName')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"ApplicationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[InstalledApplication]NotInstalledApplicationResource1;Name\",\"value\":\"[parameters('ApplicationName')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[InstalledApplication]NotInstalledApplicationResource1;Name\",\"value\":\"[parameters('ApplicationName')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f0633351-c7b2-41ff-9981-508fc08553c2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f0633351-c7b2-41ff-9981-508fc08553c2\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1531 - Third-Party Personnel Security\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1531\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f0643e0c-eee5-4113-8684-c608d05c5236\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f0643e0c-eee5-4113-8684-c608d05c5236\"},{\"properties\":{\"displayName\":\"Latest TLS version should be used in your Web App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Upgrade to the latest TLS version\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"app*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/minTlsVersion\",\"equals\":\"1.2\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f0e6e85b-9b9f-4a4b-b67b-f730d42f1b0b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f0e6e85b-9b9f-4a4b-b67b-f730d42f1b0b\"},{\"properties\":{\"displayName\":\"Deploy Workflow Automation for Azure Security Center alerts\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable automation of Azure Security Center alerts. This policy deploys a workflow automation with your conditions and triggers on the assigned scope. To deploy this policy on newly created subscriptions, open the Compliance tab, select the relevant non-compliant assignment and create a remediation task.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"automationName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Automation name\",\"description\":\"This is the automation name.\"}},\"resourceGroupName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group name\",\"description\":\"The resource group name where the workflow automation is created. If you enter a name for a resource group that doesn't exist, it'll be created in the subscription.\"}},\"resourceGroupLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group location\",\"description\":\"The location where the resource group and the workflow automation are created.\",\"strongType\":\"location\"}},\"alertName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Alert name contains\",\"description\":\"String included in the required alert name. For a full reference list of Security Center's alerts, see https://docs.microsoft.com/azure/security-center/alerts-reference.\"},\"defaultValue\":\"\"},\"alertSeverities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Alert severities\",\"description\":\"Determines alert severities. Example: High;Medium;Low;\"},\"allowedValues\":[\"High\",\"Medium\",\"Low\"],\"defaultValue\":[\"High\",\"Medium\",\"Low\"]},\"logicAppResourceId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Logic App\",\"description\":\"The Logic App that is triggered. If you do not already have a logic app, visit Logic Apps to create one (https://portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Logic%2Fworkflows).\",\"strongType\":\"Microsoft.Logic/workflows\",\"assignPermissions\":true}},\"logicAppTrigger\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Logic app trigger\",\"description\":\"The trigger connector of the logic app that is triggered. Possible values: 'Manual (Incoming HTTP request)', 'When an Azure Security Center Alert is created or triggered'.\"},\"allowedValues\":[\"Manual (Incoming HTTP request)\",\"When an Azure Security Center Alert is created or triggered\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Security/automations\",\"name\":\"[parameters('automationName')]\",\"existenceScope\":\"resourcegroup\",\"ResourceGroupName\":\"[parameters('resourceGroupName')]\",\"deploymentScope\":\"subscription\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"location\":\"westeurope\",\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"automationName\":{\"type\":\"string\"},\"resourceGroupName\":{\"type\":\"string\"},\"resourceGroupLocation\":{\"type\":\"string\"},\"alertName\":{\"type\":\"string\"},\"alertSeverities\":{\"type\":\"array\"},\"logicAppResourceId\":{\"type\":\"string\"},\"logicAppTrigger\":{\"type\":\"string\"},\"guidValue\":{\"type\":\"string\",\"defaultValue\":\"[newGuid()]\"}},\"variables\":{\"scopeDescription\":\"scope for subscription {0}\",\"alertSeveritiesLength\":\"[length(parameters('alertSeverities'))]\",\"alertSeveritiesLengthIfEmpty\":\"[if(equals(variables('alertSeveritiesLength'), 0), 1, variables('alertSeveritiesLength'))]\",\"severityMap\":{\"High\":\"high\",\"Medium\":\"medium\",\"Low\":\"low\"},\"triggerMap\":{\"Manual (Incoming HTTP request)\":\"manual\",\"When an Azure Security Center Alert is created or triggered\":\"When_an_Azure_Security_Center_Alert_is_created_or_triggered\"}},\"resources\":[{\"name\":\"[parameters('resourceGroupName')]\",\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2019-10-01\",\"location\":\"[parameters('resourceGroupLocation')]\",\"tags\":{},\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2019-10-01\",\"name\":\"[concat('nestedAutomationDeployment', '_', parameters('guidValue'))]\",\"resourceGroup\":\"[parameters('resourceGroupName')]\",\"dependsOn\":[\"[resourceId('Microsoft.Resources/resourceGroups/', parameters('resourceGroupName'))]\"],\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"tags\":{},\"apiVersion\":\"2019-01-01-preview\",\"location\":\"[parameters('resourceGroupLocation')]\",\"name\":\"[parameters('automationName')]\",\"type\":\"Microsoft.Security/automations\",\"dependsOn\":[],\"properties\":{\"description\":\"Workflow Automation for Azure Security Center alerts via policy\",\"isEnabled\":true,\"scopes\":[{\"description\":\"[replace(variables('scopeDescription'),'{0}', subscription().subscriptionId)]\",\"scopePath\":\"[subscription().id]\"}],\"sources\":[{\"eventSource\":\"Alerts\",\"copy\":[{\"name\":\"ruleSets\",\"count\":\"[variables('alertSeveritiesLengthIfEmpty')]\",\"input\":{\"rules\":[{\"propertyJPath\":\"[if(equals(parameters('alertName'), ''), 'Version', 'AlertDisplayName')]\",\"propertyType\":\"string\",\"expectedValue\":\"[if(equals(parameters('alertName'), ''), '3.', parameters('alertName'))]\",\"operator\":\"Contains\"},{\"propertyJPath\":\"Severity\",\"propertyType\":\"string\",\"expectedValue\":\"[variables('severityMap')[parameters('alertSeverities')[mod(copyIndex('ruleSets'), variables('alertSeveritiesLengthIfEmpty'))]]]\",\"operator\":\"Equals\"}]}}]}],\"actions\":[{\"actionType\":\"LogicApp\",\"logicAppResourceId\":\"[parameters('logicAppResourceId')]\",\"uri\":\"[listCallbackUrl(concat(parameters('logicAppResourceId'), '/triggers/', variables('triggerMap')[parameters('logicAppTrigger')]),'2016-06-01').value]\"}]}}]}}}]},\"parameters\":{\"automationName\":{\"value\":\"[parameters('automationName')]\"},\"resourceGroupName\":{\"value\":\"[parameters('resourceGroupName')]\"},\"resourceGroupLocation\":{\"value\":\"[parameters('resourceGroupLocation')]\"},\"alertName\":{\"value\":\"[parameters('alertName')]\"},\"alertSeverities\":{\"value\":\"[parameters('alertSeverities')]\"},\"logicAppResourceId\":{\"value\":\"[parameters('logicAppResourceId')]\"},\"logicAppTrigger\":{\"value\":\"[parameters('logicAppTrigger')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f1525828-9a90-4fcf-be48-268cdd02361e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f1525828-9a90-4fcf-be48-268cdd02361e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1028 - Information Flow Enforcement\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1028\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f171df5c-921b-41e9-b12b-50801c315475\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f171df5c-921b-41e9-b12b-50801c315475\"},{\"properties\":{\"displayName\":\"Virtual networks should use specified virtual network gateway\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits any virtual network if the default route does not point to the specified virtual network gateway.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Network\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"virtualNetworkGatewayId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Virtual network gateway Id\",\"description\":\"Resource Id of the virtual network gateway. Example: /subscriptions/YourSubscriptionId/resourceGroups/YourResourceGroup/providers/Microsoft.Network/virtualNetworkGateways/Name\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Network/virtualNetworks/subnets\",\"name\":\"GatewaySubnet\",\"existenceCondition\":{\"not\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/ipConfigurations[*].id\",\"notContains\":\"[concat(parameters('virtualNetworkGatewayId'), '/')]\"}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f1776c76-f58c-4245-a8d0-2b207198dc8b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f1776c76-f58c-4245-a8d0-2b207198dc8b\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Linux VMs that do not have the passwd file permissions set to 0644\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Linux virtual machines that do not have the passwd file permissions set to 0644. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordPolicy_msid121\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"PasswordPolicy_msid121\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f19aa1c1-6b91-4c27-ae6a-970279f03db9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f19aa1c1-6b91-4c27-ae6a-970279f03db9\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Administrative Templates - MSS (Legacy)'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Administrative Templates - MSS (Legacy)'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_AdminstrativeTemplatesMSSLegacy\",\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_AdminstrativeTemplatesMSSLegacy\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\"}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f1f4825d-58fb-4257-8016-8c00e3c9ed9d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f1f4825d-58fb-4257-8016-8c00e3c9ed9d\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1701 - Information System Monitoring | Host-Based Devices\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1701\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f25bc08f-27cb-43b6-9a23-014d00700426\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f25bc08f-27cb-43b6-9a23-014d00700426\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1457 - Physical Access Control\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1457\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f2d9d3e6-8886-4305-865d-639163e5c305\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f2d9d3e6-8886-4305-865d-639163e5c305\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1309 - Identification And Authentication (Org. Users) | Acceptance Of Piv Credentials\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1309\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f355d62b-39a8-4ba3-abf7-90f71cb3b000\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f355d62b-39a8-4ba3-abf7-90f71cb3b000\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1615 - System And Communications Protection Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1615\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f35e02aa-0a55-49f8-8811-8abfa7e6f2c0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f35e02aa-0a55-49f8-8811-8abfa7e6f2c0\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1255 - Contingency Plan | Continue Essential Missions / Business Functions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1255\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f3793f5e-937f-44f7-bfba-40647ef3efa0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f3793f5e-937f-44f7-bfba-40647ef3efa0\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs in which the Administrators group does not contain all of the specified members\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines in which the Administrators group does not contain all of the specified members. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AdministratorsGroupMembersToInclude\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f3b44e5d-1456-475f-9c67-c66c4618e85a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f3b44e5d-1456-475f-9c67-c66c4618e85a\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not contain the specified certificates in Trusted Root\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows VMs that do not contain the specified certificates in the Trusted Root Certification Authorities certificate store (Cert:\\\\LocalMachine\\\\Root). For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsCertificateInTrustedRoot\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f3b9ad83-000d-4dc1-bff0-6d54533dd03f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f3b9ad83-000d-4dc1-bff0-6d54533dd03f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1706 - Security Alerts, Advisories, And Directives\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1706\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f475ee0e-f560-4c9b-876b-04a77460a404\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f475ee0e-f560-4c9b-876b-04a77460a404\"},{\"properties\":{\"displayName\":\"Audit Log Analytics workspace for VM - Report Mismatch\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Reports VMs as non-compliant if they aren't logging to the Log Analytics workspace specified in the policy/initiative assignment.\",\"metadata\":{\"version\":\"1.0.1\",\"category\":\"Monitoring\"},\"parameters\":{\"logAnalyticsWorkspaceId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics Workspace Id that VMs should be configured for\",\"description\":\"This is the Id (GUID) of the Log Analytics Workspace that the VMs should be configured for.\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines/extensions\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.EnterpriseCloud.Monitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/settings.workspaceId\",\"notEquals\":\"[parameters('logAnalyticsWorkspaceId')]\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f47b5582-33ec-4c5c-87c0-b010a6b2e917\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f47b5582-33ec-4c5c-87c0-b010a6b2e917\"},{\"properties\":{\"displayName\":\"Authorization rules on the Event Hub instance should be defined\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Audit existence of authorization rules on Event Hub entities to grant least-privileged access\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Event Hub\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.EventHub/namespaces/eventhubs\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.EventHub/namespaces/eventHubs/authorizationRules\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f4826e5f-6a27-407c-ae3e-9582eb39891d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f4826e5f-6a27-407c-ae3e-9582eb39891d\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not have the password complexity setting enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines that do not have the password complexity setting enabled. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"PasswordMustMeetComplexityRequirements\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f48b2913-1dc5-4834-8c72-ccc1dfd819bb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f48b2913-1dc5-4834-8c72-ccc1dfd819bb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1495 - System Security Plan\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1495\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f4978d0e-a596-48e7-9f8c-bbf52554ce8d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f4978d0e-a596-48e7-9f8c-bbf52554ce8d\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs that have not restarted within the specified number of days\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines that have not restarted within the specified number of days. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"NumberOfDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Number of days\",\"description\":\"The number of days without restart until the machine is considered non-compliant\"},\"defaultValue\":\"12\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"MachineLastBootUpTime\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('[MachineUpTime]MachineLastBootUpTime;NumberOfDays', '=', parameters('NumberOfDays')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"MachineLastBootUpTime\"},\"NumberOfDays\":{\"value\":\"[parameters('NumberOfDays')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"NumberOfDays\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[MachineUpTime]MachineLastBootUpTime;NumberOfDays\",\"value\":\"[parameters('NumberOfDays')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"[MachineUpTime]MachineLastBootUpTime;NumberOfDays\",\"value\":\"[parameters('NumberOfDays')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f4b245d4-46c9-42be-9b1a-49e2b5b94194\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f4b245d4-46c9-42be-9b1a-49e2b5b94194\"},{\"properties\":{\"displayName\":\"Deploy Auditing on SQL servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy ensures that Auditing is enabled on SQL Servers for enhanced security and compliance. It will automatically create a storage account in the same region as the SQL server to store audit records.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"retentionDays\":{\"type\":\"String\",\"metadata\":{\"description\":\"The value in days of the retention period (0 indicates unlimited retention)\",\"displayName\":\"Retention days (optional, 180 days if unspecified)\"},\"defaultValue\":\"180\"},\"storageAccountsResourceGroup\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group name for storage accounts\",\"description\":\"Auditing writes database events to an audit log in your Azure Storage account (a storage account will be created in each region where a SQL Server is created that will be shared by all servers in that region). Important - for proper operation of Auditing do not delete or rename the resource group or the storage accounts.\",\"strongType\":\"existingResourceGroups\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},\"then\":{\"effect\":\"DeployIfNotExists\",\"details\":{\"type\":\"Microsoft.Sql/servers/auditingSettings\",\"name\":\"Default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/auditingSettings.state\",\"equals\":\"Enabled\"},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\"/providers/microsoft.authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"serverName\":{\"type\":\"string\"},\"auditRetentionDays\":{\"type\":\"string\"},\"storageAccountsResourceGroup\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"variables\":{\"retentionDays\":\"[int(parameters('auditRetentionDays'))]\",\"subscriptionId\":\"[subscription().subscriptionId]\",\"uniqueStorage\":\"[uniqueString(variables('subscriptionId'), parameters('location'), parameters('storageAccountsResourceGroup'))]\",\"locationCode\":\"[substring(parameters('location'), 0, 3)]\",\"storageName\":\"[tolower(concat('sqlaudit', variables('locationCode'), variables('uniqueStorage')))]\",\"createStorageAccountDeploymentName\":\"[concat('sqlServerAuditingStorageAccount-', uniqueString(variables('locationCode'), parameters('serverName')))]\"},\"resources\":[{\"apiVersion\":\"2017-05-10\",\"name\":\"[variables('createStorageAccountDeploymentName')]\",\"type\":\"Microsoft.Resources/deployments\",\"resourceGroup\":\"[parameters('storageAccountsResourceGroup')]\",\"properties\":{\"mode\":\"Incremental\",\"parameters\":{\"location\":{\"value\":\"[parameters('location')]\"},\"storageName\":{\"value\":\"[variables('storageName')]\"}},\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/samples/SQL/deploy-sql-server-auditing/createStorage.template.json\",\"contentVersion\":\"1.0.0.0\"}}},{\"name\":\"[concat(parameters('serverName'), '/Default')]\",\"type\":\"Microsoft.Sql/servers/auditingSettings\",\"apiVersion\":\"2017-03-01-preview\",\"properties\":{\"state\":\"Enabled\",\"storageEndpoint\":\"[reference(variables('createStorageAccountDeploymentName')).outputs.storageAccountEndPoint.value]\",\"storageAccountAccessKey\":\"[reference(variables('createStorageAccountDeploymentName')).outputs.storageAccountKey.value]\",\"retentionDays\":\"[variables('retentionDays')]\",\"auditActionsAndGroups\":null,\"storageAccountSubscriptionId\":\"[subscription().subscriptionId]\",\"isStorageSecondaryKeyInUse\":false}}]},\"parameters\":{\"serverName\":{\"value\":\"[field('name')]\"},\"auditRetentionDays\":{\"value\":\"[parameters('retentionDays')]\"},\"storageAccountsResourceGroup\":{\"value\":\"[parameters('storageAccountsResourceGroup')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f4c68484-132f-41f9-9b6d-3e4b1cb55036\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f4c68484-132f-41f9-9b6d-3e4b1cb55036\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1469 - Power Equipment And Cabling\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1469\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f509c5b6-0de0-4a4e-9b2e-cd9cbf3a58fd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f509c5b6-0de0-4a4e-9b2e-cd9cbf3a58fd\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1618 - Security Function Isolation\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1618\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f52f89aa-4489-4ec4-950e-8c96a036baa9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f52f89aa-4489-4ec4-950e-8c96a036baa9\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'Security Options - Network Access'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Network Access'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"NetworkAccessRemotelyAccessibleRegistryPaths\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network access: Remotely accessible registry paths\",\"description\":\"Specifies which registry paths will be accessible over the network, regardless of the users or groups listed in the access control list (ACL) of the `winreg` registry key.\"},\"defaultValue\":\"System\\\\CurrentControlSet\\\\Control\\\\ProductOptions|#|System\\\\CurrentControlSet\\\\Control\\\\Server Applications|#|Software\\\\Microsoft\\\\Windows NT\\\\CurrentVersion\"},\"NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network access: Remotely accessible registry paths and sub-paths\",\"description\":\"Specifies which registry paths and sub-paths will be accessible over the network, regardless of the users or groups listed in the access control list (ACL) of the `winreg` registry key.\"},\"defaultValue\":\"System\\\\CurrentControlSet\\\\Control\\\\Print\\\\Printers|#|System\\\\CurrentControlSet\\\\Services\\\\Eventlog|#|Software\\\\Microsoft\\\\OLAP Server|#|Software\\\\Microsoft\\\\Windows NT\\\\CurrentVersion\\\\Print|#|Software\\\\Microsoft\\\\Windows NT\\\\CurrentVersion\\\\Windows|#|System\\\\CurrentControlSet\\\\Control\\\\ContentIndex|#|System\\\\CurrentControlSet\\\\Control\\\\Terminal Server|#|System\\\\CurrentControlSet\\\\Control\\\\Terminal Server\\\\UserConfig|#|System\\\\CurrentControlSet\\\\Control\\\\Terminal Server\\\\DefaultUserConfiguration|#|Software\\\\Microsoft\\\\Windows NT\\\\CurrentVersion\\\\Perflib|#|System\\\\CurrentControlSet\\\\Services\\\\SysmonLog\"},\"NetworkAccessSharesThatCanBeAccessedAnonymously\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Network access: Shares that can be accessed anonymously\",\"description\":\"Specifies which network shares can be accessed by anonymous users. The default configuration for this policy setting has little effect because all users have to be authenticated before they can access shared resources on the server.\"},\"defaultValue\":\"0\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsNetworkAccess\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Network access: Remotely accessible registry paths;ExpectedValue', '=', parameters('NetworkAccessRemotelyAccessibleRegistryPaths'), ',', 'Network access: Remotely accessible registry paths and sub-paths;ExpectedValue', '=', parameters('NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths'), ',', 'Network access: Shares that can be accessed anonymously;ExpectedValue', '=', parameters('NetworkAccessSharesThatCanBeAccessedAnonymously')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SecurityOptionsNetworkAccess\"},\"NetworkAccessRemotelyAccessibleRegistryPaths\":{\"value\":\"[parameters('NetworkAccessRemotelyAccessibleRegistryPaths')]\"},\"NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths\":{\"value\":\"[parameters('NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths')]\"},\"NetworkAccessSharesThatCanBeAccessedAnonymously\":{\"value\":\"[parameters('NetworkAccessSharesThatCanBeAccessedAnonymously')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"NetworkAccessRemotelyAccessibleRegistryPaths\":{\"type\":\"string\"},\"NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths\":{\"type\":\"string\"},\"NetworkAccessSharesThatCanBeAccessedAnonymously\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Network access: Remotely accessible registry paths;ExpectedValue\",\"value\":\"[parameters('NetworkAccessRemotelyAccessibleRegistryPaths')]\"},{\"name\":\"Network access: Remotely accessible registry paths and sub-paths;ExpectedValue\",\"value\":\"[parameters('NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths')]\"},{\"name\":\"Network access: Shares that can be accessed anonymously;ExpectedValue\",\"value\":\"[parameters('NetworkAccessSharesThatCanBeAccessedAnonymously')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Network access: Remotely accessible registry paths;ExpectedValue\",\"value\":\"[parameters('NetworkAccessRemotelyAccessibleRegistryPaths')]\"},{\"name\":\"Network access: Remotely accessible registry paths and sub-paths;ExpectedValue\",\"value\":\"[parameters('NetworkAccessRemotelyAccessibleRegistryPathsAndSubpaths')]\"},{\"name\":\"Network access: Shares that can be accessed anonymously;ExpectedValue\",\"value\":\"[parameters('NetworkAccessSharesThatCanBeAccessedAnonymously')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f56a3ab2-89d1-44de-ac0d-2ada5962e22a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f56a3ab2-89d1-44de-ac0d-2ada5962e22a\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1198 - Configuration Change Control | Security Representative\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1198\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f56be5c3-660b-4c61-9078-f67cf072c356\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f56be5c3-660b-4c61-9078-f67cf072c356\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1328 - Authenticator Management | Password-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1328\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f5c66fdc-3d02-4034-9db5-ba57802609de\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f5c66fdc-3d02-4034-9db5-ba57802609de\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1193 - Configuration Change Control | Automated Document / Notification / Prohibition Of Changes\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1193\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f5fd629f-3075-4cae-ab53-bad65495a4ac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f5fd629f-3075-4cae-ab53-bad65495a4ac\"},{\"properties\":{\"displayName\":\"[Deprecated]: Web Application Firewall should be a set mode for Application Gateway and Azure Front Door Service\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Mandates detect or prevent mode to be active on all Web Application Firewall policies for Azure Front Door and Application Gateway. Web Application Firewall policies can have a consistent mode configuration across a resource group.\",\"metadata\":{\"version\":\"1.0.0-deprecated\",\"category\":\"Network\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Deny\"},\"modeRequirement\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Mode Requirement\",\"description\":\"Mode required for all WAF policies\"},\"allowedValues\":[\"Prevention\",\"Detection\"],\"defaultValue\":\"Detection\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/frontdoorwebapplicationfirewallpolicies\"},{\"field\":\"Microsoft.Network/frontdoorWebApplicationFirewallPolicies/policySettings.mode\",\"notEquals\":\"[parameters('modeRequirement')]\"}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies\"},{\"field\":\"Microsoft.Network/applicationGatewayWebApplicationFirewallPolicies/policySettings.mode\",\"notEquals\":\"[parameters('modeRequirement')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f6b68e5a-7207-4638-a1fb-47d90404209e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f6b68e5a-7207-4638-a1fb-47d90404209e\"},{\"properties\":{\"displayName\":\"Internet-facing virtual machines should be protected with network security groups\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Protect your virtual machines from potential threats by restricting access to them with network security groups (NSG). Learn more about controlling traffic with NSGs at https://aka.ms/nsg-doc\",\"metadata\":{\"version\":\"1.1.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Compute/virtualMachines\",\"Microsoft.ClassicCompute/virtualMachines\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"networkSecurityGroupsOnVirtualMachines\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f6de0be7-9a8a-4b8a-b349-43cf02d22f7c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f6de0be7-9a8a-4b8a-b349-43cf02d22f7c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1214 - Least Functionality\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1214\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f714a4e2-b580-47b6-ae8c-f2812d3750f3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f714a4e2-b580-47b6-ae8c-f2812d3750f3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1591 - External Information System Services | Ident. Of Functions / Ports / Protocols / Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1591\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f751cdb7-fbee-406b-969b-815d367cb9b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f751cdb7-fbee-406b-969b-815d367cb9b3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1330 - Authenticator Management | Password-Based Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1330\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f75cedb2-5def-4b31-973e-b69e8c7bd031\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f75cedb2-5def-4b31-973e-b69e8c7bd031\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1540 - Security Categorization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1540\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f771f8cb-6642-45cc-9a15-8a41cd5c6977\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f771f8cb-6642-45cc-9a15-8a41cd5c6977\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1449 - Physical Access Authorizations\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1449\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f784d3b0-5f2b-49b7-b9f3-00ba8653ced5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f784d3b0-5f2b-49b7-b9f3-00ba8653ced5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1506 - Personnel Security Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1506\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f7d2ff17-d604-4dd9-b607-9ecf63f28ad2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f7d2ff17-d604-4dd9-b607-9ecf63f28ad2\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs that do not have the specified Windows PowerShell execution policy\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines where Windows PowerShell is not configured to use the specified PowerShell execution policy. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"WindowsPowerShellExecutionPolicy\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f8036bd0-c10b-4931-86bb-94a878add855\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f8036bd0-c10b-4931-86bb-94a878add855\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1705 - Security Alerts, Advisories, And Directives\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1705\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f82e3639-fa2b-4e06-a786-932d8379b972\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f82e3639-fa2b-4e06-a786-932d8379b972\"},{\"properties\":{\"displayName\":\"External accounts with owner permissions should be removed from your subscription\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"External accounts with owner permissions should be removed from your subscription in order to prevent unmonitored access.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"RemoveExternalAccountsWithOwnerPermissions\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f8456c1c-aa66-4dfb-861a-25d127b775c9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f8456c1c-aa66-4dfb-861a-25d127b775c9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1345 - Cryptographic Module Authentication\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1345\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f86aa129-7c07-4aa4-bbf5-792d93ffd9ea\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f86aa129-7c07-4aa4-bbf5-792d93ffd9ea\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1065 - Remote Access | Privileged Commands / Access\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1065\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f87b8085-dca9-4cf1-8f7b-9822b997797c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f87b8085-dca9-4cf1-8f7b-9822b997797c\"},{\"properties\":{\"displayName\":\"Deploy prerequisites to audit Windows VMs configurations in 'System Audit Policies - System'\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a Guest Configuration assignment to audit Windows virtual machines with non-compliant settings in Group Policy category: 'System Audit Policies - System'. It also creates a system-assigned managed identity and deploys the VM extension for Guest Configuration. This policy should only be used along with its corresponding audit policy in an initiative. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.2.0\",\"category\":\"Guest Configuration\",\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"parameters\":{\"AuditOtherSystemEvents\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Audit Other System Events\",\"description\":\"Specifies whether audit events are generated for Windows Firewall Service and Windows Firewall driver start and stop events, failure events for these services and Windows Firewall Service policy processing failures.\"},\"allowedValues\":[\"No Auditing\",\"Success\",\"Failure\",\"Success and Failure\"],\"defaultValue\":\"No Auditing\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SystemAuditPoliciesSystem\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/parameterHash\",\"equals\":\"[base64(concat('Audit Other System Events;ExpectedValue', '=', parameters('AuditOtherSystemEvents')))]\"},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"},\"type\":{\"value\":\"[field('type')]\"},\"configurationName\":{\"value\":\"AzureBaseline_SystemAuditPoliciesSystem\"},\"AuditOtherSystemEvents\":{\"value\":\"[parameters('AuditOtherSystemEvents')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"configurationName\":{\"type\":\"string\"},\"AuditOtherSystemEvents\":{\"type\":\"string\"}},\"resources\":[{\"condition\":\"[equals(toLower(parameters('type')), toLower('microsoft.hybridcompute/machines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.HybridCompute/machines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Other System Events;ExpectedValue\",\"value\":\"[parameters('AuditOtherSystemEvents')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2018-11-20\",\"type\":\"Microsoft.Compute/virtualMachines/providers/guestConfigurationAssignments\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.GuestConfiguration/', parameters('configurationName'))]\",\"location\":\"[parameters('location')]\",\"properties\":{\"guestConfiguration\":{\"name\":\"[parameters('configurationName')]\",\"version\":\"1.*\",\"configurationParameter\":[{\"name\":\"Audit Other System Events;ExpectedValue\",\"value\":\"[parameters('AuditOtherSystemEvents')]\"}]}}},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"condition\":\"[equals(toLower(parameters('type')), toLower('Microsoft.Compute/virtualMachines'))]\",\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforWindows')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforWindows\",\"typeHandlerVersion\":\"1.1\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}},\"dependsOn\":[\"[concat('Microsoft.Compute/virtualMachines/',parameters('vmName'),'/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/',parameters('configurationName'))]\"]}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f8b0158d-4766-490f-bea0-259e52dba473\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f8b0158d-4766-490f-bea0-259e52dba473\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Service Bus should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Service Bus\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ServiceBus/namespaces\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f8d36e2f-389b-4ee4-898d-21aeb69a0f45\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f8d36e2f-389b-4ee4-898d-21aeb69a0f45\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1203 - Access Restrictions For Change | Automated Access Enforcement / Auditing\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1203\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f9012d14-e3e6-4d7b-b926-9f37b5537066\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f9012d14-e3e6-4d7b-b926-9f37b5537066\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1697 - Information System Monitoring | Analyze Traffic / Covert Exfiltration\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1697\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f9873db2-18ad-46b3-a11a-1a1f8cbf0335\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f9873db2-18ad-46b3-a11a-1a1f8cbf0335\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1478 - Fire Protection | Suppression Devices / Systems\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Physical and Environmental Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1478\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f997df46-cfbb-4cc8-aac8-3fecdaf6a183\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f997df46-cfbb-4cc8-aac8-3fecdaf6a183\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1535 - Personnel Sanctions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Personnel Security control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1535\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f9a165d2-967d-4733-8399-1074270dae2e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f9a165d2-967d-4733-8399-1074270dae2e\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1108 - Content Of Audit Records | Additional Audit Information\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1108\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f9ad559e-c12d-415e-9a78-e50fdd7da7ba\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f9ad559e-c12d-415e-9a78-e50fdd7da7ba\"},{\"properties\":{\"displayName\":\"Diagnostic logs in Azure Stream Analytics should be enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Audit enabling of diagnostic logs. This enables you to recreate activity trails to use for investigation purposes; when a security incident occurs or when your network is compromised\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Stream Analytics\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"requiredRetentionDays\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Required retention (days)\",\"description\":\"The required diagnostic logs retention in days\"},\"defaultValue\":\"365\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.StreamAnalytics/streamingJobs\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Insights/diagnosticSettings\",\"existenceCondition\":{\"count\":{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*]\",\"where\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"0\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.days\",\"equals\":\"[parameters('requiredRetentionDays')]\"}]},{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs.enabled\",\"equals\":\"true\"},{\"anyOf\":[{\"field\":\"Microsoft.Insights/diagnosticSettings/logs[*].retentionPolicy.enabled\",\"notEquals\":\"true\"},{\"field\":\"Microsoft.Insights/diagnosticSettings/storageAccountId\",\"exists\":false}]}]}]}},\"greaterOrEquals\":1}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f9be5368-9bf5-4b84-9e0a-7850da98bb46\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f9be5368-9bf5-4b84-9e0a-7850da98bb46\"},{\"properties\":{\"displayName\":\"Latest TLS version should be used in your Function App\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Upgrade to the latest TLS version\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"App Service\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Web/sites\"},{\"field\":\"kind\",\"like\":\"functionapp*\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Web/sites/config\",\"name\":\"web\",\"existenceCondition\":{\"field\":\"Microsoft.Web/sites/config/minTlsVersion\",\"equals\":\"1.2\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f9d614c5-c173-4d56-95a7-b4437057d193\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f9d614c5-c173-4d56-95a7-b4437057d193\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1280 - Telecommunications Services | Priority Of Service Provisions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Contingency Planning control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1280\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fa108498-b3a8-4ffb-9e79-1107e76afad3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fa108498-b3a8-4ffb-9e79-1107e76afad3\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1037 - Least Privilege | Network Access To Privileged Commands\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1037\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fa4c2a3d-1294-41a3-9ada-0e540471e9fb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fa4c2a3d-1294-41a3-9ada-0e540471e9fb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1435 - Media Transport\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Media Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1435\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fa8d221b-d130-4637-ba16-501e666628bb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fa8d221b-d130-4637-ba16-501e666628bb\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1675 - Flaw Remediation | Time To Remediate Flaws / Benchmarks For Corrective Actions\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1675\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/facb66e0-1c48-478a-bed5-747a312323e1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"facb66e0-1c48-478a-bed5-747a312323e1\"},{\"properties\":{\"displayName\":\"Audit Linux virtual machines on which the Linux Guest Configuration extension is not enabled\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits Linux virtual machines hosted in Azure that are supported by Guest Configuration but do not have the Guest Configuration extension enabled. For more information on Guest Configuration, visit https://aka.ms/gcpol.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"AzurePolicyforLinux\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.GuestConfiguration\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"ConfigurationforLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/faf25c8c-9598-4305-b4de-0aee1317fb31\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"faf25c8c-9598-4305-b4de-0aee1317fb31\"},{\"properties\":{\"displayName\":\"[Deprecated]: Deploy prerequisites to enable Guest Configuration Policy on Linux VMs.\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy creates a system-assigned managed identity and deploys the VM extension for Guest Configuration on Linux VMs. This is a prerequisite for Guest Configuration Policy and must be assigned to the scope before using any Guest Configuration policy. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol.\",\"metadata\":{\"category\":\"Guest Configuration\",\"version\":\"3.0.0-deprecated\",\"deprecated\":true,\"requiredProviders\":[\"Microsoft.GuestConfiguration\"]},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"AzurePolicyforLinux\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.GuestConfiguration\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"ConfigurationforLinux\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/provisioningState\",\"equals\":\"Succeeded\"}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}},\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2019-07-01\",\"type\":\"Microsoft.Compute/virtualMachines\",\"identity\":{\"type\":\"SystemAssigned\"},\"name\":\"[parameters('vmName')]\",\"location\":\"[parameters('location')]\"},{\"apiVersion\":\"2019-07-01\",\"name\":\"[concat(parameters('vmName'), '/AzurePolicyforLinux')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.GuestConfiguration\",\"type\":\"ConfigurationforLinux\",\"typeHandlerVersion\":\"1.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{},\"protectedSettings\":{}}}]}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fb27e9e0-526e-4ae1-89f2-a2a0bf0f8a50\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fb27e9e0-526e-4ae1-89f2-a2a0bf0f8a50\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1086 - Publicly Accessible Content\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1086\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fb321e6f-16a0-4be3-878f-500956e309c5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fb321e6f-16a0-4be3-878f-500956e309c5\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1222 - Information System Component Inventory\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Configuration Management control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1222\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fb39e62f-6bda-4558-8088-ec03d5670914\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fb39e62f-6bda-4558-8088-ec03d5670914\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes Services should be upgraded to a non-vulnerable Kubernetes version\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Upgrade your Kubernetes service cluster to a later Kubernetes version to protect against known vulnerabilities in your current Kubernetes version. Vulnerability CVE-2019-9946 has been patched in Kubernetes versions 1.11.9+, 1.12.7+, 1.13.5+, and 1.14.0+\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Security Center\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"anyOf\":[{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"in\":[\"1.13.4\",\"1.13.3\",\"1.13.2\",\"1.13.1\",\"1.13.0\"]},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"in\":[\"1.12.6\",\"1.12.5\",\"1.12.4\",\"1.12.3\",\"1.12.2\",\"1.12.1\",\"1.12.0\"]},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"in\":[\"1.11.8\",\"1.11.7\",\"1.11.6\",\"1.11.5\",\"1.11.4\",\"1.11.3\",\"1.11.2\",\"1.11.1\",\"1.11.0\"]},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.10.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.9.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.8.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.7.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.6.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.5.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.4.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.3.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.2.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.1.*\"},{\"field\":\"Microsoft.ContainerService/managedClusters/kubernetesVersion\",\"Like\":\"1.0.*\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fb893a29-21bb-418c-a157-e99480ec364c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fb893a29-21bb-418c-a157-e99480ec364c\"},{\"properties\":{\"displayName\":\"Storage account containing the container with activity logs must be encrypted with BYOK\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy audits if the Storage account containing the container with activity logs is encrypted with BYOK. The policy works only if the storage account lies on the same subscription as activity logs by design. More information on Azure Storage encryption at rest can be found here https://aka.ms/azurestoragebyok. \",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Monitoring\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Insights/logProfiles\"},{\"field\":\"Microsoft.Insights/logProfiles/storageAccountId\",\"exists\":\"true\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Storage/storageAccounts\",\"existenceScope\":\"subscription\",\"existenceCondition\":{\"allOf\":[{\"value\":\"[contains(field('Microsoft.Insights/logProfiles/storageAccountId'), subscription().Id)]\",\"equals\":\"true\"},{\"field\":\"name\",\"equals\":\"[last(split(field('Microsoft.Insights/logProfiles/storageAccountId'),'/'))]\"},{\"field\":\"Microsoft.Storage/storageAccounts/encryption.keySource\",\"equals\":\"Microsoft.Keyvault\"}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fbb99e8e-e444-4da0-9ff1-75c92f5a85b2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fbb99e8e-e444-4da0-9ff1-75c92f5a85b2\"},{\"properties\":{\"displayName\":\"[Preview]: All Internet traffic should be routed via your deployed Azure Firewall\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Azure Security Center has identified that some of your subnets aren't protected with a next generation firewall. Protect your subnets from potential threats by restricting access to them with Azure Firewall or a supported next generation firewall\",\"metadata\":{\"version\":\"2.0.0-preview\",\"category\":\"Network\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable All Internet traffic should be routed via your deployed Azure Firewall\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/routeTable\",\"exists\":false},{\"count\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/ipConfigurations[*]\"},\"greaterOrEquals\":2},{\"field\":\"name\",\"notIn\":[\"AzureFirewallSubnet\",\"GatewaySubnet\",\"AzureBastionSubnet\"]}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups\",\"name\":\"[string(last(split(field('Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id'), '/')))]\",\"resourceGroupName\":\"[string(take(skip(split(field('Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id'), '/'), 4), 1))]\",\"existenceCondition\":{\"allOf\":[{\"count\":{\"field\":\"Microsoft.Network/networkSecurityGroups/subnets[*]\",\"where\":{\"field\":\"Microsoft.Network/networkSecurityGroups/subnets[*].id\",\"like\":\"[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/*/providers/Microsoft.Network/virtualNetworks/', first(split(field('fullName'), '/')), '/subnets/', field('name'))]\"}},\"equals\":1},{\"count\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*]\",\"where\":{\"allOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].direction\",\"equals\":\"Outbound\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationAddressPrefix\",\"in\":[\"*\",\"Internet\"]},{\"anyOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationPortRange\",\"in\":[\"*\",\"0-65535\"]},{\"not\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationPortRanges\",\"notEquals\":\"0-65535\"}}]}]}},\"greater\":0},{\"count\":{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*]\",\"where\":{\"allOf\":[{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].direction\",\"equals\":\"Outbound\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].access\",\"equals\":\"Allow\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules[*].destinationAddressPrefix\",\"in\":[\"*\",\"Internet\"]}]}},\"equals\":0}]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fc5e4038-4584-4632-8c85-c0448d374b2c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fc5e4038-4584-4632-8c85-c0448d374b2c\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1075 - Access Control For Mobile Devices | Full Device / Container-Based Encryption\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Access Control control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1075\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fc933d22-04df-48ed-8f87-22a3773d4309\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fc933d22-04df-48ed-8f87-22a3773d4309\"},{\"properties\":{\"displayName\":\"Show audit results from Windows VMs configurations in 'Security Options - Microsoft Network Client'\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Windows virtual machines with non-compliant settings in Group Policy category: 'Security Options - Microsoft Network Client'. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"esri\",\"incredibuild\",\"MicrosoftDynamicsAX\",\"MicrosoftSharepoint\",\"MicrosoftVisualStudio\",\"MicrosoftWindowsDesktop\",\"MicrosoftWindowsServerHPCPack\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"dsvm-windows\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"standard-data-science-vm\",\"windows-data-science-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"rendering-windows2016\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"cis-windows-server-201*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"bosh-windows-server*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"ad*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Windows*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"exists\":\"false\"},{\"allOf\":[{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"2008*\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"notLike\":\"SQL2008*\"}]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"windows*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"AzureBaseline_SecurityOptionsMicrosoftNetworkClient\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fcbc55c9-f25a-4e55-a6cb-33acb3be778b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fcbc55c9-f25a-4e55-a6cb-33acb3be778b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1318 - Authenticator Management\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1318\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fced5fda-3bdb-4d73-bfea-0e2c80428b66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fced5fda-3bdb-4d73-bfea-0e2c80428b66\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1543 - Risk Assessment\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Risk Assessment control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1543\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fd00b778-b5b5-49c0-a994-734ea7bd3624\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fd00b778-b5b5-49c0-a994-734ea7bd3624\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1707 - Security Alerts, Advisories, And Directives | Automated Alerts And Advisories\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Information Integrity control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1707\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fd4a2ac8-868a-4702-a345-6c896c3361ce\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fd4a2ac8-868a-4702-a345-6c896c3361ce\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1299 - Identification And Authentication Policy And Procedures\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Identification and Authentication control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1299\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fd4e54f7-9ab0-4bae-b6cc-457809948a89\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fd4e54f7-9ab0-4bae-b6cc-457809948a89\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1627 - Boundary Protection | External Telecommunications Services\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Communications Protection control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1627\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fd73310d-76fc-422d-bda4-3a077149f179\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fd73310d-76fc-422d-bda4-3a077149f179\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1130 - Time Stamps | Synchronization With Authoritative Time Source\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Audit and Accountability control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1130\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fd7c4c1d-51ee-4349-9dab-89a7f8c8d102\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fd7c4c1d-51ee-4349-9dab-89a7f8c8d102\"},{\"properties\":{\"displayName\":\"Public network access should be disabled for MariaDB servers\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"This policy audits MariaDB servers in your environment with public network access enabled. For more details, visit https://go.microsoft.com/fwlink/?linkid=2119542.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"SQL\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Disabled\"],\"defaultValue\":\"Audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.DBforMariaDB/servers\"},{\"field\":\"Microsoft.DBforMariaDB/servers/publicNetworkAccess\",\"notEquals\":\"Disabled\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fdccbe47-f3e3-4213-ad5d-ea459b2fa077\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fdccbe47-f3e3-4213-ad5d-ea459b2fa077\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1611 - Developer-Provided Training\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1611\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fdda8a0c-ac32-43f6-b2f4-7dc1df03f43f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fdda8a0c-ac32-43f6-b2f4-7dc1df03f43f\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1405 - Maintenance Tools | Inspect Tools\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1405\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fe1a0bf3-409a-4b00-b60d-0b1f917f7e7b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fe1a0bf3-409a-4b00-b60d-0b1f917f7e7b\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1613 - Developer Security Architecture And Design\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this System and Services Acquisition control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1613\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fe2ad78b-8748-4bff-a924-f74dfca93f30\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fe2ad78b-8748-4bff-a924-f74dfca93f30\"},{\"properties\":{\"displayName\":\"Show audit results from Linux VMs that do not have the specified applications installed\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"This policy should only be used along with its corresponding deploy policy in an initiative. This definition allows Azure Policy to process the results of auditing Linux virtual machines that do not have the specified applications installed. For more information on Guest Configuration policies, please visit https://aka.ms/gcpol\",\"metadata\":{\"version\":\"3.0.0\",\"category\":\"Guest Configuration\"},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"in\":[\"microsoft-aks\",\"qubole-inc\",\"datastax\",\"couchbase\",\"scalegrid\",\"checkpoint\",\"paloaltonetworks\",\"debian\"]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"CentOS*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Oracle-Linux\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RHEL\",\"RHEL-HA\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HA\",\"RHEL-SAP-HANA\"]},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"rhel-byos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-7-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-centos-8-l1\",\"cis-debian-linux-8-l1\",\"cis-debian-linux-9-l1\",\"cis-nginx-centos-7-v1-1-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-oracle-linux-8-l1\",\"cis-postgresql-11-centos-linux-7-level-1\",\"cis-rhel-7-l2\",\"cis-rhel-7-v2-2-0-l1\",\"cis-rhel-8-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\",\"cis-ubuntu-linux-1804-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"Debian\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"7*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Suse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"SLES*\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"11*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"UbuntuServer\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"12*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm-ubuntu\",\"azureml\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-centos-os\"},{\"field\":\"Microsoft.Compute/imageSKU\",\"notLike\":\"6*\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"equals\":\"cloudera-altus-centos-os\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"like\":\"linux*\"}]},{\"allOf\":[{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/virtualMachines/storageProfile.osDisk.osType\",\"like\":\"Linux*\"}]},{\"anyOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"exists\":\"false\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"notIn\":[\"OpenLogic\",\"RedHat\",\"credativ\",\"Suse\",\"Canonical\",\"microsoft-dsvm\",\"cloudera\",\"microsoft-ads\",\"center-for-internet-security-inc\",\"Oracle\"]}]}]}]}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HybridCompute/machines\"},{\"field\":\"Microsoft.HybridCompute/imageOffer\",\"like\":\"linux*\"}]}]},\"then\":{\"effect\":\"auditIfNotExists\",\"details\":{\"type\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments\",\"name\":\"installed_application_linux\",\"existenceCondition\":{\"field\":\"Microsoft.GuestConfiguration/guestConfigurationAssignments/complianceStatus\",\"equals\":\"Compliant\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fee5cb2b-9d9b-410e-afe3-2902d90d0004\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fee5cb2b-9d9b-410e-afe3-2902d90d0004\"},{\"properties\":{\"displayName\":\"Vulnerabilities on your SQL databases should be remediated\",\"policyType\":\"BuiltIn\",\"mode\":\"Indexed\",\"description\":\"Monitor Vulnerability Assessment scan results and recommendations for how to remediate database vulnerabilities.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"Microsoft.Sql/servers/databases\",\"Microsoft.Sql/managedinstances/databases\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Security/complianceResults\",\"name\":\"sqlVulnerabilityAssessment\",\"existenceCondition\":{\"field\":\"Microsoft.Security/complianceResults/resourceStatus\",\"in\":[\"OffByPolicy\",\"Healthy\"]}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/feedbf84-6b99-488c-acc2-71c829aa5ffc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"feedbf84-6b99-488c-acc2-71c829aa5ffc\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1407 - Maintenance Tools | Prevent Unauthorized Removal\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Maintenance control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1407\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ff9fbd83-1d8d-4b41-aac2-94cb44b33976\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ff9fbd83-1d8d-4b41-aac2-94cb44b33976\"},{\"properties\":{\"displayName\":\"Deploy export to Log Analytics workspace for Azure Security Center alerts and recommendations\",\"policyType\":\"BuiltIn\",\"mode\":\"All\",\"description\":\"Enable export to Log Analytics workspace of Azure Security Center alerts and/or recommendations. This policy deploys an export to Log Analytics workspace configuration with your conditions and target workspace on the assigned scope. To deploy this policy on newly created subscriptions, open the Compliance tab, select the relevant non-compliant assignment and create a remediation task.\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Security Center\"},\"parameters\":{\"resourceGroupName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group name\",\"description\":\"The resource group name where the export to Log Analytics workspace configuration is created. If you enter a name for a resource group that doesn't exist, it'll be created in the subscription. Note that each resource group can only have one export to Log Analytics workspace configured.\"}},\"resourceGroupLocation\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Resource group location\",\"description\":\"The location where the resource group and the export to Log Analytics workspace configuration are created.\",\"strongType\":\"location\"}},\"exportedDataTypes\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Exported data types\",\"description\":\"The data types to be exported. Example: Security recommendations;Security alerts;\"},\"allowedValues\":[\"Security recommendations\",\"Security alerts\"],\"defaultValue\":[\"Security recommendations\",\"Security alerts\"]},\"recommendationNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation IDs\",\"description\":\"Applicable only for export of security recommendations. To export all recommendations, leave this empty. To export specific recommendations, enter a list of recommendation IDs separated by semicolons (';'). Recommendation IDs are available through the Assessments API (https://docs.microsoft.com/rest/api/securitycenter/assessments), or Azure Resource Graph Explorer (https://portal.azure.com/#blade/HubsExtension/ArgQueryBlade), choose securityresources and microsoft.security/assessments.\"},\"defaultValue\":[]},\"recommendationSeverities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Recommendation severities\",\"description\":\"Applicable only for export of security recommendations. Determines recommendation severities. Example: High;Medium;Low;\"},\"allowedValues\":[\"High\",\"Medium\",\"Low\"],\"defaultValue\":[\"High\",\"Medium\",\"Low\"]},\"alertSeverities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Alert severities\",\"description\":\"Applicable only for export of security alerts. Determines alert severities. Example: High;Medium;Low;\"},\"allowedValues\":[\"High\",\"Medium\",\"Low\"],\"defaultValue\":[\"High\",\"Medium\",\"Low\"]},\"workspaceResourceId\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Log Analytics workspace\",\"description\":\"The Log Analytics workspace of where the data should be exported to. If you do not already have a log analytics workspace, visit Log Analytics workspaces to create one (https://portal.azure.com/#blade/HubsExtension/BrowseResource/resourceType/Microsoft.OperationalInsights%2Fworkspaces).\",\"strongType\":\"Microsoft.OperationalInsights/workspaces\",\"assignPermissions\":true}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.Resources/subscriptions\"},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Security/automations\",\"name\":\"ExportToWorkspace\",\"existenceScope\":\"resourcegroup\",\"ResourceGroupName\":\"[parameters('resourceGroupName')]\",\"deploymentScope\":\"subscription\",\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\"],\"deployment\":{\"location\":\"westeurope\",\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"resourceGroupName\":{\"type\":\"string\"},\"resourceGroupLocation\":{\"type\":\"string\"},\"exportedDataTypes\":{\"type\":\"array\"},\"recommendationNames\":{\"type\":\"array\"},\"recommendationSeverities\":{\"type\":\"array\"},\"alertSeverities\":{\"type\":\"array\"},\"workspaceResourceId\":{\"type\":\"string\"},\"guidValue\":{\"type\":\"string\",\"defaultValue\":\"[newGuid()]\"}},\"variables\":{\"scopeDescription\":\"scope for subscription {0}\",\"recommendationNamesLength\":\"[length(parameters('recommendationNames'))]\",\"recommendationSeveritiesLength\":\"[length(parameters('recommendationSeverities'))]\",\"alertSeveritiesLength\":\"[length(parameters('alertSeverities'))]\",\"recommendationNamesLengthIfEmpty\":\"[if(equals(variables('recommendationNamesLength'), 0), 1, variables('recommendationNamesLength'))]\",\"recommendationSeveritiesLengthIfEmpty\":\"[if(equals(variables('recommendationSeveritiesLength'), 0), 1, variables('recommendationSeveritiesLength'))]\",\"alertSeveritiesLengthIfEmpty\":\"[if(equals(variables('alertSeveritiesLength'), 0), 1, variables('alertSeveritiesLength'))]\",\"totalRuleCombinationsForOneRecommendationName\":\"[variables('recommendationSeveritiesLengthIfEmpty')]\",\"totalRuleCombinationsForOneRecommendationSeverity\":1,\"exportedDataTypesLength\":\"[length(parameters('exportedDataTypes'))]\",\"exportedDataTypesLengthIfEmpty\":\"[if(equals(variables('exportedDataTypesLength'), 0), 1, variables('exportedDataTypesLength'))]\",\"dataTypeMap\":{\"Security recommendations\":\"Assessments\",\"Security alerts\":\"Alerts\"},\"alertSeverityMap\":{\"High\":\"high\",\"Medium\":\"medium\",\"Low\":\"low\"},\"ruleSetsForAssessmentsObj\":{\"copy\":[{\"name\":\"ruleSetsForAssessmentsArr\",\"count\":\"[mul(variables('recommendationNamesLengthIfEmpty'),variables('recommendationSeveritiesLengthIfEmpty'))]\",\"input\":{\"rules\":[{\"propertyJPath\":\"[if(equals(variables('recommendationNamesLength'),0),'type','name')]\",\"propertyType\":\"string\",\"expectedValue\":\"[if(equals(variables('recommendationNamesLength'),0),'Microsoft.Security/assessments',parameters('recommendationNames')[mod(div(copyIndex('ruleSetsForAssessmentsArr'),variables('totalRuleCombinationsForOneRecommendationName')),variables('recommendationNamesLength'))])]\",\"operator\":\"Contains\"},{\"propertyJPath\":\"properties.metadata.severity\",\"propertyType\":\"string\",\"expectedValue\":\"[parameters('recommendationSeverities')[mod(div(copyIndex('ruleSetsForAssessmentsArr'),variables('totalRuleCombinationsForOneRecommendationSeverity')),variables('recommendationSeveritiesLength'))]]\",\"operator\":\"Equals\"}]}}]},\"ruleSetsForAlertsObj\":{\"copy\":[{\"name\":\"ruleSetsForAlertsArr\",\"count\":\"[variables('alertSeveritiesLengthIfEmpty')]\",\"input\":{\"rules\":[{\"propertyJPath\":\"Severity\",\"propertyType\":\"string\",\"expectedValue\":\"[variables('alertSeverityMap')[parameters('alertSeverities')[mod(copyIndex('ruleSetsForAlertsArr'),variables('alertSeveritiesLengthIfEmpty'))]]]\",\"operator\":\"Equals\"}]}}]}},\"resources\":[{\"name\":\"[parameters('resourceGroupName')]\",\"type\":\"Microsoft.Resources/resourceGroups\",\"apiVersion\":\"2019-10-01\",\"location\":\"[parameters('resourceGroupLocation')]\",\"tags\":{},\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"apiVersion\":\"2019-10-01\",\"name\":\"[concat('nestedAutomationDeployment', '_', parameters('guidValue'))]\",\"resourceGroup\":\"[parameters('resourceGroupName')]\",\"dependsOn\":[\"[resourceId('Microsoft.Resources/resourceGroups/', parameters('resourceGroupName'))]\"],\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{},\"variables\":{},\"resources\":[{\"tags\":{},\"apiVersion\":\"2019-01-01-preview\",\"location\":\"[parameters('resourceGroupLocation')]\",\"name\":\"ExportToWorkspace\",\"type\":\"Microsoft.Security/automations\",\"dependsOn\":[],\"properties\":{\"description\":\"Export Azure Security Center alerts and/or recommendations to Log Analytics workspace via policy\",\"isEnabled\":true,\"scopes\":[{\"description\":\"[replace(variables('scopeDescription'),'{0}', subscription().subscriptionId)]\",\"scopePath\":\"[subscription().id]\"}],\"copy\":[{\"name\":\"sources\",\"count\":\"[variables('exportedDataTypesLengthIfEmpty')]\",\"input\":{\"eventSource\":\"[variables('dataTypeMap')[parameters('exportedDataTypes')[copyIndex('sources')]]]\",\"ruleSets\":\"[if(equals(parameters('exportedDataTypes')[copyIndex('sources')], 'Security recommendations'), variables('ruleSetsForAssessmentsObj').ruleSetsForAssessmentsArr, variables('ruleSetsForAlertsObj').ruleSetsForAlertsArr)]\"}}],\"actions\":[{\"actionType\":\"Workspace\",\"workspaceResourceId\":\"[parameters('workspaceResourceId')]\"}]}}]}}}]},\"parameters\":{\"resourceGroupName\":{\"value\":\"[parameters('resourceGroupName')]\"},\"resourceGroupLocation\":{\"value\":\"[parameters('resourceGroupLocation')]\"},\"exportedDataTypes\":{\"value\":\"[parameters('exportedDataTypes')]\"},\"recommendationNames\":{\"value\":\"[parameters('recommendationNames')]\"},\"recommendationSeverities\":{\"value\":\"[parameters('recommendationSeverities')]\"},\"alertSeverities\":{\"value\":\"[parameters('alertSeverities')]\"},\"workspaceResourceId\":{\"value\":\"[parameters('workspaceResourceId')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/ffb6f416-7bd2-4488-8828-56585fef2be9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ffb6f416-7bd2-4488-8828-56585fef2be9\"},{\"properties\":{\"displayName\":\"Microsoft Managed Control 1158 - Security Authorization\",\"policyType\":\"Static\",\"mode\":\"Indexed\",\"description\":\"Microsoft implements this Security Assessment and Authorization control\",\"metadata\":{\"version\":\"1.0.0\",\"category\":\"Regulatory Compliance\",\"additionalMetadataId\":\"/providers/Microsoft.PolicyInsights/policyMetadata/ACF1158\"},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"in\":[\"Microsoft.Resources/subscriptions\",\"Microsoft.Resources/subscriptions/resourceGroups\"]},{\"value\":\"false\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/fff50cf2-28eb-45b4-b378-c99412688907\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fff50cf2-28eb-45b4-b378-c99412688907\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster pod hostPath volumes should only use allowed host paths\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures pod hostPath volumes can only use allowed host paths in a Kubernetes Cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedHostPaths\":{\"type\":\"Object\",\"metadata\":{\"displayName\":\"[Preview]: Allowed host paths\",\"description\":\"The host paths allowed for pod hostPath volumes to use. Provide an empty paths list to block all host paths.\",\"schema\":{\"type\":\"object\",\"properties\":{\"paths\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"pathPrefix\":{\"type\":\"string\"},\"readOnly\":{\"type\":\"boolean\"}},\"required\":[\"pathPrefix\",\"readOnly\"],\"additionalProperties\":false}}},\"required\":[\"paths\"],\"additionalProperties\":false}},\"defaultValue\":{\"paths\":[]}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-host-paths/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-host-paths/constraint.yaml\",\"values\":{\"allowedHostPaths\":\"[parameters('allowedHostPaths').paths]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/098fc59e-46c7-4d99-9b16-64990e543d75\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"098fc59e-46c7-4d99-9b16-64990e543d75\"},{\"properties\":{\"displayName\":\"[Preview]: Manage certificate validity period\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages the maximum validity period for certificates in months.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"maximumValidityInMonths\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: The maximum validity in months\",\"description\":\"The limit to how long a certificate may be valid for. Certificates with lengthy validity periods aren't best practice.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/properties.validityInMonths\",\"greater\":\"[parameters('maximumValidityInMonths')]\"},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0a075868-4c26-42ef-914c-5bc007359560\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0a075868-4c26-42ef-914c-5bc007359560\"},{\"properties\":{\"displayName\":\"[Deprecated]: Ensure containers listen only on allowed ports in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy enforces containers to listen only on allowed ports in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"allowedContainerPortsRegex\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Allowed container ports regex\",\"description\":\"Regex representing container ports allowed in Kubernetes cluster. E.g. Regex for allowing ports 443,446 is ^(443|446)$\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"ContainerAllowedPorts\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/container-allowed-ports/limited-preview/gatekeeperpolicy.rego\",\"policyParameters\":{\"allowedContainerPortsRegex\":\"[parameters('allowedContainerPortsRegex')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/0f636243-1b1c-4d50-880f-310f6199f2cb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"0f636243-1b1c-4d50-880f-310f6199f2cb\"},{\"properties\":{\"displayName\":\"[Preview]: Manage allowed certificate key types\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages the allowed key types for certificates.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"allowedKeyTypes\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed key types\",\"description\":\"The list of allowed certificate key types.\"},\"allowedValues\":[\"RSA\",\"RSA-HSM\",\"EC\",\"EC-HSM\"],\"defaultValue\":[\"RSA\",\"RSA-HSM\"]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/keyProperties.keyType\",\"notIn\":\"[parameters('allowedKeyTypes')]\"},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1151cede-290b-4ba0-8b38-0ad145ac888f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1151cede-290b-4ba0-8b38-0ad145ac888f\"},{\"properties\":{\"displayName\":\"[Preview]: Manage certificate lifetime action triggers\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages the configuration for certificate lifetime action triggers before certificate expiration.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"maximumPercentageLife\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: The maximum lifetime percentage\",\"description\":\"Enter the percentage of lifetime of the certificate when you want to trigger the policy action. For example, to trigger a policy action at 80% of the certificate's valid life, enter '80'.\"}},\"minimumDaysBeforeExpiry\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: The minimum days before expiry\",\"description\":\"Enter the days before expiration of the certificate when you want to trigger the policy action. For example, to trigger a policy action 90 days before the certificate's expiration, enter '90'.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/lifetimeAction.daysBeforeExpiry\",\"exists\":true},{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/lifetimeAction.daysBeforeExpiry\",\"less\":\"[parameters('minimumDaysBeforeExpiry')]\"}]},{\"allOf\":[{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/lifetimeAction.lifetimePercentage\",\"exists\":true},{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/lifetimeAction.lifetimePercentage\",\"greater\":\"[parameters('maximumPercentageLife')]\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/12ef42cb-9903-4e39-9c26-422d29570417\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"12ef42cb-9903-4e39-9c26-422d29570417\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster pods should only use allowed volume types\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures pods can only use allowed volume types in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedVolumeTypes\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed volume types\",\"description\":\"The list of volume types that can be used by a pod. Provide empty list as input to block everything.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-volume-types/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-volume-types/constraint.yaml\",\"values\":{\"volumes\":\"[parameters('allowedVolumeTypes')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/16697877-1118-4fb1-9b65-9898ec2509ec\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"16697877-1118-4fb1-9b65-9898ec2509ec\"},{\"properties\":{\"displayName\":\"[Deprecated]: Enforce labels on pods in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy enforces the specified labels are provided for pods in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"commaSeparatedListOfLabels\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Comma-separated list of labels\",\"description\":\"A comma-separated list of labels to be specified on Pods in Kubernetes cluster. E.g. test1,test2\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"PodEnforceLabels\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/pod-enforce-labels/limited-preview/gatekeeperpolicy.rego\",\"policyParameters\":{\"commaSeparatedListOfLabels\":\"[parameters('commaSeparatedListOfLabels')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/16c6ca72-89d2-4798-b87e-496f9de7fcb7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"16c6ca72-89d2-4798-b87e-496f9de7fcb7\"},{\"properties\":{\"displayName\":\"[Preview]: Enforce HTTPS ingress in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy enforces HTTPS ingress in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/ingress-https-only/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/ingress-https-only/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1a5b4dca-0b6f-4cf5-907c-56316bc1bf3d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1a5b4dca-0b6f-4cf5-907c-56316bc1bf3d\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes clusters should not allow container privilege escalation\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy does not allow containers to use privilege escalation in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-no-privilege-escalation/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-no-privilege-escalation/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1c6e92c9-99f0-4e55-9cf2-0c234dc48f99\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1c6e92c9-99f0-4e55-9cf2-0c234dc48f99\"},{\"properties\":{\"displayName\":\"[Preview]: Configure log filter expressions and datastore to be used for full logs for specified Azure Machine Learning computes\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.MachineLearningServices.Data\",\"description\":\"This policy helps provide log filter expression and datastore to be used for full logs in specified Azure Machine Learning computes and can be assigned at the workspace. For more information, visit https://aka.ms/amlpolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Machine Learning\",\"preview\":true},\"parameters\":{\"computeNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Compute names where Azure ML jobs run\",\"description\":\"List of compute names where this policy should be applied. Ex. cpu-cluster;gpu-cluster. If no value is provided to this parameter then policy is applicable to all computes.\"},\"defaultValue\":[]},\"logFilters\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Log filter expressions\",\"description\":\"List of log filter expressions used to filter logs. Ex. ^prefix1.*$\"},\"defaultValue\":[]},\"datastore\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Datastore\",\"description\":\"Datastore used to store filtered logs. Ex. LogsDatastore which is configured in AML.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy.\"},\"allowedValues\":[\"enforceSetting\",\"disabled\"],\"defaultValue\":\"enforceSetting\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"field\":\"Microsoft.MachineLearningServices.Data/workspaces/computes/name\",\"in\":\"[parameters('computeNames')]\"},{\"value\":\"[length(parameters('computeNames'))]\",\"equals\":0}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"setting\":{\"name\":\"logFilter\",\"value\":{\"filters\":\"[parameters('logFilters')]\",\"datastore\":\"[parameters('datastore')]\"}}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/1d413020-63de-11ea-bc55-0242ac130003\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1d413020-63de-11ea-bc55-0242ac130003\"},{\"properties\":{\"displayName\":\"[Preview]: Ensure services listen only on allowed ports in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy enforces services to listen only on allowed ports in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"allowedServicePortsList\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed service ports list\",\"description\":\"The list of service ports allowed in a Kubernetes cluster.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/service-allowed-ports/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/service-allowed-ports/constraint.yaml\",\"values\":{\"allowedServicePorts\":\"[parameters('allowedServicePortsList')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/233a2a17-77ca-4fb1-9b6b-69223d272a44\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"233a2a17-77ca-4fb1-9b6b-69223d272a44\"},{\"properties\":{\"displayName\":\"[Deprecated]: Ensure services listen only on allowed ports in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy enforces services to listen only on allowed ports in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"allowedServicePortsRegex\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Allowed service ports regex\",\"description\":\"Regex representing service ports allowed in Kubernetes cluster. E.g. Regex for allowing ports 443,446 is ^(443|446)$\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"ServiceAllowedPorts\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/service-allowed-ports/limited-preview/gatekeeperpolicy.rego\",\"policyParameters\":{\"allowedServicePortsRegex\":\"[parameters('allowedServicePortsRegex')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/25dee3db-6ce0-4c02-ab5d-245887b24077\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"25dee3db-6ce0-4c02-ab5d-245887b24077\"},{\"properties\":{\"displayName\":\"[Deprecated]: Enforce HTTPS ingress in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy enforces HTTPS ingress in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"HttpsIngressOnly\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/ingress-https-only/limited-preview/gatekeeperpolicy.rego\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/2fbff515-eecc-4b7e-9b63-fcc7138b7dc3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"2fbff515-eecc-4b7e-9b63-fcc7138b7dc3\"},{\"properties\":{\"displayName\":\"[Preview]: Configure an approval endpoint called prior to jobs running for specified Azure Machine Learning computes\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.MachineLearningServices.Data\",\"description\":\"This policy helps configure an approval endpoint called prior to jobs running for specified Azure Machine Learning computes and can be assigned at the workspace. For more information. For more information, visit https://aka.ms/amlpolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Machine Learning\",\"preview\":true},\"parameters\":{\"computeNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Compute names where Azure ML jobs run\",\"description\":\"List of compute names where this policy should be applied. Ex. cpu-cluster;gpu-cluster. If no value is provided to this parameter then policy is applicable to all computes.\"},\"defaultValue\":[]},\"approvalEndpoint\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Approval endpoint\",\"description\":\"Approval endpoint that needs to be called before an Azure ML job is run. Ex. http://amlrunapproval/approve\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy.\"},\"allowedValues\":[\"enforceSetting\",\"disabled\"],\"defaultValue\":\"enforceSetting\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"field\":\"Microsoft.MachineLearningServices.Data/workspaces/computes/name\",\"in\":\"[parameters('computeNames')]\"},{\"value\":\"[length(parameters('computeNames'))]\",\"equals\":0}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"setting\":{\"name\":\"approvalEndpoint\",\"value\":\"[parameters('approvalEndpoint')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3948394e-63de-11ea-bc55-0242ac130003\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3948394e-63de-11ea-bc55-0242ac130003\"},{\"properties\":{\"displayName\":\"[Preview]: Enforce internal load balancers in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy enforces load balancers do not have public IPs in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/load-balancer-no-public-ips/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/load-balancer-no-public-ips/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/3fc4dc25-5baf-40d8-9b05-7fe74c1bc64e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3fc4dc25-5baf-40d8-9b05-7fe74c1bc64e\"},{\"properties\":{\"displayName\":\"[Preview]: Ensure containers listen only on allowed ports in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy enforces containers to listen only on allowed ports in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"allowedContainerPortsList\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed container ports list\",\"description\":\"The list of container ports allowed in a Kubernetes cluster.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-allowed-ports/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-allowed-ports/constraint.yaml\",\"values\":{\"allowedContainerPorts\":\"[parameters('allowedContainerPortsList')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/440b515e-a580-421e-abeb-b159a61ddcbc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"440b515e-a580-421e-abeb-b159a61ddcbc\"},{\"properties\":{\"displayName\":\"[Preview]: Enforce labels on pods in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy enforces the specified labels are provided for pods in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"labelsList\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: List of labels\",\"description\":\"The list of labels to be specified on Pods in a Kubernetes cluster.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/pod-enforce-labels/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/pod-enforce-labels/constraint.yaml\",\"values\":{\"labels\":\"[parameters('labelsList')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/46592696-4c7b-4bf3-9e45-6c2763bdc0a6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"46592696-4c7b-4bf3-9e45-6c2763bdc0a6\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should not share host process ID or host IPC namespace\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy blocks pod containers from sharing the host process ID namespace and host IPC namespace in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc/.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/block-host-namespace/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/block-host-namespace/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/47a1ee2f-2a2a-4576-bf2a-e0e36709c2b8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"47a1ee2f-2a2a-4576-bf2a-e0e36709c2b8\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should only use allowed AppArmor profiles\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures containers only use allowed AppArmor profiles in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedProfiles\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed AppArmor profiles\",\"description\":\"The list of AppArmor profiles that containers are allowed to use. E.g. 'runtime/default;docker/default'. Provide empty list as input to block everything.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/enforce-apparmor-profile/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/enforce-apparmor-profile/constraint.yaml\",\"values\":{\"allowedProfiles\":\"[parameters('allowedProfiles')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/511f5417-5d12-434d-ab2e-816901e72a5e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"511f5417-5d12-434d-ab2e-816901e72a5e\"},{\"properties\":{\"displayName\":\"[Preview]: Configure allowed module authors for specified Azure Machine Learning computes\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.MachineLearningServices.Data\",\"description\":\"This policy helps provide allowed module authors in specified Azure Machine Learning computes and can be assigned at the workspace. For more information, visit https://aka.ms/amlpolicydoc.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Machine Learning\",\"preview\":true},\"parameters\":{\"computeNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Compute names where Azure ML jobs run\",\"description\":\"List of compute names where this policy should be applied. Ex. cpu-cluster;gpu-cluster. If no value is provided to this parameter then policy is applicable to all computes.\"},\"defaultValue\":[]},\"allowedModuleAuthors\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed module authors\",\"description\":\"List of allowed module authors.\"},\"defaultValue\":[]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy.\"},\"allowedValues\":[\"enforceSetting\",\"disabled\"],\"defaultValue\":\"enforceSetting\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"field\":\"Microsoft.MachineLearningServices.Data/workspaces/computes/name\",\"in\":\"[parameters('computeNames')]\"},{\"value\":\"[length(parameters('computeNames'))]\",\"equals\":0}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"setting\":{\"name\":\"allowedModuleAuthors\",\"value\":\"[parameters('allowedModuleAuthors')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/53c70b02-63dd-11ea-bc55-0242ac130003\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"53c70b02-63dd-11ea-bc55-0242ac130003\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should not use forbidden sysctl interfaces\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures containers do not use forbidden sysctl interfaces in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"forbiddenSysctls\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Forbidden sysctls\",\"description\":\"The list of plain sysctl names or sysctl patterns which end with *. The string * matches all sysctls. For more information, visit https://aka.ms/k8s-policy-sysctl-interfaces.\"}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/forbidden-sysctl-interfaces/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/forbidden-sysctl-interfaces/constraint.yaml\",\"values\":{\"forbiddenSysctls\":\"[parameters('forbiddenSysctls')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/56d0a13f-712f-466b-8416-56fb354fb823\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"56d0a13f-712f-466b-8416-56fb354fb823\"},{\"properties\":{\"displayName\":\"[Preview]: Configure allowed registries for specified Azure Machine Learning computes\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.MachineLearningServices.Data\",\"description\":\"This policy helps provide registries that are allowed in specified Azure Machine Learning computes and can be assigned at the workspace. For more information, visit https://aka.ms/amlpolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Machine Learning\",\"preview\":true},\"parameters\":{\"computeNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Compute names where Azure ML jobs run\",\"description\":\"List of compute names where this policy should be applied. Ex. cpu-cluster;gpu-cluster. If no value is provided to this parameter then policy is applicable to all computes.\"},\"defaultValue\":[]},\"allowedACRs\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Azure Container Registries\",\"description\":\"List of Azure Container Registries that can be used with Azure ML. Ex. amlrepo.azurecr.io;amlrepo.azurecr.io/foo\"},\"defaultValue\":[]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy.\"},\"allowedValues\":[\"enforceSetting\",\"disabled\"],\"defaultValue\":\"enforceSetting\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"field\":\"Microsoft.MachineLearningServices.Data/workspaces/computes/name\",\"in\":\"[parameters('computeNames')]\"},{\"value\":\"[length(parameters('computeNames'))]\",\"equals\":0}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"setting\":{\"name\":\"allowedACRs\",\"value\":\"[parameters('allowedACRs')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5853517a-63de-11ea-bc55-0242ac130003\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5853517a-63de-11ea-bc55-0242ac130003\"},{\"properties\":{\"displayName\":\"[Deprecated]: Ensure only allowed container images in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy ensures only allowed container images are running in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"allowedContainerImagesRegex\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Allowed container images regex\",\"description\":\"Regex representing container images allowed in Kubernetes cluster. E.g. Regex of azure container registry images is ^.+azurecr.io/.+$\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"ContainerAllowedImages\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/container-allowed-images/limited-preview/gatekeeperpolicy.rego\",\"policyParameters\":{\"allowedContainerImagesRegex\":\"[parameters('allowedContainerImagesRegex')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/5f86cb6e-c4da-441b-807c-44bd0cc14e66\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5f86cb6e-c4da-441b-807c-44bd0cc14e66\"},{\"properties\":{\"displayName\":\"[Preview]: Configure code signing for training code for specified Azure Machine Learning computes\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.MachineLearningServices.Data\",\"description\":\"This policy helps provide code signing for training code in specified Azure Machine Learning computes and can be assigned at the workspace. For more information, visit https://aka.ms/amlpolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Machine Learning\",\"preview\":true},\"parameters\":{\"computeNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Compute names where Azure Machine Learning jobs run\",\"description\":\"List of compute names where this policy should be applied. Example: 'cpu-cluster;gpu-cluster'. If no value is provided to this parameter, policy is applicable to all computes.\"},\"defaultValue\":[]},\"signingKey\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: PGP public key\",\"description\":\"Public key text in PGP public key format, with newline characters encoded as string literals \\\"\\\\r\\\" and \\\"\\\\n\\\".\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy.\"},\"allowedValues\":[\"enforceSetting\",\"disabled\"],\"defaultValue\":\"enforceSetting\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"field\":\"Microsoft.MachineLearningServices.Data/workspaces/computes/name\",\"in\":\"[parameters('computeNames')]\"},{\"value\":\"[length(parameters('computeNames'))]\",\"equals\":0}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"setting\":{\"name\":\"signingKey\",\"value\":\"[parameters('signingKey')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/6a6f7384-63de-11ea-bc55-0242ac130003\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6a6f7384-63de-11ea-bc55-0242ac130003\"},{\"properties\":{\"displayName\":\"[Preview]: Configure allowed Python packages for specified Azure Machine Learning computes\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.MachineLearningServices.Data\",\"description\":\" This policy helps provide allowed Python packages in specified Azure Machine Learning computes and can be assigned at the workspace. For more information, visit https://aka.ms/amlpolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Machine Learning\",\"preview\":true},\"parameters\":{\"computeNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Compute names where Azure ML jobs run\",\"description\":\"List of compute names where this policy should be applied. Ex. cpu-cluster;gpu-cluster. If no value is provided to this parameter then policy is applicable to all computes.\"},\"defaultValue\":[]},\"allowedPythonPackageChannels\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed Python package indexes\",\"description\":\"List of allowed Python package indexes. Ex. http://somepythonindex.org \"},\"defaultValue\":[]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"Enable or disable the execution of the policy.\"},\"allowedValues\":[\"enforceSetting\",\"disabled\"],\"defaultValue\":\"enforceSetting\"}},\"policyRule\":{\"if\":{\"anyOf\":[{\"field\":\"Microsoft.MachineLearningServices.Data/workspaces/computes/name\",\"in\":\"[parameters('computeNames')]\"},{\"value\":\"[length(parameters('computeNames'))]\",\"equals\":0}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"setting\":{\"name\":\"allowedPythonPackageChannels\",\"value\":\"[parameters('allowedPythonPackageChannels')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/77eeea86-7e81-4a7d-9067-de844d096752\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"77eeea86-7e81-4a7d-9067-de844d096752\"},{\"properties\":{\"displayName\":\"[Deprecated]: Do not allow privileged containers in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy does not allow privileged containers creation in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"ContainerNoPrivilege\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/container-no-privilege/limited-preview/gatekeeperpolicy.rego\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/7ce7ac02-a5c6-45d6-8d1b-844feb1c1531\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7ce7ac02-a5c6-45d6-8d1b-844feb1c1531\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster pods should only use approved host network and port range\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy controls pod access to the host network and the allowable host port range in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowHostNetwork\":{\"type\":\"Boolean\",\"metadata\":{\"displayName\":\"[Preview]: Allow host network usage\",\"description\":\"Set this value to true if pod is allowed to use host network otherwise false.\"},\"defaultValue\":false},\"minPort\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: Min host port\",\"description\":\"The minimum value in the allowable host port range that pods can use in the host network namespace.\"},\"defaultValue\":0},\"maxPort\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: Max host port\",\"description\":\"The maximum value in the allowable host port range that pods can use in the host network namespace.\"},\"defaultValue\":0}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/host-network-ports/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/host-network-ports/constraint.yaml\",\"values\":{\"allowHostNetwork\":\"[parameters('allowHostNetwork')]\",\"minPort\":\"[parameters('minPort')]\",\"maxPort\":\"[parameters('maxPort')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/82985f06-dc18-4a48-bc1c-b9f4f0098cfe\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"82985f06-dc18-4a48-bc1c-b9f4f0098cfe\"},{\"properties\":{\"displayName\":\"[Preview]: Manage certificates issued by an integrated CA\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages certificates are issued by a specified key vault integrated Certificate Authority.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"allowedCAs\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed Azure Key Vault Supported CAs\",\"description\":\"The list of allowed certificate authorities supported by Azure Key Vault.\"},\"allowedValues\":[\"DigiCert\",\"GlobalSign\"],\"defaultValue\":[\"DigiCert\",\"GlobalSign\"]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/issuer.name\",\"notIn\":\"[parameters('allowedCAs')]\"},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/8e826246-c976-48f6-b03e-619bb92b3d82\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8e826246-c976-48f6-b03e-619bb92b3d82\"},{\"properties\":{\"displayName\":\"[Preview]: Do not allow privileged containers in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy does not allow privileged containers creation in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-no-privilege/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-no-privilege/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/95edb821-ddaf-4404-9732-666045e056b4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"95edb821-ddaf-4404-9732-666045e056b4\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should only use allowed seccomp profiles\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures containers only use allowed seccomp profiles in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedProfiles\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed seccomp profiles\",\"description\":\"The list of seccomp profiles that containers are allowed to use. E.g. 'runtime/default;docker/default'. Provide empty list as input to block everything.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-seccomp-profiles/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-seccomp-profiles/constraint.yaml\",\"values\":{\"allowedProfiles\":\"[parameters('allowedProfiles')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/975ce327-682c-4f2e-aa46-b9598289b86c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"975ce327-682c-4f2e-aa46-b9598289b86c\"},{\"properties\":{\"displayName\":\"[Preview]: Manage certificates issued by a non-integrated CA\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages certificates are issued by a specified non-integrated Certificate Authority.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"caCommonName\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: The common name of the certificate authority\",\"description\":\"The common name (CN) of the Certificate Authority (CA) provider. For example, for an issuer CN = Contoso, OU = .., DC = .., you can specify Contoso\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/issuer.commonName\",\"notContains\":\"[parameters('caCommonName')]\"},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a22f4a40-01d3-4c7d-8071-da157eeff341\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a22f4a40-01d3-4c7d-8071-da157eeff341\"},{\"properties\":{\"displayName\":\"[Deprecated]: Ensure CPU and memory resource limits defined on containers in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy ensures CPU and memory resource limits are defined on containers in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"ContainerResourceLimits\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/container-resource-limits/limited-preview/gatekeeperpolicy.rego\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a2d3ed81-8d11-4079-80a5-1faadc0024f4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a2d3ed81-8d11-4079-80a5-1faadc0024f4\"},{\"properties\":{\"displayName\":\"[Deprecated]: Enforce internal load balancers in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy enforces load balancers do not have public IPs in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"LoadBalancersInternal\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/loadbalancer-no-publicips/limited-preview/gatekeeperpolicy.rego\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/a74d8f00-2fd9-4ce4-968e-0ee1eb821698\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a74d8f00-2fd9-4ce4-968e-0ee1eb821698\"},{\"properties\":{\"displayName\":\"[Deprecated]: Enforce unique ingress hostnames across namespaces in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy enforces unique ingress hostnames across namespaces in a Kubernetes cluster. For instructions on using this policy, please go to https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"3.0.1-deprecated\",\"category\":\"Kubernetes\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Deprecated]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/ingress-hostnames-conflict/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/ingress-hostnames-conflict/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/b2fd3e59-6390-4f2b-8247-ea676bd03e2d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b2fd3e59-6390-4f2b-8247-ea676bd03e2d\"},{\"properties\":{\"displayName\":\"[Preview]: Manage allowed curve names for elliptic curve cryptography certificates\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages the allowed elliptic curve names for elliptic curve cryptography certificates.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"allowedECNames\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed elliptic curve names\",\"description\":\"The list of allowed curve names for elliptic curve cryptography certificates.\"},\"allowedValues\":[\"P-256\",\"P-256K\",\"P-384\",\"P-521\"],\"defaultValue\":[\"P-256\",\"P-256K\",\"P-384\",\"P-521\"]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/keyProperties.keyType\",\"in\":[\"EC\",\"EC-HSM\"]},{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/keyProperties.ellipticCurveName\",\"notIn\":\"[parameters('allowedECNames')]\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/bd78111f-4953-4367-9fd5-7e08808b54bf\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bd78111f-4953-4367-9fd5-7e08808b54bf\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should only use allowed capabilities\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures containers only use allowed capabilities in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedCapabilities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed capabilities\",\"description\":\"The list of capabilities that are allowed to be added to a container. Provide empty list as input to block everything.\"},\"defaultValue\":[]},\"requiredDropCapabilities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Required drop capabilities\",\"description\":\"The list of capabilities that must be dropped by a container.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-allowed-capabilities/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-allowed-capabilities/constraint.yaml\",\"values\":{\"allowedCapabilities\":\"[parameters('allowedCapabilities')]\",\"requiredDropCapabilities\":\"[parameters('requiredDropCapabilities')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/c26596ff-4d70-4e6a-9a30-c2506bd2f80c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c26596ff-4d70-4e6a-9a30-c2506bd2f80c\"},{\"properties\":{\"displayName\":\"[Preview]: Manage minimum key size for RSA certificates\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages the minimum key size for RSA certificates.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"minimumRSAKeySize\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: Minimum RSA key size\",\"description\":\"The minimum key size for RSA certificates.\"},\"allowedValues\":[2048,3072,4096]},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/keyProperties.keyType\",\"in\":[\"RSA\",\"RSA-HSM\"]},{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/keyProperties.keySize\",\"less\":\"[parameters('minimumRSAKeySize')]\"}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/cee51871-e572-4576-855c-047c820360f0\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cee51871-e572-4576-855c-047c820360f0\"},{\"properties\":{\"displayName\":\"[Deprecated]: Enforce unique ingress hostnames across namespaces in AKS\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.ContainerService.Data\",\"description\":\"This policy enforces unique ingress hostnames across namespaces in an Azure Kubernetes Service cluster. This policy is deprecated, please visit https://aka.ms/kubepolicydoc for instructions on using new Kubernetes policies.\",\"metadata\":{\"version\":\"1.0.1-deprecated\",\"category\":\"Kubernetes service\",\"deprecated\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Deprecated]: Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"EnforceRegoPolicy\",\"Disabled\"],\"defaultValue\":\"EnforceRegoPolicy\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"policyId\":\"UniqueIngressHostnames\",\"policy\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/KubernetesService/ingress-hostnames-conflict/limited-preview/gatekeeperpolicy.rego\"}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/d011d9f7-ba32-4005-b727-b3d09371ca60\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d011d9f7-ba32-4005-b727-b3d09371ca60\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should run with a read only root file system\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures containers run with a read only root file system in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc/.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/read-only-root-filesystem/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/read-only-root-filesystem/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/df49d893-a74c-421d-bc95-c663042e5b80\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"df49d893-a74c-421d-bc95-c663042e5b80\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster pods and containers should only use allowed SELinux options\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures pods and containers only use allowed SELinux options in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedSELinuxOptions\":{\"type\":\"Object\",\"metadata\":{\"displayName\":\"[Preview]: Allowed SELinux options\",\"description\":\"The allowed configurations for pod and container level SELinux Options. Provide empty options list as input to block everything.\",\"schema\":{\"type\":\"object\",\"properties\":{\"options\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"level\":{\"type\":\"string\"},\"role\":{\"type\":\"string\"},\"type\":{\"type\":\"string\"},\"user\":{\"type\":\"string\"}},\"additionalProperties\":false}}},\"required\":[\"options\"],\"additionalProperties\":false}},\"defaultValue\":{\"options\":[]}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/selinux/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/selinux/constraint.yaml\",\"values\":{\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\",\"allowedSELinuxOptions\":\"[parameters('allowedSELinuxOptions').options]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e1e6c427-07d9-46ab-9689-bfa85431e636\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e1e6c427-07d9-46ab-9689-bfa85431e636\"},{\"properties\":{\"displayName\":\"[Preview]: Ensure container CPU and memory resource limits do not exceed the specified limits in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures container CPU and memory resource limits are defined and do not exceed the specified limits in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"cpuLimit\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Max allowed CPU units\",\"description\":\"The maximum CPU units allowed for a container. E.g. 200m. For more information, please refer https://aka.ms/k8s-policy-pod-limits\"}},\"memoryLimit\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Max allowed memory bytes\",\"description\":\"The maximum memory bytes allowed for a container. E.g. 1Gi. For more information, please refer https://aka.ms/k8s-policy-pod-limits\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-resource-limits/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-resource-limits/constraint.yaml\",\"values\":{\"cpuLimit\":\"[parameters('cpuLimit')]\",\"memoryLimit\":\"[parameters('memoryLimit')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/e345eecc-fa47-480f-9e88-67dcc122b164\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e345eecc-fa47-480f-9e88-67dcc122b164\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster pods and containers should only run with approved user and group IDs\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy controls the user, primary group, supplemental group and file system group IDs that pods and containers can use to run in a Kubernetes Cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"runAsUserRule\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Run as user rule\",\"description\":\"The 'RunAsUser' rule that containers are allowed to run with.\"},\"allowedValues\":[\"MustRunAs\",\"MustRunAsNonRoot\",\"RunAsAny\"],\"defaultValue\":\"MustRunAsNonRoot\"},\"runAsUserRanges\":{\"type\":\"Object\",\"metadata\":{\"displayName\":\"[Preview]: Allowed user ID ranges\",\"description\":\"The user ID ranges that are allowed for containers to use.\",\"schema\":{\"type\":\"object\",\"properties\":{\"ranges\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"min\":{\"type\":\"integer\"},\"max\":{\"type\":\"integer\"}},\"required\":[\"min\",\"max\"],\"additionalProperties\":false}}},\"required\":[\"ranges\"],\"additionalProperties\":false}},\"defaultValue\":{\"ranges\":[]}},\"runAsGroupRule\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Run as group rule\",\"description\":\"The 'RunAsGroup' rule that containers are allowed to run with.\"},\"allowedValues\":[\"MustRunAs\",\"MayRunAs\",\"RunAsAny\"],\"defaultValue\":\"RunAsAny\"},\"runAsGroupRanges\":{\"type\":\"Object\",\"metadata\":{\"displayName\":\"[Preview]: Allowed group ID ranges\",\"description\":\"The group ID ranges that are allowed for containers to use.\",\"schema\":{\"type\":\"object\",\"properties\":{\"ranges\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"min\":{\"type\":\"integer\"},\"max\":{\"type\":\"integer\"}},\"required\":[\"min\",\"max\"],\"additionalProperties\":false}}},\"required\":[\"ranges\"],\"additionalProperties\":false}},\"defaultValue\":{\"ranges\":[]}},\"supplementalGroupsRule\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Supplemental group rule\",\"description\":\"The 'SupplementalGroups' rule that containers are allowed to run with.\"},\"allowedValues\":[\"MustRunAs\",\"MayRunAs\",\"RunAsAny\"],\"defaultValue\":\"RunAsAny\"},\"supplementalGroupsRanges\":{\"type\":\"Object\",\"metadata\":{\"displayName\":\"[Preview]: Allowed supplemental group ID ranges\",\"description\":\"The supplemental group ID ranges that are allowed for containers to use.\",\"schema\":{\"type\":\"object\",\"properties\":{\"ranges\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"min\":{\"type\":\"integer\"},\"max\":{\"type\":\"integer\"}},\"required\":[\"min\",\"max\"],\"additionalProperties\":false}}},\"required\":[\"ranges\"],\"additionalProperties\":false}},\"defaultValue\":{\"ranges\":[]}},\"fsGroupRule\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: File system group rule\",\"description\":\"The 'FSGroup' rule that containers are allowed to run with.\"},\"allowedValues\":[\"MustRunAs\",\"MayRunAs\",\"RunAsAny\"],\"defaultValue\":\"RunAsAny\"},\"fsGroupRanges\":{\"type\":\"Object\",\"metadata\":{\"displayName\":\"[Preview]: Allowed file system group ID ranges\",\"description\":\"The file system group ranges that are allowed for pods to use.\",\"schema\":{\"type\":\"object\",\"properties\":{\"ranges\":{\"type\":\"array\",\"items\":{\"type\":\"object\",\"properties\":{\"min\":{\"type\":\"integer\"},\"max\":{\"type\":\"integer\"}},\"required\":[\"min\",\"max\"],\"additionalProperties\":false}}},\"required\":[\"ranges\"],\"additionalProperties\":false}},\"defaultValue\":{\"ranges\":[]}}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-users-groups/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-users-groups/constraint.yaml\",\"values\":{\"runAsUser\":{\"rule\":\"[parameters('runAsUserRule')]\",\"ranges\":\"[parameters('runAsUserRanges').ranges]\"},\"runAsGroup\":{\"rule\":\"[parameters('runAsGroupRule')]\",\"ranges\":\"[parameters('runAsGroupRanges').ranges]\"},\"supplementalGroups\":{\"rule\":\"[parameters('supplementalGroupsRule')]\",\"ranges\":\"[parameters('supplementalGroupsRanges').ranges]\"},\"fsGroup\":{\"rule\":\"[parameters('fsGroupRule')]\",\"ranges\":\"[parameters('fsGroupRanges').ranges]\"},\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f06ddb64-5fa3-4b77-b166-acb36f7f6042\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f06ddb64-5fa3-4b77-b166-acb36f7f6042\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster pod FlexVolume volumes should only use allowed drivers\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures pod FlexVolume volumes only use allowed drivers in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"allowedFlexVolumeDrivers\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Allowed FlexVolume drivers\",\"description\":\"The list of drivers that FlexVolume volumes are allowed to use. Provide empty list as input to block everything.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/flexvolume-drivers/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/flexvolume-drivers/constraint.yaml\",\"values\":{\"allowedFlexVolumeDrivers\":\"[parameters('allowedFlexVolumeDrivers')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f4a8fce0-2dd5-4c21-9a36-8f0ec809d663\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f4a8fce0-2dd5-4c21-9a36-8f0ec809d663\"},{\"properties\":{\"displayName\":\"[Preview]: Manage certificates that are within a specified number of days of expiration\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.KeyVault.Data\",\"description\":\"This policy manages certificates that are within a specified number of days to their expiration date.\",\"metadata\":{\"version\":\"1.0.1-preview\",\"category\":\"Key Vault\",\"preview\":true},\"parameters\":{\"daysToExpire\":{\"type\":\"Integer\",\"metadata\":{\"displayName\":\"[Preview]: Days to expire\",\"description\":\"The number of days for a certificate to expire.\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"}},\"policyRule\":{\"if\":{\"field\":\"Microsoft.KeyVault.Data/vaults/certificates/attributes.expiresOn\",\"lessOrEquals\":\"[addDays(utcNow(), parameters('daysToExpire'))]\"},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f772fb64-8e40-40ad-87bc-7706e1949427\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f772fb64-8e40-40ad-87bc-7706e1949427\"},{\"properties\":{\"displayName\":\"[Preview]: Kubernetes cluster containers should only use allowed ProcMountType\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures containers only use allowed ProcMountType in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"1.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created or updated, but flags it as non-compliant. 'Deny' blocks the non-compliant resource creation or update. 'Disabled' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"audit\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]},\"procMountType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: ProcMountType\",\"description\":\"The ProcMountType that containers are allowed to use in the cluster.\"},\"allowedValues\":[\"Unmasked\",\"Default\"],\"defaultValue\":\"Default\"}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-proc-mount-types/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/allowed-proc-mount-types/constraint.yaml\",\"values\":{\"procMount\":\"[parameters('procMountType')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/f85eb0dd-92ee-40e9-8a76-db25a507d6d3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f85eb0dd-92ee-40e9-8a76-db25a507d6d3\"},{\"properties\":{\"displayName\":\"[Preview]: Ensure only allowed container images in Kubernetes cluster\",\"policyType\":\"BuiltIn\",\"mode\":\"Microsoft.Kubernetes.Data\",\"description\":\"This policy ensures only allowed container images are running in a Kubernetes cluster. For instructions on using this policy, visit https://aka.ms/kubepolicydoc.\",\"metadata\":{\"version\":\"4.0.0-preview\",\"category\":\"Kubernetes\",\"preview\":true},\"parameters\":{\"allowedContainerImagesRegex\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Allowed container images regex\",\"description\":\"The RegEx rule used to match allowed container images in a Kubernetes cluster. For example, to allow any Azure Container Registry image by matching partial path: ^.+azurecr.io/.+$\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"[Preview]: Effect\",\"description\":\"'Audit' allows a non-compliant resource to be created, but flags it as non-compliant. 'Deny' blocks the resource creation. 'Disable' turns off the policy.\"},\"allowedValues\":[\"audit\",\"deny\",\"disabled\"],\"defaultValue\":\"deny\"},\"excludedNamespaces\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"[Preview]: Namespace exclusions\",\"description\":\"List of Kubernetes namespaces to exclude from policy evaluation.\"},\"defaultValue\":[\"kube-system\",\"gatekeeper-system\",\"azure-arc\"]}},\"policyRule\":{\"if\":{\"field\":\"type\",\"in\":[\"AKS Engine\",\"Microsoft.Kubernetes/connectedClusters\",\"Microsoft.ContainerService/managedClusters\"]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"constraintTemplate\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-allowed-images/template.yaml\",\"constraint\":\"https://raw.githubusercontent.com/Azure/azure-policy/master/built-in-references/Kubernetes/container-allowed-images/constraint.yaml\",\"values\":{\"allowedContainerImagesRegex\":\"[parameters('allowedContainerImagesRegex')]\",\"excludedNamespaces\":\"[parameters('excludedNamespaces')]\"}}}}},\"id\":\"/providers/Microsoft.Authorization/policyDefinitions/febd0533-8e55-448f-b837-bd0e06f16469\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"febd0533-8e55-448f-b837-bd0e06f16469\"},{\"properties\":{\"displayName\":\"mypolicy266834\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:58:33.8786323Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy058614a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy058614a\"},{\"properties\":{\"displayName\":\"mypolicy26269c\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:58:33.8118731Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy47866b2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy47866b2\"},{\"properties\":{\"displayName\":\"mypolicy82169f\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-04-28T08:54:49.5003837Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy8be16327\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy8be16327\"},{\"properties\":{\"displayName\":\"mypolicy81329b\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-03-10T02:20:34.3774568Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policyc7224351\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policyc7224351\"},{\"properties\":{\"displayName\":\"mypolicy97203d\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"9c776d20-14a6-4ede-b35d-bdf4b5e2bd75\",\"createdOn\":\"2020-05-13T04:45:01.7136345Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policyde274257\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policyde274257\"},{\"properties\":{\"displayName\":\"mypolicy12287f\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"9c776d20-14a6-4ede-b35d-bdf4b5e2bd75\",\"createdOn\":\"2020-05-13T04:39:55.2215544Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policye7470801\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policye7470801\"},{\"properties\":{\"displayName\":\"mypolicy360728\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"9c776d20-14a6-4ede-b35d-bdf4b5e2bd75\",\"createdOn\":\"2020-03-23T07:15:32.8766378Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policyf7360322\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policyf7360322\"},{\"properties\":{\"displayName\":\"mypolicy168409\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-03-10T02:23:51.5343789Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policyf8001090\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policyf8001090\"},{\"properties\":{\"displayName\":\"mypolicy612512\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-03-09T09:05:28.2288632Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"northeurope\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policyfab16899\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policyfab16899\"},{\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:24:01.1484325Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HDInsight/clusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HDInsight/clusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/11094169db59074f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"11094169db59074f\"},{\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:32:57.4990001Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HDInsight/clusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"tags['NRMSVNetIntException']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['NRMSVNetIntException']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"not\":{\"field\":\"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HDInsight/clusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/1b0f9cd579f5f04a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1b0f9cd579f5f04a\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack append policy for vmss_1.2\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-23T19:35:01.9059556Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname1\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"resourcegrouptagname2\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname1')]]\",\"equals\":\"\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname2')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/virtualMachineProfile\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].type\",\"notEquals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].type\",\"notEquals\":\"VirtualMachineRuntimeService\"},{\"not\":{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.provisionVMAgent\",\"equals\":\"false\"}}]},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*]\",\"value\":{\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{}}}}]}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/1b5a57eabcce7d7d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"1b5a57eabcce7d7d\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-102_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:23.2021003Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/21f42d11eb755867\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"21f42d11eb755867\"},{\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:57.6004986Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.ContainerService/managedClusters/networkProfile.networkPlugin\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.ContainerService/managedClusters/networkProfile.networkPlugin\",\"equals\":\"azure\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/26db8d27b6fa91aa\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"26db8d27b6fa91aa\"},{\"properties\":{\"displayName\":\"audit ssh auth on existing resources_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMs use password-only authentication for SSH on existing resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-12-06T21:04:41.4787743Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"notEquals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"True\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/28b685eba93cc71f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"28b685eba93cc71f\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-101_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:14.0863618Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/34612a1acdd0093\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"34612a1acdd0093\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-103_1.4\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:27:38.9264536Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/3c07197392ad62f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"3c07197392ad62f\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-105_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:18.4394851Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/40879463350508de\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"40879463350508de\"},{\"properties\":{\"displayName\":\"audit ssh auth on new vmss_1.4\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMSSs use password-only authentication for SSH on new resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-05-12T23:41:52.0436302Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyof\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"exists\":\"False\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/408b8964022134ba\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"408b8964022134ba\"},{\"properties\":{\"displayName\":\"sqlads-auditifnotexists-vulnerability assessment should be enabled on your sql servers_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:37.034264Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the SQL Server\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('tagname')]]\",\"equals\":\"\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/vulnerabilityAssessments\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/vulnerabilityAssessments/recurringScans.isEnabled\",\"equals\":\"True\"}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/410c2966a1e1856e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"410c2966a1e1856e\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-103_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:16.1955196Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/42c70bae0daee0b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"42c70bae0daee0b3\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-108_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:59.0487626Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/532396f35af78946\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"532396f35af78946\"},{\"properties\":{\"displayName\":\"audit ssh auth on new vms_1.4\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMs use password-only authentication for SSH on new resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-05-12T23:41:56.0529781Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"anyof\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"exists\":\"False\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/566405fe94cbf731\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"566405fe94cbf731\"},{\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_2.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:32:58.4608022Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts/pools\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"tags['NRMSVNetIntException']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['NRMSVNetIntException']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"anyOf\":[{\"field\":\"Microsoft.Batch/batchAccounts/pools/networkConfiguration.subnetId\",\"exists\":\"false\"},{\"field\":\"Microsoft.Batch/batchAccounts/pools/networkConfiguration.subnetId\",\"in\":[\"null\",\"\"]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/5aac1290d24c772d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5aac1290d24c772d\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-101_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:18.6642999Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/5d9c8a259a63a29b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5d9c8a259a63a29b\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack append policy for vmss_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-12T00:29:53.2880644Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/virtualMachineProfile\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].type\",\"notEquals\":\"GenevaMonitoring\"}]},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*]\",\"value\":{\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{}}}}]}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/5e6e7d4c3e34256b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"5e6e7d4c3e34256b\"},{\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-06-26T21:23:29.4182093Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"priorities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Rule Priority\",\"description\":\"List of Rule Priority Numbers reserved for Security\"}},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups/securityRules\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"In\":\"[parameters('priorities')]\"},{\"field\":\"location\",\"In\":\"[parameters('allowedLocations')]\"},{\"allOf\":[{\"not\":{\"field\":\"name\",\"contains\":\"Cleanuptool\"}},{\"not\":{\"field\":\"name\",\"contains\":\"NRMS-Rule-\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/6221d088cd1bcdc3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6221d088cd1bcdc3\"},{\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:33:58.9010954Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"priorities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Rule Priority\",\"description\":\"List of Rule Priority Numbers reserved for Security\"}},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups/securityRules\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"In\":\"[parameters('priorities')]\"},{\"field\":\"location\",\"In\":\"[parameters('allowedLocations')]\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"allOf\":[{\"not\":{\"field\":\"name\",\"contains\":\"Cleanuptool\"}},{\"not\":{\"field\":\"name\",\"contains\":\"NRMS-Rule-\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/686f7311dc548f32\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"686f7311dc548f32\"},{\"properties\":{\"displayName\":\"deny creation of new linux vmss with ssh password auth_1.5\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMSSs use password-only authentication for SSH on new resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-07-14T00:05:22.7366216Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyof\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"exists\":\"False\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/6e87f6ee1518ae1d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"6e87f6ee1518ae1d\"},{\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:59.788546Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.Batch/batchAccounts/poolAllocationMode\",\"notIn\":[\"batchservice\",\"null\",\"\"]}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/74c98b59a6341488\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"74c98b59a6341488\"},{\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:34:01.1631389Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"tags['SkipNRMSNSG']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSNSG']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"not\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"exists\":\"false\"}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/789cfec91f9e1858\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"789cfec91f9e1858\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-102_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:28.7454992Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/7c066e9166289efb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"7c066e9166289efb\"},{\"properties\":{\"displayName\":\"nrms-nsg-subnet_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:27:19.9099766Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"resourceGroupExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Resource Groups Excluded\",\"description\":\"Any VNet in a resource group in this list will be ignored.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"},{\"value\":\"[resourceGroup().name]\",\"notIn\":\"[parameters('resourceGroupExclusions')]\"},{\"field\":\"name\",\"notContains\":\"GatewaySubnet\"},{\"field\":\"tags['SkipNRMSNSG']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSNSG']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"anyOf\":[{\"not\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"notIn\":[\"null\",\"\"]}},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"DoesNotExistBecauseThisIsToCauseDeployment\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\"contentVersion\":\"1.0.0.1\",\"parameters\":{\"fullSubnetName\":{\"type\":\"String\"},\"allowedLocations\":{\"type\":\"Array\"}},\"variables\":{\"vnetName\":\"[first(split(parameters('fullSubnetName'),'/'))]\",\"subnetName\":\"[last(split(parameters('fullSubnetName'),'/'))]\",\"rawNsgName\":\"[concat(variables('vnetName'),'-', variables('subnetName'), '-NRMS')]\",\"nsgName\":\"[if(greater(length(variables('rawNsgName')),75),substring(variables('rawNsgName'),0,75),variables('rawNsgName'))]\",\"nsgUpdateJson\":{\"networkSecurityGroup\":{\"id\":\"[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]\"}}},\"resources\":[{\"condition\":\"[contains(parameters('allowedLocations'), resourceGroup().location)]\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"name\":\"[variables('nsgName')]\",\"apiVersion\":\"2018-03-01\",\"location\":\"[resourceGroup().location]\",\"tags\":{\"Creator\":\"Automatically added by NRMS Azure Policy\",\"NRMS-Info\":\"http://aka.ms/nrms\",\"NRMS-Version\":\"2019-03-20\"},\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"NRMS-Update-Subnet-Without-NSG\",\"apiVersion\":\"2018-05-01\",\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"resources\":[{\"apiVersion\":\"2018-11-01\",\"type\":\"Microsoft.Network/virtualNetworks/subnets\",\"name\":\"[parameters('fullSubnetName')]\",\"location\":\"[resourceGroup().location]\",\"properties\":\"[union(reference(resourceId('Microsoft.Network/virtualNetworks/subnets', variables('vnetName'), variables('subnetName')), '2018-11-01'), variables('nsgUpdateJson'))]\"}]}},\"dependsOn\":[\"[variables('nsgName')]\"]}]},\"parameters\":{\"fullSubnetName\":{\"value\":\"[field('fullName')]\"},\"allowedLocations\":{\"value\":\"[parameters('allowedLocations')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/852aeb0ee2c0a3a5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"852aeb0ee2c0a3a5\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-109_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:26.3856504Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/8657a5b3e83f5307\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8657a5b3e83f5307\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack autoupdate policy for vmss_2.2\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-23T19:35:03.2379239Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname1\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"resourcegrouptagname2\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname1')]]\",\"equals\":\"\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname2')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.provisionVMAgent\",\"equals\":\"true\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Geneva\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/enableAutomaticUpgrade\",\"equals\":\"true\"}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"VirtualMachineRuntimeService\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Compute\"}]}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmssName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2018-10-01\",\"name\":\"[concat(parameters('vmssName'), '/Microsoft.Azure.Geneva.GenevaMonitoring')]\",\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}]},\"parameters\":{\"vmssName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/884fc572e38f5fe9\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"884fc572e38f5fe9\"},{\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-06-26T21:23:24.5730438Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.ContainerService/managedClusters/networkProfile.networkPlugin\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.ContainerService/managedClusters/networkProfile.networkPlugin\",\"equals\":\"azure\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/88adc7594e846097\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"88adc7594e846097\"},{\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-06-26T21:23:23.3819739Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.Batch/batchAccounts/poolAllocationMode\",\"notIn\":[\"batchservice\",\"null\",\"\"]}}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/891d9369d047f6ac\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"891d9369d047f6ac\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-104_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:15.9708014Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/8d69d8ee570b639\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8d69d8ee570b639\"},{\"properties\":{\"displayName\":\"sqlads-auditifnotexists-auditing should be enabled on advanced data security settings on sql server_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:36.9468814Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the SQL Server\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"},\"setting\":{\"type\":\"String\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('tagname')]]\",\"equals\":\"\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/auditingSettings\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/auditingSettings.state\",\"equals\":\"[parameters('setting')]\"}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/8fce770def99399\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8fce770def99399\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-106_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:28.0710497Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/8fdec1516a77bbd6\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"8fdec1516a77bbd6\"},{\"properties\":{\"displayName\":\"audit ssh auth on existing vmss_1.4\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMSSs use password-only authentication for SSH on existing resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-05-12T23:41:53.0207896Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration\",\"exists\":\"True\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9135d7012c4033cb\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9135d7012c4033cb\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-105_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:42.3856221Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/91f42c0ca66ff7dd\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"91f42c0ca66ff7dd\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack append policy for vmss_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-08-13T21:33:05.8939153Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/virtualMachineProfile\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*].type\",\"notEquals\":\"GenevaMonitoring\"},{\"not\":{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.provisionVMAgent\",\"equals\":\"false\"}}]},\"then\":{\"effect\":\"append\",\"details\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/extensionProfile.extensions[*]\",\"value\":{\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"settings\":{}}}}]}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9534973cc57db387\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9534973cc57db387\"},{\"properties\":{\"displayName\":\"nrms-nsg-subnet_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:09.005562Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"resourceGroupExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Resource Groups Excluded\",\"description\":\"Any VNet in a resource group in this list will be ignored.\"},\"defaultValue\":[]}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"},{\"value\":\"[resourceGroup().name]\",\"notIn\":\"[parameters('resourceGroupExclusions')]\"},{\"field\":\"name\",\"notContains\":\"GatewaySubnet\"},{\"field\":\"tags['SkipNRMSNSG']\",\"exists\":\"false\"},{\"anyOf\":[{\"not\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"notIn\":[\"null\",\"\"]}},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Authorization/policyAssignments\",\"name\":\"DoesNotExistBecauseThisIsToCauseDeployment\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\"contentVersion\":\"1.0.0.1\",\"parameters\":{\"fullSubnetName\":{\"type\":\"String\"},\"allowedLocations\":{\"type\":\"Array\"}},\"variables\":{\"vnetName\":\"[first(split(parameters('fullSubnetName'),'/'))]\",\"subnetName\":\"[last(split(parameters('fullSubnetName'),'/'))]\",\"rawNsgName\":\"[concat(variables('vnetName'),'-', variables('subnetName'), '-NRMS')]\",\"nsgName\":\"[if(greater(length(variables('rawNsgName')),75),substring(variables('rawNsgName'),0,75),variables('rawNsgName'))]\",\"nsgUpdateJson\":{\"networkSecurityGroup\":{\"id\":\"[resourceId('Microsoft.Network/networkSecurityGroups', variables('nsgName'))]\"}}},\"resources\":[{\"condition\":\"[contains(parameters('allowedLocations'), resourceGroup().location)]\",\"type\":\"Microsoft.Network/networkSecurityGroups\",\"name\":\"[variables('nsgName')]\",\"apiVersion\":\"2018-03-01\",\"location\":\"[resourceGroup().location]\",\"tags\":{\"Creator\":\"Automatically added by NRMS Azure Policy\",\"NRMS-Info\":\"http://aka.ms/nrms\",\"NRMS-Version\":\"2019-03-20\"},\"properties\":{}},{\"type\":\"Microsoft.Resources/deployments\",\"name\":\"NRMS-Update-Subnet-Without-NSG\",\"apiVersion\":\"2018-05-01\",\"properties\":{\"mode\":\"Incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"resources\":[{\"apiVersion\":\"2018-11-01\",\"type\":\"Microsoft.Network/virtualNetworks/subnets\",\"name\":\"[parameters('fullSubnetName')]\",\"location\":\"[resourceGroup().location]\",\"properties\":\"[union(reference(resourceId('Microsoft.Network/virtualNetworks/subnets', variables('vnetName'), variables('subnetName')), '2018-11-01'), variables('nsgUpdateJson'))]\"}]}},\"dependsOn\":[\"[variables('nsgName')]\"]}]},\"parameters\":{\"fullSubnetName\":{\"value\":\"[field('fullName')]\"},\"allowedLocations\":{\"value\":\"[parameters('allowedLocations')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9644d220df7c67a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9644d220df7c67a\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-105_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:26.1317211Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9aca16db50fb914c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9aca16db50fb914c\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-106_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:49.8100037Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9b8d76c443040b08\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9b8d76c443040b08\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-101_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:02.8942844Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9d78e6174e6e69be\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9d78e6174e6e69be\"},{\"properties\":{\"displayName\":\"audit ssh auth on existing vms_1.4\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMs use password-only authentication for SSH on existing resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-05-12T23:41:51.7770777Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"True\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/9f778de970219a8a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"9f778de970219a8a\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack autoupdate policy for vmss_2.1\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-08-13T21:33:07.7274256Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"not\":{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration.provisionVMAgent\",\"equals\":\"false\"}}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Geneva\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/enableAutomaticUpgrade\",\"equals\":\"true\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmssName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2018-10-01\",\"name\":\"[concat(parameters('vmssName'), '/Microsoft.Azure.Geneva.GenevaMonitoring')]\",\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}]},\"parameters\":{\"vmssName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/a646ce8cd06eac96\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"a646ce8cd06eac96\"},{\"properties\":{\"displayName\":\"sqlads-auditifnotexists-atp types should be set to 'all' in sql server advanced data security settings_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:40.6774801Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the SQL Server\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('tagname')]]\",\"equals\":\"\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/securityAlertPolicies/disabledAlerts[*]\",\"equals\":\"\"}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/ac3fc8ad361a9985\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ac3fc8ad361a9985\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack autoupdate policy for iaas_1.0\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-12T00:29:57.8179024Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Geneva\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/enableAutomaticUpgrade\",\"equals\":\"true\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2018-10-01\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.Azure.Geneva.GenevaMonitoring')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{},\"protectedSettings\":{}}}]},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b1d9e961d02c54d5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b1d9e961d02c54d5\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-106_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:22.7538641Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b4482f205fb6bbc1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b4482f205fb6bbc1\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack autoupdate policy for iaas_1.1\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-08-13T21:33:07.0355992Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"not\":{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.provisionVMAgent\",\"equals\":\"false\"}}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Geneva\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/enableAutomaticUpgrade\",\"equals\":\"true\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2018-10-01\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.Azure.Geneva.GenevaMonitoring')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{},\"protectedSettings\":{}}}]},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b70c6f621534db23\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b70c6f621534db23\"},{\"properties\":{\"displayName\":\"nrms-hdinsight-require-subnet_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-06-26T21:23:22.8439408Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HDInsight/clusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.HDInsight/clusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"Microsoft.HDInsight/clusters/computeProfile.roles[*].virtualNetworkProfile.subnet\",\"exists\":\"false\"}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b7a0969ff954eaf7\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b7a0969ff954eaf7\"},{\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:24:01.4784818Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"not\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"exists\":\"false\"}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b8f1faa61cb41f92\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b8f1faa61cb41f92\"},{\"properties\":{\"displayName\":\"audit ssh auth on new vms_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMs use password-only authentication for SSH on new resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-25T22:01:41.9137032Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"anyof\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"exists\":\"False\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/b9c65c79770e8c51\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"b9c65c79770e8c51\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-104_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:20.3270264Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/bac0fb65020410a4\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bac0fb65020410a4\"},{\"properties\":{\"displayName\":\"deny creation of new linux vms with ssh password auth_1.5\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy denied the creation of Linux VMs which use password-only authentication for SSH.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-07-14T00:05:21.8198103Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"anyof\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"exists\":\"False\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/bfa798085e63e6b3\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"bfa798085e63e6b3\"},{\"properties\":{\"displayName\":\"audit ssh auth on existing vms_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMs use password-only authentication for SSH on existing resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-25T22:01:38.4305071Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration\",\"exists\":\"True\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/c2f5d119c894ce34\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c2f5d119c894ce34\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-107_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:32.278708Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/c4184f404efb2fe5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c4184f404efb2fe5\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack autoupdate policy for iaas_1.2\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-23T19:35:05.015959Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname1\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"resourcegrouptagname2\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}},\"subscriptiontagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the subscription level\",\"description\":\"Rule is not deployed if this tag exists on the Subscription\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachines\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname1')]]\",\"equals\":\"\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname2')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('subscriptiontagname')]]\",\"equals\":\"\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]},{\"not\":{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.windowsConfiguration.provisionVMAgent\",\"equals\":\"false\"}}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachines/extensions/type\",\"equals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/publisher\",\"equals\":\"Microsoft.Azure.Geneva\"},{\"field\":\"Microsoft.Compute/virtualMachines/extensions/enableAutomaticUpgrade\",\"equals\":\"true\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2018-10-01\",\"name\":\"[concat(parameters('vmName'), '/Microsoft.Azure.Geneva.GenevaMonitoring')]\",\"type\":\"Microsoft.Compute/virtualMachines/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{},\"protectedSettings\":{}}}]},\"parameters\":{\"vmName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/c6cc0ff730a1cb3c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c6cc0ff730a1cb3c\"},{\"properties\":{\"displayName\":\"audit ssh auth on new vmss_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMSSs use password-only authentication for SSH on new resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-25T22:01:43.9041265Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"anyof\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"exists\":\"False\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/c901e756f9e2e56e\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"c901e756f9e2e56e\"},{\"properties\":{\"displayName\":\"nrms-kubernet-require-azure-networkplugin_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T19:33:00.4442389Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"tags['NRMSVNetIntException']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['NRMSVNetIntException']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"not\":{\"field\":\"Microsoft.ContainerService/managedClusters/networkProfile.networkPlugin\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.ContainerService/managedClusters\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"not\":{\"field\":\"Microsoft.ContainerService/managedClusters/networkProfile.networkPlugin\",\"equals\":\"azure\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/cb9c916fd4b6c323\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cb9c916fd4b6c323\"},{\"properties\":{\"displayName\":\"nrms-batch-require-user-subscription-mode_2.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-08-08T22:25:06.8419431Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Batch/batchAccounts/pools\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"anyOf\":[{\"field\":\"Microsoft.Batch/batchAccounts/pools/networkConfiguration.subnetId\",\"exists\":\"false\"},{\"field\":\"Microsoft.Batch/batchAccounts/pools/networkConfiguration.subnetId\",\"in\":[\"null\",\"\"]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/cdd4d274005fb67b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"cdd4d274005fb67b\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-108_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:25.3178329Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/ce4b13eba037b5cc\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"ce4b13eba037b5cc\"},{\"properties\":{\"displayName\":\"audit ssh auth on existing vmss_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMSSs use password-only authentication for SSH on existing resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-25T22:01:41.6737137Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}}},\"policyRule\":{\"if\":{\"allof\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"equals\":\"\"},{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration\",\"exists\":\"True\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/virtualMachineProfile.osProfile.linuxConfiguration.disablePasswordAuthentication\",\"equals\":\"false\"}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/d950db6f06d4cd0c\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d950db6f06d4cd0c\"},{\"properties\":{\"displayName\":\"audit ssh auth on new resources_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"description\":\"This policy audits whether any Linux VMs use password-only authentication for SSH on new resources.\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-12-06T21:04:41.4948364Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"resourcetagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the Virtual Machine\"}},\"resourcegrouptagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name at the resource group level\",\"description\":\"Rule is not deployed if this tag exists on the Resource Group\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('resourcetagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('resourcegrouptagname')]]\",\"notEquals\":\"\"},{\"field\":\"Microsoft.Compute/virtualMachines/osProfile.adminPassword\",\"exists\":\"True\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"7isolutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sapp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"128technology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"128t_networking_platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"4psa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voipnow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"a10networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"a10-lightning-adc\",\"a10-vthunder-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accellion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kiteworks-by-accellion\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"abiquo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"abiquo-hybrid-cloud-34\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"accops\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hysecure5050\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian_matrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actian_matrix\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actifio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"actifio-sky\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"actian-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vector-community\",\"vector-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Acronis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"activeeon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activeeon-workload-scheduler\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aerospike\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aerospike-database-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"affinio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aiscaler-cache-control-ddos-and-url-rewriting-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aimobile-site-acceleration\",\"aiprotect-ddos-firewall\",\"aiscaler-traffic-manager-caching\",\"aivideo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"akamai-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"enterprise-application-access\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alces-flight-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alces-flight-compute-solo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alertlogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alert-logic-tm\",\"alert-logic-wsm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alienvault\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-security-management-anywhere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"alldigital-brevity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alldigital-brevity-uploader\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altair-engineering-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"altair_hwulva\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"altamira-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lumify\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"antmedia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ams_community_edition\",\"ant_media_server_enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"apigee\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"apigee-edge\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcara\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"app360v43-001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appcelerator\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appcelerator-arrow-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appex-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appistry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"genomepilot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"appscale-marketplace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appscale\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arangodb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"arangodb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"arista-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veos-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"array_networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"array-networks-vapv\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"astadia-1148316\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"astadia-ui-automation-tee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"atomicorp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"secure-os\",\"secure-ubuntu-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"audiocodes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mediantsessionbordercontroller\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"auriq-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"essentia\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"awingu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"awingu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"aviatrix-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aviatrix-cloud-services\",\"aviatrix-companion-gateway\",\"aviatrix-companion-gateway-v2\",\"aviatrix-vpn-gw\",\"aviatrix_multi_cloud_service\",\"aviatrix_openvpn_service\",\"aviatrix_openvpn_service10\",\"aviatrix_openvpn_service25\",\"aviatrix_openvpn_service50\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"avi-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"avi-vantage-adc\",\"internal-avi-vantage-adc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"axway\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"axway-mailgate-secure-collaboration-advanced\",\"axway-mailgate-secure-collaboration-premium\",\"axway-mailgate-secure-collaboration-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azul\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azul-zulu-ubuntu-1804\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"azurecyclecloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azure-cyclecloud-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"AzureDatabricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Databricks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baas-techbureau\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"b1327623-d29b-4cc1-b833-85067dcc7bce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"baffle-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"baffle-application-data-protection\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"balabit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"balabit-shell-control-box\",\"psm\",\"sps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"barracudanetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"barracuda-app-sec-control-center\",\"barracuda-email-security-gateway\",\"barracuda-ng-cc\",\"barracuda-ng-firewall\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"basho\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riak-2-0-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"autodesk-maya-arnold-centos73\",\"rendering-centos73\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bdy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"buddy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Bitnami\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"3-4\",\"abantecart\",\"activemq\",\"akeneo\",\"alfrescocommunity\",\"apachesolr\",\"artifactory\",\"canvaslms\",\"cassandra\",\"civicrm\",\"cmsmadesimple\",\"codiad\",\"concrete5\",\"consul\",\"coppermine\",\"couchdb\",\"diaspora\",\"discourse\",\"djangostack\",\"dokuwiki\",\"dolibarr\",\"DreamFactory\",\"drupal\",\"elastic-search\",\"elk\",\"erpnext\",\"espocrm\",\"etcd\",\"eXo-Platform\",\"exoplatform\",\"fatfreecrm\",\"ghost\",\"gitlab\",\"grafana\",\"hadoop\",\"hhvmstack\",\"hordegroupwarewebmail\",\"jasperreports\",\"jenkins\",\"joomla\",\"jrubystack\",\"kafka\",\"kong\",\"kubernetessandbox\",\"lampstack\",\"lappstack\",\"letschat\",\"liferay\",\"limesurvey\",\"livehelperchat\",\"magento\",\"mahara\",\"mantis\",\"mariadb\",\"mattermost\",\"mautic\",\"mean\",\"mediawiki\",\"memcached\",\"modx\",\"mongodb\",\"moodle\",\"multicraft\",\"mybb\",\"mysql\",\"nats\",\"neo4j\",\"neos\",\"nginxstack\",\"noalyss\",\"nodejs\",\"ocportal\",\"odoo\",\"openatrium\",\"opencart\",\"openedx\",\"openfire\",\"openproject\",\"orangehrm\",\"osclass\",\"owncloud\",\"oxid-eshop\",\"parseserver\",\"phabricator\",\"phpbb\",\"phplist\",\"pimcore\",\"piwik\",\"plone\",\"pootle\",\"postgresql\",\"prestashop\",\"processmakerenterprise\",\"processmakeropensourceedition\",\"processwire\",\"publify\",\"rabbitmq\",\"redash\",\"redis\",\"redmine\",\"redmineplusagile\",\"reportserver\",\"reportserverenterprise\",\"resourcespace\",\"reviewboard\",\"reviewboardpowerpack\",\"roundcube\",\"rubystack\",\"seopanel\",\"shopware\",\"silverstripe\",\"simplemachinesforum\",\"sonarqube\",\"spree\",\"subversion\",\"suitecrm\",\"tensorflowserving\",\"testlink\",\"tikiwikicmsgroupware\",\"tinytinyrss\",\"tom-cat\",\"trac\",\"typo3\",\"weblate\",\"webmailpro\",\"wildfly\",\"wordpress\",\"wordpress-multisite\",\"wordpresspro\",\"x2enginesalescrm\",\"xoops\",\"youtrack\",\"zookeeper\",\"zurmo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"black-duck-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blackduck_hub_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blk-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blk-io-erc-20-rest-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"strato-blockchain-base-template-latest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockstack-core-v14\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"blockchain-foundry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syscoin-api\",\"syscoin-full-node\",\"syscoin-price-peg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bloombase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bloombase-storesafe-3_4_7_0_el7_x86_64\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluecat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluecat-bam-for-azure\",\"bluecat-dns-for-azure\",\"bluecat-edge-service-point-vm-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bluetalon\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bluetalon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"brocade_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"brocade-virtual-traffic-manager\",\"brocade-virtual-traffic-manager-with-waf-module\",\"brocade-virtual-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"bt-americas-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"diamondip-sapphire-ev10\",\"diamondip-sapphire-ev20\",\"diamondip-sapphire-v10\",\"diamondip-sapphire-v20\",\"diamondip-sapphire-v5\",\"diamondip-sapphire-vcaa20\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"buddhalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sles_12_pci\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"carto\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cartobuilder2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cask\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cdap-cloud-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Canonical\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"UbuntuServer\",\"Ubuntu_Core\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cavirin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cavirin-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cautelalabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"log_management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"celum-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"celumdam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cds\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cds-data-migration-solution-for-legacy-to-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"center-for-internet-security-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cis-centos-6-v2-0-2-l1\",\"cis-centos-7-v2-1-1-l1\",\"cis-oracle-linux-6-v1-0-0-l1\",\"cis-oracle-linux-7-v2-0-0-l1\",\"cis-rhel-6-v2-0-2-l1\",\"cis-rhel-7-v2-2-0-l1\",\"cis-suse-linux-11-v2-0-0-l1\",\"cis-suse-linux-12-v2-0-0-l1\",\"cis-ubuntu-linux-1404-v2-0-0-l1\",\"cis-ubuntu-linux-1604-v1-0-0-l1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"certivox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sso-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cfd-direct\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cfd-direct-from-the-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chain-core-developer-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"checkpoint\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"check-point-r77-10\",\"check-point-vsec-r80\",\"check-point-vsec-r80-blink\",\"sg2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"chef-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"chef-automate-vm-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"circleci\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"circleci-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cires21\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c21l-enc\",\"c21l-mos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cisco\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cisco-asav\",\"cisco-csr-1000v\",\"cisco-ftdv\",\"cisco-meraki-vmx100\",\"cisco-ngfwv-vm-test-unsupported\",\"cisco_cloud_vedge_17_2_4\",\"cos65\",\"cos72\",\"cos72_main_dev\",\"uos14\",\"vwaas-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"citrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"citrix-sd-wan-opt\",\"netscaler-ma-service-agent-120\",\"netscaler-ma-service-agent-121\",\"netscaler-sd-wan\",\"netscaler-vpx\",\"netscalervpx-120\",\"netscalervpx-121\",\"netscalervpx110-6531\",\"netscalervpx111\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clear-linux-project\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clear-linux-os\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clouber\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cuber\",\"cws\",\"mcenter\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-cruiser\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-cruiser-16\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jenkins-enterprise\",\"jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbees-enterprise-jenkins\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbees-jenkins-enterprise\",\"cloudbees-jenkins-operations-center\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudbolt-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbolt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudboost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudboost\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudenablers-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corestack\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloud-infrastructure-services\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"squid-proxy\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudera-altus-centos-os\",\"cloudera-centos-6\",\"cloudera-centos-os\",\"test-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlanes\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-video-accelerator-nfs\",\"cloudlanes-cloud-backup-accelerator-vtl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudlink\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudlink-securevm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudplan-gmbh\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudplan_pcn_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"paladion_ondemand_nextgen_firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cloudsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudsoft-amp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"clustrix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"clustrixdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codelathe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codelathe-filecloud-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"codenvy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"codenvy-on-prem\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cognosys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"1-click-secured-joomla-on-centos-7-3\",\"1-click-secured-joomla-on-ubuntu-1404-lts\",\"1-click-secured-joomla-on-ubuntu-1604-lts\",\"1-click-secured-joomla-on-ubuntu-1804-lts\",\"centos-6-9\",\"centos-7-3\",\"centos-7-4\",\"centos-7-5\",\"deploy-a-secured-modx-on-ubuntu-14-04-lts\",\"deploy-a-secured-silverstripe-on-ubuntu-14-04-lts\",\"hardened-mysql-5-6-on-centos-7-3\",\"hardened-mysql-5-6-on-ubu-1404-lts\",\"hardened-mysql-5-7-on-centos-7-3\",\"hardened-mysql-5-7-on-ubu-1404-lts\",\"hardened-postgresql-on-ubu-1404-lts\",\"invoice-ninja-2-5-1-1-on-ubuntu-1404\",\"jruby-on-ubuntu-14-04-lts\",\"low-latency-broadcasting-server-for-live-events\",\"owncloud-9-with-lamp-stack-on-ubuntu-1404\",\"piwigogallerys-ubuntu_14-04_lts\",\"sec1011-dokuwiki-on-ubuntu-1404\",\"sec1013-elasticsearch-on-ubuntu-1404\",\"sec1014-opencart-on-ubuntu-1404\",\"sec1015-orangehrm-on-ubuntu-1404\",\"sec1016-nodejs-server-on-ubuntu-1404\",\"sec1018-haproxy-on-ubuntu-1404\",\"sec1019-secured-tomcat-on-ubuntu-1404\",\"sec1020-phpbb-on-hardened-ubuntu-1404\",\"sec1021-mybb-on-hardened-ubuntu-1404\",\"sec1022-sugarcrm-on-ubuntu-1404\",\"sec1023-moodle-on-ubuntu-1404\",\"sec1024_magento-on-ubuntu-1404\",\"sec1025-secured-drupal-on-ubuntu-1404\",\"sec1027-secured-wordpress-on-ubuntu-1404\",\"sec1028-secured-lamp-sever-on-ubuntu-1404\",\"sec1029-secured-mediawiki-on-ubuntu-1404\",\"sec1030-secured-subversion-on-ubuntu-1404\",\"sec1031-secured-passenger-nginx-on-ubuntu-1404\",\"sec1033-secured-piwik-on-ubuntu-1404\",\"sec1034-secured-pligg-on-ubuntu-1404\",\"sec1035-secured-jenkins-on-ubuntu-1404\",\"sec1036-secured-postgresql-on-ubuntu-1404\",\"secure-cloud-lamp-ubuntu-1404\",\"secured-abantecart-on-centos\",\"secured-abantecart-on-ubuntu-14-04-lts\",\"secured-acquia-drupal-on-centos\",\"secured-acquiadurpal-on-ubuntu-14-04-lts\",\"secured-apachesolr-on-centos\",\"secured-apachesolr-on-ubuntu-14-04-lts\",\"secured-arartifactory-on-centos\",\"secured-artifactory-on-ubuntu-14-04-lts\",\"secured-cakephp-on-centos\",\"secured-cakephp-on-ubuntu-14-04-lts\",\"secured-cms-made-simple-on-centos\",\"secured-cms-made-simple-on-ubuntu-14-04-lts\",\"secured-codiad-on-centos\",\"secured-codiad-on-ubuntu-14-04-lts\",\"secured-cogdam-on-centos\",\"secured-cogdam-on-ubuntu-14-04-lts\",\"secured-concrete5-on-centos\",\"secured-concrete5-on-ubuntu-14-04-lts\",\"secured-coppermine-on-centos\",\"secured-coppermine-on-ubuntu-14-04-lts\",\"secured-crushftp-on-centos\",\"secured-crushftp-on-ubuntu-14-04-lts\",\"secured-django-on-centos\",\"secured-django-on-ubuntu-14-04-lts\",\"secured-dokuwiki-on-centos\",\"secured-dolibarr-on-centos\",\"secured-dolivbarr-on-ubuntu-14-04-lts\",\"secured-drupal-on-centos\",\"secured-elasticsearch-on-centos\",\"secured-enterprise-nginx-varnish-haproxy-php\",\"secured-espocrm-on-centos\",\"secured-espocrm-on-ubuntu-14-04-lts\",\"secured-exoplatform-on-centos\",\"secured-exoplatform-on-ubuntu-14-04-lts\",\"secured-ghost-on-centos\",\"secured-ghost-on-ubuntu-14-04-lts\",\"secured-gradle-on-centos\",\"secured-gradle-on-ubuntu-14-04-lts\",\"secured-haproxy-on-centos\",\"secured-invoice-ninja-on-centos\",\"secured-jboss-as-on-centos\",\"secured-jbossas-on-ubuntu-14-04-lts\",\"secured-jenkins-on-centos\",\"secured-jruby-on-cento\",\"secured-lamp-on-centos\",\"secured-lamp-on-centos-m10\",\"secured-lapp-on-centos\",\"secured-lapp-on-ubuntu-14-04-lts\",\"secured-lemp-sever-on-ubuntu-1404\",\"secured-lime-survey-on-centos\",\"secured-limesurvey-on-ubuntu-1404\",\"secured-live-helper-chat-on-centos\",\"secured-livehelperchat-on-ubuntu-14-04-lts\",\"secured-magento-on-centos\",\"secured-mahara-on-centos\",\"secured-mahara-on-ubuntu-14-04-lts\",\"secured-mantis-on-centos\",\"secured-mantis-on-ubuntu-14-04-lts\",\"secured-mariadb-on-ubuntu-16-04\",\"secured-mautic-on-centos\",\"secured-mautic-on-ubuntu-14-04-lts\",\"secured-media-wiki-on-centos\",\"secured-modx-on-centos\",\"secured-moodle-on-centos\",\"secured-ngnix-on-centos-7-3\",\"secured-ngnix-on-ubuntu-14-04-lts\",\"secured-ngnix-on-ubuntu-16-04-lts\",\"secured-noalyss-on-centos\",\"secured-noalyss-on-ubuntu-14-04-lts\",\"secured-nodejs-on-centos\",\"secured-occlass-on-ubuntu-14-04-lts\",\"secured-ocportal-on-ubuntu-14-04-lts\",\"secured-open-cart-on-centos\",\"secured-orangehrm-on-centos\",\"secured-osclass-on-centos\",\"secured-owncloud-on-centos\",\"secured-oxid-eshop-on-centos\",\"secured-oxideshop-on-ubuntu-14-04-lts\",\"secured-passenger-nginx-on-centos\",\"secured-piwigo-gallery-on-centos\",\"secured-plone-on-centos\",\"secured-plone-on-ubuntu-14-04-lts\",\"secured-prestashop-on-centos\",\"secured-prestashop-on-ubuntu-14-04-lts\",\"secured-railo-on-ubuntu-14-04-lts\",\"secured-redis-on-centos\",\"secured-redis-on-ubuntu-1404\",\"secured-redmine-on-centos\",\"secured-redmine-on-ubuntu-14-04-lts\",\"secured-redmineagile-on-ubuntu-14-04-lts\",\"secured-report-server-on-centos\",\"secured-reportserverent-on-ubuntu-14-04-lts\",\"secured-resource-space-on-centos\",\"secured-resourcespace-on-ubuntu-14-04-lts\",\"secured-round-cube-on-centos\",\"secured-roundcube-on-ubuntu-14-04-lts\",\"secured-ruby-on-centos\",\"secured-ruby-on-ubuntu-14-04-lts\",\"secured-seopanel-on-centos\",\"secured-seopanel-on-ubuntu-14-04-lts\",\"secured-silverstripe-on-centos\",\"secured-simple-invoice-on-centos\",\"secured-simple-machines-on-centos\",\"secured-simple-machines-on-ubuntu-14-04-lts\",\"secured-simpleinvoice-on-ubuntu-14-04-lts\",\"secured-subversion-on-centos\",\"secured-suitecrm-on-centos\",\"secured-suitecrm-on-ubuntu-14-04-lts\",\"secured-test-link-on-centos\",\"secured-testlink-on-ubuntu-14-04-lts\",\"secured-thinkup-on-centos\",\"secured-thinkup-on-ubuntu-14-04-lts\",\"secured-tikiwikicms-on-centos\",\"secured-tikiwikicms-on-ubuntu-14-04-lts\",\"secured-tiny-tiny-rss-on-centos\",\"secured-tinytinyrss-on-ubuntu-14-04-lts\",\"secured-tomcat-on-centos\",\"secured-trac-on-centos\",\"secured-trac-on-ubuntu-14-04-lts\",\"secured-typo3-on-centos\",\"secured-typo3-on-ubuntu-14-04-lts\",\"secured-varnish-on-centos\",\"secured-varnish-on-ubuntu-1404\",\"secured-wildfly-on-centos\",\"secured-wildfly-on-ubuntu-14-04-lts\",\"secured-wordpress-on-centos-7-3\",\"secured-wordpress-on-ubuntu-16-04-lts\",\"secured-x-cart-on-ubuntu-14-04-lts\",\"secured-xoops-on-centos\",\"secured-xoops-on-ubuntu-14-04-lts\",\"secured-zurmo-on-centos\",\"secured-zurmo-on-ubuntu-14-04-lts\",\"suse15\",\"ubuntu-14-04-lts\",\"ubuntu-16-04-lts\",\"ubuntu-17-04-high-performance-hardened-tcp-bbr\",\"ubuntu-18-04\",\"ubuntu-18-04-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cohesity-cloudtd-tool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cohesive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vns3_4x_network_security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"confluentinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"confluentplatform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"consensys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"truffle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"convertigo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"convertigo-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"corda\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"corda\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"CoreOS\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CoreOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"couchbase\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"couchbase-server-enterprise\",\"couchbase-sync-gateway-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"credativ\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Debian\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cryptzone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgate-appliance-3_2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cybernetica-as\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"uxp-securityserver-connector\",\"uxp-securityserver_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"cyxtera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appgatesdp-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataart\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"devicehive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"databricks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spfqogzeculbhdh\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datalayer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datalayer-notebook\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datastax\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datastax-enterprise\",\"datastax-enterprise-non-production-use-only\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datasunrise\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"datasunrise-database-security-suite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dataiku\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dataiku-data-science-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"datometry\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyper-q\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dellemc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dell-emc-avamar-virtual-edition\",\"dell-emc-datadomain-management-center\",\"dell-emc-datadomain-virtual-edition\",\"dell-emc-datadomain-virtual-edition-v4\",\"dell-emc-networker-virtual-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"delphix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"delphix_dynamic_data_platform\",\"omniosce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denodo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denodo-platform\",\"denodo-platform-7_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"denyall\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"denyall-rweb\",\"denyall-vulnerability-manager\",\"denyall-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dgsecure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dgsecure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"diladele\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"websafety\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dimensionalmechanics-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neopulse-ai-studio\",\"neopulse-query-runtime\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"docker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"docker-ce\",\"docker-ce-edge\",\"docker-datacenter-custom\",\"docker-ee\",\"docker-ee-basic\",\"docker4azure\",\"docker4azure-cs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dome9\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dome9ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drizti\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpcbox-ansys-19-cluster-master\",\"hpcbox-cluster-compute-node\",\"hpcbox-cluster-cuda-node\",\"hpcbox-cluster-gpu-node\",\"hpcbox-docker-cluster-master\",\"hpcbox-openfoam-cluster-master\",\"hpcbox-su2-cluster-master\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"drone\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"drone\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dyadic_security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dyadic_sec\",\"ukc_image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"dynatrace\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ruxit-managed-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"eastwind-networks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"eastwind-ixia-sensor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"egnyte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"egnyte-connect\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elasticbox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"elasticbox-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"electric-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"electricflowce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"elfiqnetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"emercoin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"emercoin\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprise-ethereum-alliance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quorum-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"enterprisedb-corp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"edb-postgres-ark\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"equalum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"equalum-vm-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"esdenera\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"esdenera-firewall-3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ethereum\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereum-studio\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"evostream-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ems-for-template\",\"ems-test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"exasol\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"exasol-analytics-database-byol\",\"exasolution-analytic-database\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"falconstorsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fss-v9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"f5-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"f5-big-ip-adc\",\"f5-big-ip-advanced-waf\",\"f5-big-ip-best\",\"f5-big-ip-better\",\"f5-big-ip-byol\",\"f5-big-ip-good\",\"f5-big-ip-per-app-ve\",\"f5-big-iq\",\"f5-web-application-firewall\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"filecatalyst\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"filecatalyst-direct-per-hr-billing\",\"filecatalyst-direct-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"firehost\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"firehost_armor\",\"firehost_armor_ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flexify-io\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"flashgrid-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"flashgrid-racnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"foghorn-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"foghorn-edge-device-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forcepoint-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forcepoint-ngfw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"forscene\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"forscene-edgeserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortycloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortycloud-gw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fortinet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fortinet-fortianalyzer\",\"fortinet-fortimanager\",\"fortinet_fortigate-vm_v5\",\"fortinet_fortimail\",\"fortinet_fortivoice\",\"fortinet_fortiweb-vm_v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"fujitsu_fast\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fep10-rh7-test\",\"feptest\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gemalto-safenet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"safenet-keysecure-k170v\",\"safenet-protectv\",\"safenet-protectv-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gigamon-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gigamon-fm-5_3_01\",\"gigamon-fm-5_3_01_hourly\",\"gigamon-fm-5_4_00\",\"gigamon-fm-5_4_00_hourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gitlab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-ce\",\"gitlab-ee\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"GitHub\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"GitHub-Enterprise\",\"githubenterprise-test-publishing\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"great-software-laboratory-private-limited\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"xid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"greensql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"greensql-database-security\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"gridgain\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gridgain-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"guardicore\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"guardicorecentra\",\"infection_monkey\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"haivision-media-gateway-1-2\",\"haivision-media-gateway-1-5\",\"haivision-media-gateway-1-6-2\",\"media-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"h2o-ai\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"h2o-driverles-ai\",\"h2o-driverless-ai\",\"h2o-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"haproxy-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hapee-rhel\",\"hapee-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"harpaitalia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mcuboenergy\",\"yg\",\"yougreen_trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hcl-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hcl17cp1104\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"heimdall-data\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"heimdall-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"help-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"goanywheremftubuntulinux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hewlett-packard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hpe-helion-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hillstone-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudedge-virtual-ngfw-advanced-edition\",\"cloudedge-virtual-ngfw-standard-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hortonworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudbreak-for-hortonworks-data-platform\",\"hortonworks-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hitachi-solutions\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"credeon-sfs-and-kms-for-sharepoint-online\",\"credeonsecurefull-textsearch1_0\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storeoncevsa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"huawei\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"euleros-v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hyperglance\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperglance-dynamic-topology\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hypergrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hyperform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"hytrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hytrust-keycontrol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ibm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-security-guardium-multi-cloud\",\"qradar_security_analytics\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iaansys\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iaansys-magento\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iboss\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iboss-14600-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imaginecommunications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudxtream-cdvr\",\"cloudxtream-dai-vms\",\"telurio-aim\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"imperva\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"imperva-dam-v13\",\"securesphere-waf\",\"securesphere-waf-for-azr\",\"securesphere-waf-v12\",\"securesphere-waf-v13\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"infoblox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"infoblox-vnios-te-v1420\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informatica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bdm10-1-1-u2\",\"big-data-management-10-2\",\"big-data-management-10-2-1\",\"data_accelerator_for_azure_byol\",\"data_quality_10_1_1_rhel_7_3_byol\",\"eic\",\"ics-byol\",\"ics-payg-ubuntu\",\"platform_10_1_1_multi_node_domain_rhel-7-3_byol\",\"platform_10_2_hf1_domain_rhel-7-3_byol\",\"powercenter-v10-domain-image-ubuntu14-04-3\",\"powercenter-v10-update1-domain-image-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"informationbuilders\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"iway-big-data-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ingrammicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ingrammicroensimcentostrial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"lustre-cloud-edition-gs-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-bigdl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bigdl-0815\",\"bigdl__vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intel-fpga\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quartus_pro_opencl_sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intellicus-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intellicus_bi_server_100_user_linux\",\"intellicus_bi_server_10_user_linux\",\"intellicus_bi_server_25_user_linux\",\"intellicus_bi_server_50_user_linux\",\"intellicus_bi_server_5_user_linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intersystems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intersystems-iris-single-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"intigua\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"intigua-agent-manager-3_7_0-trial\",\"intigua-agent-manager-trial\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"iquest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"keyhub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ishlangu-load-balancer-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ishlangu-load-balancer-byol\",\"ishlangu-load-balancer-is10\",\"ishlangu-load-balancer-is100\",\"ishlangu-load-balancer-is1000\",\"ishlangu-load-balancer-is200\",\"ishlangu-load-balancer-is5000\",\"ishlangu-load-balancer-isbfg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"issp-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ispocr\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"itelios\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento2-on-zendserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jamcracker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"4632d5b4-feb0-4332-8452-f2e66133672f\",\"jamcracker-cloudanalytics\",\"jamcracker-cloudanalytics-version4\",\"jamcracker-cloudanalytics-version5\",\"jamcracker-csb-service-provider\",\"jamcracker-csb-serviceprovider\",\"jamcracker-csb-standard\",\"jamcracker-csb-standard-v3\",\"jamcracker-csb-standard-version4\",\"jamcracker-hybrid-cloud-management-version4\",\"jamcracker_cloud_control_appliance_version4\",\"jsdnapp_csb_serviceprovider-version4\",\"jsdnapp_hybrid\",\"jsdnapp_hybrid_v3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jedox\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jedox-for-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jelastic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jelastic-hybrid-paas-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dvwa\",\"jetnexus-application-load-balancer\",\"jetnexus-global-load-balancer\",\"jetnexus-waf\",\"zap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jetware-srl\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"caffe2\",\"caffe_python_cpu\",\"caffe_python_gpu\",\"cockroachdb\",\"lamp_optimized\",\"lemp7_optimized\",\"memcached\",\"mongodb\",\"mxnet_python\",\"mysql\",\"nodejs_nginx\",\"percona_mongodb\",\"percona_mysql\",\"postgresql\",\"pytorch\",\"pytorch_cuda_notebook\",\"pytorch_cuda_production\",\"redis\",\"redmine\",\"tensorflow_cpu_notebook\",\"tensorflow_cpu_production\",\"tensorflow_cuda_notebook\",\"tensorflow_cuda_production\",\"tensorflow_python\",\"theano_python\",\"wordpress4_lemp7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jitterbit_integration\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"jitterbit-harmony-agent\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"jm-technology-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"smart-gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"juniper-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vmx-services-gateway-byol\",\"vmx-services-gateway-byol-soltemp\",\"vmx-virtual-router\",\"vsrx-next-generation-firewall\",\"vsrx-next-generation-firewall-payg\",\"vsrx-next-generation-firewall-solution-templ-payg\",\"vsrx-next-generation-firewall-solution-template\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaazing\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaazing-kwic\",\"kaazing-vpa\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kali-linux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kali-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kemptech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kemp360central-byol\",\"vlm-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kinetica\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kineticadbbyol\",\"kineticadbpayasyougo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"kaspersky_lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kaspersky_secure_mail_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"knime\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"knime-server-5-user_4-4-0\",\"knime-server-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"krypc-technologies-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"krypccore\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leap-orbit\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"leaporbitstoragebackedsftp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"leostream-corporation\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"connection-broker\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquid-files\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"liquidfiles\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"liquidware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stratusphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"literatu\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"literatu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"loadbalancer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"loadbalancer-org-load-balancer-for-azure\",\"loadbalancer-org-load-balancer-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logsign\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logsignfocus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"logtrust\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"logtrust-log-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"looker\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"looker-analytics-platform\",\"looker-analytics-platform-326\",\"looker-analytics-platform-5_6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"lti-lt-infotech\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"trade-finance-blockchain\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"luminate-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"luminate-connector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mapr-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mapr52-base-dev\",\"mapr60-base\",\"mapr60-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mariadb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mariadb-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"marklogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"marklogic-9-byol\",\"marklogic-developer-9\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"massiveanalytic-\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"oscarap\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mathworks-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matlab-ref-arch-18a-v1-linux-disk\",\"mps-ref-arch-18a-v1-linux-disk2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"matillion\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"matillion-etl-snowflake\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mavinglobal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mavin-business-trial\",\"mavin-enterprise-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"meanio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"gitlab-enterprise-ready\",\"linnovate-open-source-sla-pro\",\"mean-machine-20\",\"openideal3\",\"redash\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"media3-technologies-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cpan1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"memsql\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"memsql-community-single-vm\",\"memsql-enterprise-single-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mendix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mendix-docker\",\"mendix-pro\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mfe_azure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"atd-mcafee\",\"mcafee_vnsp_controller_for_azure\",\"mcafee_vnsp_for_azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-ads\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"linux-data-science-vm\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-aks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aks\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"micro-focus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-avere\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vfxt\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-batch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos-container\",\"centos-container-rdma\",\"ubuntu-server-container\",\"ubuntu-server-container-rdma\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-azure-compute\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureconfidentialcompute\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"microsoft-dsvm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azureml\",\"linux-data-science-vm-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftAzureSiteRecovery\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ASR-Hydration-VMs\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftOSTC\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"FreeBSD\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftRServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"MLServer-CentOS\",\"MLServer-RedHat\",\"MLServer-Ubuntu\",\"RServer-CentOS\",\"RServer-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mf_neon_cgw\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"midvision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ibm-datapower-virtual-edition-75\",\"ibm-datapower-virtual-edition-76\",\"ibm-datapower-virtual-edition-77\",\"ibm-http-server\",\"ibm-websphere-portal-server-85\",\"ibm-websphere-portal-server-90\",\"websphere-application-server-be\",\"websphere-application-server-be-80\",\"websphere-application-server-be-85\",\"websphere-application-server-be-90\",\"websphere-application-server-be-and-mq\",\"websphere-application-server-lp\",\"websphere-application-server-lp-16\",\"websphere-application-server-lp-17\",\"websphere-application-server-lp-18\",\"websphere-application-server-nde\",\"websphere-application-server-nde-80\",\"websphere-application-server-nde-85\",\"websphere-application-server-nde-90\",\"websphere-mq\",\"websphere-mq-75\",\"websphere-mq-90\",\"websphere-mq-91\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miraclelinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"asianux-server-4-sp5\",\"asianux-server-4-sp6\",\"asianux-server-4-sp7\",\"asianux-server-7-sp1\",\"asianux-server-7-sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"miri-infotech-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mobilab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"magento-wirecard-checkout\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moogsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moogsoft-aiops\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"moviemasher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"moviemasher\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftSQLServer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"SQL2017-RHEL7\",\"SQL2017-RHEL73\",\"SQL2017-SLES12SP2\",\"SQL2017-Ubuntu1604\",\"SQL2019-RHEL7\",\"SQL2019-Ubuntu1604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mtnfog\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"idyl-e3-entity-extraction-engine\",\"prose-sentence-extraction-engine\",\"renku-language-detection-engine\",\"sonnet-tokenization-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"mxhero\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mail2cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"my-com\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tarantool\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"narrativescience\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"narratives-for-power-bi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nasuni\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nasuni-nmc\",\"nasuni_edge_appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ncbi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ncbi-blast-2-3-0\",\"ncbi-free-2-2-31\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nebbiolo-technologies-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fog-system-manager\",\"fogsm_basic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neo4j\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neo4j-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netapp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netapp-altavault-cloud-integrated-storage-solution\",\"netapp-oncommand-cloud-manager\",\"netapp-ontap-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netgate\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netgate-pfsense-azure-fw-vpn-router\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netiq\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"replication_environment\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netscout\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netscout_virtual_ngeniusone_with_vscout\",\"netscout_vstream\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netmail\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netmail-search\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netsweeper\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netsweeper6-0-6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"netx\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simplehelp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"neusoft-neteye\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"neusoft-nisg-va-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nginxinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nginx-plus-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nicepeopleatwork\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"youzana\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nodejsapi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"node-js-api\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"noobaa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"noobaa-hybrid-s3-archive-05\",\"noobaa-multi-cloud-deduplication\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"northbridge-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netconnect1\",\"netconnectx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nubeva-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"controller\",\"test\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuco-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"aionnode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nuxeo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nuxeo-6-lts\",\"nuxeo-lts\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"nvidia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ngc_azure_17_11\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"o2mc-real-time-data-platform\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"o2mc-platform-app\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"oceanblue-cloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"obc-sdwan-solutions\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"omega-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ods_datastage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onyx-point-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op-bnf-v1\",\"op-bnf1_6-v1\",\"op-bpnifi-v1\",\"op-bpnifi16-v1\",\"op-scc-v1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"onapsis\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"op5\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"op5-monitor\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"opencell\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"meveo\",\"meveo403sp2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"OpenLogic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"CentOS\",\"CentOS-CI\",\"CentOS-HPC\",\"CentOS-LVM\",\"CentOS-SRIOV\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"openvpn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openvpnas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"Oracle\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"Oracle-Database-Ee\",\"Oracle-Database-Se\",\"Oracle-Linux\",\"Oracle-WebLogic-Server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"orientdb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"orientdb-community-edition\",\"orientdb-community-edition-2_2\",\"orientdb-enterprise-edition-2_2\",\"orientdb-enterprise-edition-2_2_17\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osirium-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osirium-pxm-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"osnexus\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quantastorvsav4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"paloaltonetworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"panorama\",\"vmseries1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"panzura-file-system\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"azura-freedom-filer-v7110\",\"panzura-cloud-filer\",\"panzura-freedom-filer-7140-13222\",\"panzura-freedom-filer-716-13549\",\"panzura-freedom-filer-v7020\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"parasoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"parasoft-service-virtualization\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"passlogy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"passlogic\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"penta-security-systems-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wapples\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"percona\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"percona-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"postgres-pro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"postgres-pro-enterprise\",\"postgres-pro-enterprise-10\",\"postgres-pro-standard\",\"postgres-pro-standard-10\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"plesk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"plesk-onyx-linux\",\"solution-server-business\",\"solution-server-wordpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prestashop\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"prestashop16-lamp\",\"ubuntu-base-for-prestashop\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"prime-strategy\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"kusanagi-77\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pivotal\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pivotal-gpdb-vm\",\"pivotal-greenplum-images\",\"pivotal-ops-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"process-one\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ejabberd-community-edition\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"profecia\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"full_disk_encryption_vm\",\"project_tools_vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"progelspa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"libra-esva-antispam\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ptsecurity\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ptaf-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pulse-secure\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pulse-connect-secure-vm\",\"pulse-virtual-traffic-manager\",\"pulse-virtual-traffic-manager-with-waf\",\"pulse-virtual-traffic-manager-with-waf2\",\"pulse-virtual-traffic-manager2\",\"pulse-virtual-web-application-firewall\",\"pulse-virtual-web-application-firewall2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"PuppetLabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"PuppetEnterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"puppet\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"puppet-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"pydio\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pydio-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qore-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qorus\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qualysguard\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qualys-virtual-firewall-appliance\",\"qualys-virtual-scanner-v23b\",\"qualys-virtual-scanner-v24\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quasardb\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"quasardb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"qubole-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"qubole-data-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"quest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fve\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"racknap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"racknap-server\",\"racknap-server-linux\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radware-alteon-va\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"radiant-logic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"radiantone-vms\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rancher\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rancheros\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapid7\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nexpose-scan-engine\",\"rapid7-vm-console\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rapidminer\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rapidminer_server_75\",\"rapidminer_server_76\",\"rapidminer_server_80\",\"rapidminer_server_81\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"realm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"realm-mobile-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"reblaze\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rbzr-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RedHat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osa\",\"RHEL\",\"rhel-byos\",\"rhel-ocp-marketplace\",\"RHEL-SAP\",\"RHEL-SAP-APPS\",\"RHEL-SAP-HANA\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"relevance-lab\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rlcatalyst\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"remotelearner\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fully-supported-moodle\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"revolution-analytics\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"revolution-r-enterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RightScaleLinux\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"RightImage-CentOS\",\"RightImage-Ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"RiverbedTechnology\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"riverbed\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"riverbed-sccm-5-5-1\",\"riverbed-steelcentral-appinternals\",\"riverbed-steelhead-9-2\",\"riverbed-steelhead-9-5-0\",\"riverbed-steelhead-9-6-0\",\"riverbed_steelconnect_gw\",\"riverbed_steelconnect_sh\",\"steelapp_traffic_manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rocketsoftware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rocket-discover\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsa-security-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsa-nw-azure-arch\",\"rsa-nw-azure-broker\",\"rsa-nw-azure-con\",\"rsa-nw-azure-esa\",\"rsa-nw-azure-ldec\",\"rsa-nw-azure-vlc\",\"rsa-nw-suite-11\",\"rsa-nw-suite-11-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"rsk-labs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"rsk-bamboo-beta-node\",\"rsk-node-orchid\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saama\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"fluidanalyticsengine\",\"insurancefraudanalytics\",\"realworldevidence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"saltstack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos65saltstackenterprise\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalearc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalearc-for-mysql-paygo\",\"scalearc-for-sql-server-pay-go\",\"scalearc_mysql-server\",\"scalearc_sql_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scalegrid\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sap\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hanaexpress\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"scality\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scalityconnecthourly\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"secureworks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"scwx-azure-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"shadow-soft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"icinga\",\"icinga2-5\",\"icinga2-7\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"signal-sciences\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"signalscienceswpp\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sightapps\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sightapps\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"silver-peak-systems\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"silver_peak_edgeconnect\",\"silver_peak_vx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"simmachinesinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"simmachines_vm_v2\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sinefa\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sinefa-probe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"skyarc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"mt6\",\"mta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"smartmessage-autoflow\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"martmessage-autoflow\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"snapt-adc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snaptadc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soasta\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudtest-lite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"softnas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud_dev\",\"mp_ce\",\"mp_ent\",\"mp_nas_byol\",\"mp_nas_ep\",\"mp_nas_gp\",\"mp_nas_hp\",\"mp_plat\",\"private_offerings\",\"softnas-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solanolabs\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solano-ci-private-beta\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"soha\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"soha-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"solar-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"solar-incode\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sonicwall-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sonicwall-nsz-azure\",\"waf\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sophos\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"sophos-xg\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spagobi\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spagobi\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"spacecurve\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"spacecurve-quickstart\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"splunk\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"splunk-enterprise-base-image\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"src-solution\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"pilot-things-onem2m-smart-network\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sqlstream\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"com\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"sphere3d\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"snapcloud-byol\",\"snapcloud-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackato-platform-as-a-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"activestate-stackato\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stackstorm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stackstorm-2015-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"startekfingerprintmatch\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bioserver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"steelhive\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"steelhive_carbon\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stonefly\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stonefly-cloud-drive\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stormshield\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"stormshield-network-security-for-cloud\",\"stormshield-network-security-for-cloud-xl\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"storreduce\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"storreduce\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"stratumn\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"indigo-node\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"streamsets\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"streamsets-data-collector\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"striim\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"integrationforsqlserveronazure\",\"integrationtoazurestorage\",\"integrationtoeventhub\",\"integrationtohdinsight\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"SUSE\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"openSUSE-Leap\",\"SLES\",\"SLES-BYOS\",\"SLES-HPC\",\"SLES-HPC-Priority\",\"SLES-Priority\",\"SLES-SAP\",\"SLES-SAP-BYOS\",\"SLES-SAPCAL\",\"SLES-Standard\",\"SUSE-CaaSP-Admin-BYOS\",\"SUSE-CaaSP-Cluster-BYOS\",\"SUSE-Manager-Proxy-BYOS\",\"SUSE-Manager-Server-BYOS\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"symantectest1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cwpsazure-beta-01\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synack-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"synack-crowd-security-intelligence\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"synechron-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"blockchain_tradefinance_quorum\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"syte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"syteoffer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tactic\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tactic-workflow-v001\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talari-networks\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talari-networks-virtual-appliance\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"talena-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"talena_inc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tata_communications\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"netfoundry_cloud_gateway\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tavendo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"crossbar_on_azure_ubuntu1404\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techdivision\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"appserver-io-pe\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"techlatest\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ethereumdevkit\",\"rippledevelopersuit\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"telepat\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"free\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tenable\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tenable-nessus-6-byol\",\"tenable-nessus-professional\",\"tenablecorenessus\",\"tenablecorewas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"teradata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"teradata-data-mover\",\"teradata-data-mover-agent\",\"teradata-data-mover-intellisphere\",\"teradata-data-stream-controller\",\"teradata-database-1510\",\"teradata-database-1510-byol\",\"teradata-database-1510-intellisphere\",\"teradata-database-1510-v2\",\"teradata-database-1610-intellisphere\",\"teradata-database-1610-v2\",\"teradata-database-1620\",\"teradata-database-1620-byol\",\"teradata-database-1620-intellisphere\",\"teradata-database-enterprise\",\"teradata-database-v1610\",\"teradata-database-v1610-byol\",\"teradata-ecosystem-manager\",\"teradata-querygrid-manager\",\"teradata-querygrid-manager-intellisphere\",\"teradata-rest-services\",\"teradata-server-management\",\"teradata-viewpoint\",\"teradata-viewpoint-intellisphere\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thales-vormetric\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ciphertrust-ckm\",\"vormetric-dsm\",\"vormetric-dsm-6-1-0\",\"vormetric-tokenization-server\",\"vts-2_2_0_2604\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"things-board\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tb-pe-cassandra\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"thoughtspot-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"thoughtspotvirtualmachine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tibco-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"grid-server-engine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tig\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"backup-as-a-service\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tigergraph\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tigergraph\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tmaxsoft\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tmax-jeusee\",\"tmax-jeusse\",\"tmax-webtobse\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tokyosystemhouse\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"osscobol151j-pg961-centos72\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"torusware\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"speedus-lite-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"totemo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"totemo-azr-tm6\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"townsend-security\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"alliance-key-manager\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"trendmicro\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"deep-security-vm\",\"deep-security-vm-byol\",\"iot-security-sdk\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"truestack\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"tsdc\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tsa-public-service\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ckan-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"tunnelbiz\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"centos70-min\",\"centos7optimizwithwordpress\",\"centos7phpoptimizing\",\"centos7phpoptimizingnginx\",\"centos7phpoptimizwlaravel\",\"centos7phpoptimizwosticket\",\"centos7webserverwithwaf\",\"centos7withaspdotnetcore2apache\",\"centos7withjoomla\",\"debian_web_server\",\"fedora\",\"fusio\",\"linuxwithlimesurvey\",\"networkmonitoringsystem\",\"rimauwaf_cloud\",\"ubuntu_server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"twistlock\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"twistlock\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"typesafe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"typesafe-reactive-maps-demo\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubeeko\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"hfactory-tools-for-hdinsight\",\"hfactory-tools-sandbox\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ubercloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ansys-17-2-fluids-structures\",\"ansys_182_test\",\"comsol-multiphysics-v5-2\",\"openfoam-v2dot3-centos-v6\",\"openfoam-v3dot0\",\"star-ccm-v10-04\",\"star-ccm-v10-06-heeds-mdo-v2015\",\"star-ccm-v12-00\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"ulex\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"voximal\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unifi-software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unifi-data-catalog\",\"unifi-dataplatform-2-3-3-vm\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"unitrends\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unitrends-enterprise-backup-azure\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"usp\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"unified-streaming-vod-standard\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"varnish\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"varnish-cache_\",\"varnish-custom-statistics\",\"varnish-plus-administration-and-statistics\",\"varnish-plus-caching-engine-4\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vaultive-inc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloud-security-platform\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vbot\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vbot\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"velocloud\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"velocloud-virtual-edge\",\"velocloud-virtual-edge-3x\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vidispine\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vidispine-content-management\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veritas\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"cloudpoint-2-0-0\",\"veritas-resiliency-platform-vhd-offer\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"veeam\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"veeamhubimage\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vigyanlabs-innovations-pvt-ltd\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ipm-plus-energy-saver\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"viptela\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"viptela-vedge-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vizixiotplatformretail001\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vizix-iot-platform-retail-005\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vmturbo\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"turbonomic\",\"vmturbo64-opsmgr-5_3\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vte\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"slashdb\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"vu-llc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vu-app-server\",\"vu-facerecogn\",\"vu-fraudanalysis\",\"vu-secureonboarding\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallarm\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallarm-ng-waf-offer-1\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wallix\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wallix-wabsuite\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"watchguard-technologies\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"vm-firebox-cloud\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"waves\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"waves\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"websense-apmailpe\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"ap-data-email-gateway\",\"forcepoint-email-security-85beta\",\"triton-ap-data\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wmspanel\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"nimble-streamer-centos\",\"nimble-streamer-ubuntu\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"wowza\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"wowzastreamingengine\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xfinityinc\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"d3view-v5\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xtremedata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"dbx\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"yellowfin\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"yellowfin-for-azure-byol\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"xyzrd-group-ou\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"c73-zultys-mxvirtual\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"your-shop-online\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"herefordshire-enterprise-platform-drupal-7\",\"xenofile\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zend\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"php-56-zend-server\",\"php-zend-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"z1\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"z1-securehub\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zerodown_software\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"bcaasforazure\",\"stackbcaas\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zoomdata\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zoomdata-server\"]}]},{\"allOf\":[{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"zscaler\"},{\"field\":\"Microsoft.Compute/imageOffer\",\"in\":[\"zscaler-private-access\"]}]}]}]},\"then\":{\"effect\":\"audit\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/d974fab8daefe230\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"d974fab8daefe230\"},{\"properties\":{\"displayName\":\"geneva monitoring extension and azsecpack autoupdate policy for vmss_2.0\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-12T00:29:56.9604539Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Compute/virtualMachineScaleSets\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"anyOf\":[{\"field\":\"Microsoft.Compute/VirtualMachineScaleSets/osProfile.windowsConfiguration\",\"exists\":\"true\"},{\"field\":\"Microsoft.Compute/imagePublisher\",\"equals\":\"MicrosoftWindowsServer\"}]}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"name\":\"Microsoft.Azure.Geneva.GenevaMonitoring\",\"existenceCondition\":{\"allOf\":[{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/type\",\"equals\":\"GenevaMonitoring\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/publisher\",\"equals\":\"Microsoft.Azure.Geneva\"},{\"field\":\"Microsoft.Compute/virtualMachineScaleSets/extensions/enableAutomaticUpgrade\",\"equals\":\"true\"}]},\"roleDefinitionIds\":[\"/providers/microsoft.authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"],\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vmssName\":{\"type\":\"string\"},\"location\":{\"type\":\"string\"}},\"resources\":[{\"apiVersion\":\"2018-10-01\",\"name\":\"[concat(parameters('vmssName'), '/Microsoft.Azure.Geneva.GenevaMonitoring')]\",\"type\":\"Microsoft.Compute/virtualMachineScaleSets/extensions\",\"location\":\"[parameters('location')]\",\"properties\":{\"publisher\":\"Microsoft.Azure.Geneva\",\"type\":\"GenevaMonitoring\",\"typeHandlerVersion\":\"2.0\",\"autoUpgradeMinorVersion\":true,\"enableAutomaticUpgrade\":true,\"settings\":{}}}]},\"parameters\":{\"vmssName\":{\"value\":\"[field('name')]\"},\"location\":{\"value\":\"[field('location')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/dac4e4f8ad529fe5\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"dac4e4f8ad529fe5\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-109_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:28:52.5486159Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e0bc08af3bd773ff\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e0bc08af3bd773ff\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-103_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:24.0068177Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e24b2791c9576d86\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e24b2791c9576d86\"},{\"properties\":{\"displayName\":\"sqlads-auditifnotexists-advanced data security should be enabled on your sql servers_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-06-10T02:12:35.0244464Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Exclusion Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the SQL Server\"}},\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"AuditIfNotExists\",\"Disabled\"],\"defaultValue\":\"AuditIfNotExists\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Sql/servers\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagname'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"value\":\"[subscription().tags[parameters('tagname')]]\",\"equals\":\"\"}]},\"then\":{\"effect\":\"[parameters('effect')]\",\"details\":{\"type\":\"Microsoft.Sql/servers/securityAlertPolicies\",\"name\":\"Default\",\"existenceCondition\":{\"field\":\"Microsoft.Sql/servers/securityAlertPolicies/state\",\"equals\":\"Enabled\"}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e3cff6e23ce4018a\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e3cff6e23ce4018a\"},{\"properties\":{\"displayName\":\"nrms-warning-non-c+ai-security-rules_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-04-01T22:23:58.9310187Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"priorities\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Rule Priority\",\"description\":\"List of Rule Priority Numbers reserved for Security\"}},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups/securityRules\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"In\":\"[parameters('priorities')]\"},{\"field\":\"location\",\"In\":\"[parameters('allowedLocations')]\"},{\"allOf\":[{\"not\":{\"field\":\"name\",\"contains\":\"Cleanuptool\"}},{\"not\":{\"field\":\"name\",\"contains\":\"NRMS-Rule-\"}}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e695de0794b757d\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e695de0794b757d\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-102_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:16.2005161Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/e788a85b5ac6ce0f\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"e788a85b5ac6ce0f\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-109_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:36.1193587Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/eb9b3ba85853f934\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eb9b3ba85853f934\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-104_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:24.2401173Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/eed6a81371f5e28b\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"eed6a81371f5e28b\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-107_1.1\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-08T19:20:24.6068273Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"}},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"}},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"Any\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/f0e3de3e84e21226\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f0e3de3e84e21226\"},{\"properties\":{\"displayName\":\"nrms-subnet-require-nsg_1.0\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-06-26T21:23:26.5935651Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"effect\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Effect\",\"description\":\"Enable or disable the execution of the policy\"},\"allowedValues\":[\"Audit\",\"Deny\",\"Disabled\"],\"defaultValue\":\"Audit\"},\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"anyOf\":[{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"not\":{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"notIn\":[\"null\",\"\"]}}]},{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/virtualNetworks/subnets\"},{\"field\":\"Microsoft.Network/virtualNetworks/subnets/networkSecurityGroup.id\",\"exists\":\"false\"}]}]}]},\"then\":{\"effect\":\"[parameters('effect')]\"}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/f828e370e4aad7e8\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"f828e370e4aad7e8\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-107_1.3\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2020-02-24T21:29:08.0100184Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags[parameters('tagname')]]\",\"equals\":\"\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['SkipNRMSAll']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotcluster']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotcluster']]\",\"equals\":\"\"},{\"field\":\"tags['autopilotenvironment']\",\"exists\":\"false\"},{\"value\":\"[resourceGroup().tags['autopilotenvironment']]\",\"equals\":\"\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/fb6de85c9e746cf1\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fb6de85c9e746cf1\"},{\"properties\":{\"displayName\":\"nrms-nsg-rule-108_1.2\",\"policyType\":\"Custom\",\"mode\":\"All\",\"metadata\":{\"createdBy\":\"1f75b9dd-4f1d-4e80-9521-321a8b1f5764\",\"createdOn\":\"2019-07-09T18:15:32.8982907Z\",\"updatedBy\":null,\"updatedOn\":null},\"parameters\":{\"allowedLocations\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Allowed locations\",\"description\":\"The list of locations that can be specified when deploying resources.\",\"strongType\":\"location\"}},\"ruleNo\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Priority\",\"description\":\"The priority slot for the new rule\"},\"allowedValues\":[\"100\",\"101\",\"102\",\"103\",\"104\",\"105\",\"106\",\"107\",\"108\",\"109\"]},\"info\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Description\",\"description\":\"A description\"},\"defaultValue\":\"\"},\"destinationPortRanges\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Port Number\",\"description\":\"Security rule port numbers must match these numbers\"}},\"subscriptionExclusions\":{\"type\":\"Array\",\"metadata\":{\"displayName\":\"Subscriptions Excluded\",\"description\":\"Subscriptions excluded from policy due to security exceptions\"},\"defaultValue\":[]},\"protocol\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"protocol\",\"description\":\"Protocol for the rule\"},\"allowedValues\":[\"*\",\"Tcp\",\"Udp\"]},\"sourceType\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceType\",\"description\":null},\"allowedValues\":[\"IP Addresses\",\"Service Tag\",\"App Security Group\"]},\"sourceValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"sourceValue\",\"description\":null}},\"actionValue\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"actionValue\",\"description\":null},\"allowedValues\":[\"Allow\",\"Deny\"]},\"direction\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"direction\",\"description\":null},\"allowedValues\":[\"Inbound\",\"Outbound\"]},\"tagname\":{\"type\":\"String\",\"metadata\":{\"displayName\":\"Tag Name\",\"description\":\"Rule is not deployed if this tag exists on the NSG\"},\"allowedValues\":[\"NA\",\"NRMSException\",\"SkipNRMSCorp\",\"nrmsskipcorpnetsaw\",\"SkipNRMSSAW\",\"SkipNRMSDatabricks\",\"SkipNRMSRDPSSH\",\"SkipNRMSMgmt\",\"SkipNRMSHigh\",\"SkipNRMSVNet\",\"SkipNRMSLoadBal\",\"SkipNRMSDB\",\"SkipNRMSMedium\"],\"defaultValue\":\"NA\"}},\"policyRule\":{\"if\":{\"allOf\":[{\"field\":\"type\",\"equals\":\"Microsoft.Network/networkSecurityGroups\"},{\"field\":\"location\",\"in\":\"[parameters('allowedLocations')]\"},{\"field\":\"[concat('tags[', parameters('tagName'), ']')]\",\"exists\":\"false\"},{\"field\":\"tags['SkipNRMSAll']\",\"exists\":\"false\"},{\"value\":\"[subscription().subscriptionId]\",\"notIn\":\"[parameters('subscriptionExclusions')]\"}]},\"then\":{\"effect\":\"deployIfNotExists\",\"details\":{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"roleDefinitionIds\":[\"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\"],\"existenceCondition\":{\"anyOf\":[{\"allOf\":[{\"field\":\"fullName\",\"equals\":\"[concat(field('name'),'/','NRMS-Rule-', parameters('ruleNo'))]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"[parameters('ruleno')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"equals\":\"[parameters('sourceValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"[parameters('actionValue')]\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"[parameters('direction')]\"}]},{\"allOf\":[{\"field\":\"fullName\",\"contains\":\"Cleanuptool-Deny-103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/priority\",\"equals\":\"103\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/sourceAddressPrefix\",\"in\":[\"Any\",\"*\"]},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/access\",\"equals\":\"Deny\"},{\"field\":\"Microsoft.Network/networkSecurityGroups/securityRules/direction\",\"equals\":\"Inbound\"}]}]},\"deployment\":{\"properties\":{\"mode\":\"incremental\",\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"fullName\":{\"type\":\"string\"},\"ruleNo\":{\"type\":\"String\"},\"destinationPortRanges\":{\"type\":\"Array\"},\"protocol\":{\"type\":\"String\"},\"sourceType\":{\"type\":\"String\"},\"sourceValue\":{\"type\":\"String\"},\"actionValue\":{\"type\":\"String\"},\"direction\":{\"type\":\"String\"},\"info\":{\"type\":\"String\"}},\"variables\":{\"SourceArr\":\"[split(parameters('sourceValue'),',')]\",\"appSecGroups\":{\"copy\":[{\"name\":\"values\",\"count\":\"[length(variables('SourceArr'))]\",\"input\":{\"id\":\"[if(equals(parameters('sourceType'),'App Security Group'),if(contains(variables('SourceArr')[copyindex('values')],'subscriptions'), variables('SourceArr')[copyindex('values')],resourceId('Microsoft.Network/applicationSecurityGroups', variables('SourceArr')[copyindex('values')])), '')]\"}}]}},\"resources\":[{\"type\":\"Microsoft.Network/networkSecurityGroups/securityRules\",\"name\":\"[concat(parameters('fullName'),'/','NRMS-Rule-', parameters('ruleNo'))]\",\"apiVersion\":\"2017-10-01\",\"scale\":null,\"properties\":{\"protocol\":\"[parameters('protocol')]\",\"description\":\"[parameters('info')]\",\"sourcePortRange\":\"*\",\"sourceAddressPrefix\":\"[if(equals(parameters('sourceType'),'Service Tag'),parameters('sourceValue'),json('null'))]\",\"sourceAddressPrefixes\":\"[if(equals(parameters('sourceType'),'IP Addresses'),variables('SourceArr'),json('null'))]\",\"sourceApplicationSecurityGroups\":\"[if(equals(parameters('sourceType'),'App Security Group'),variables('appSecGroups').values,json('null'))]\",\"destinationPortRanges\":\"[if (equals(1,length(parameters('destinationPortRanges'))), json('null'), parameters('destinationPortRanges'))]\",\"destinationPortRange\":\"[if (equals(1,length(parameters('destinationPortRanges'))), parameters('destinationPortRanges')[0], json('null'))]\",\"destinationAddressPrefix\":\"*\",\"destinationApplicationSecurityGroups\":[],\"access\":\"[parameters('actionValue')]\",\"priority\":\"[parameters('ruleNo')]\",\"direction\":\"[parameters('direction')]\"}}]},\"parameters\":{\"fullName\":{\"value\":\"[field('fullName')]\"},\"ruleNo\":{\"value\":\"[parameters('ruleNo')]\"},\"destinationPortRanges\":{\"value\":\"[parameters('destinationPortRanges')]\"},\"protocol\":{\"value\":\"[parameters('protocol')]\"},\"sourceType\":{\"value\":\"[parameters('sourceType')]\"},\"sourceValue\":{\"value\":\"[parameters('sourceValue')]\"},\"actionValue\":{\"value\":\"[parameters('actionValue')]\"},\"direction\":{\"value\":\"[parameters('direction')]\"},\"info\":{\"value\":\"[parameters('info')]\"}}}}}}}},\"id\":\"/providers/Microsoft.Management/managementgroups/48fed3a1-0814-4847-88ce-b766155f2792/providers/Microsoft.Authorization/policyDefinitions/fc84f507da5fe442\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"fc84f507da5fe442\"}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy5e873449?api-version=2019-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy47866b2?api-version=2019-09-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "7b2cd870-ba45-4d0b-9c80-3f4b8e1314ab", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:05 GMT", - "content-length" : "573", - "expires" : "-1", - "vary" : "Accept-Encoding", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "147372cd-964d-41eb-a3f8-512957c9ec1c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092405Z:147372cd-964d-41eb-a3f8-512957c9ec1c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "koreasouth:1f407f3a-dade-4876-a143-5f237658382e", - "Body" : "{\"properties\":{\"displayName\":\"mypolicy30923f\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:02.1425381Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy5e873449\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy5e873449\"}" - } + "Date" : "Tue, 11 Aug 2020 09:58:36 GMT", + "x-ms-correlation-request-id" : "c48f596a-8675-494c-9d84-690d6e99554a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095836Z:c48f596a-8675-494c-9d84-690d6e99554a", + "Vary" : "Accept-Encoding", + "Expires" : "-1", + "Content-Length" : "571", + "x-ms-request-id" : "southeastasia:ed25eeb3-41d9-4310-860f-193da714cc84", + "Body" : "{\"properties\":{\"displayName\":\"mypolicy26269c\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:58:33.8118731Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy47866b2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy47866b2\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy5e873449?api-version=2019-09-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy47866b2?api-version=2019-09-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4beb37ef-684c-44c1-9abc-c0af4935a4c6", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:06 GMT", - "content-length" : "573", - "expires" : "-1", "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "vary" : "Accept-Encoding", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6213b055-42cc-47a3-8bcf-f79353e2e7d6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092406Z:6213b055-42cc-47a3-8bcf-f79353e2e7d6", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "koreasouth:fcb73a16-dbc9-412e-90c8-4226baa54c6a", - "Body" : "{\"properties\":{\"displayName\":\"mypolicy30923f\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-07-27T09:24:02.1425381Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy5e873449\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy5e873449\"}" - } + "Date" : "Tue, 11 Aug 2020 09:58:36 GMT", + "x-ms-correlation-request-id" : "86791235-d6c2-4e5d-94db-895648930d72", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095836Z:86791235-d6c2-4e5d-94db-895648930d72", + "Vary" : "Accept-Encoding", + "Expires" : "-1", + "Content-Length" : "571", + "x-ms-request-id" : "southeastasia:edd7134c-34be-48e0-970f-2a1886ccefda", + "Body" : "{\"properties\":{\"displayName\":\"mypolicy26269c\",\"policyType\":\"Custom\",\"mode\":\"Indexed\",\"description\":\"This is my policy\",\"metadata\":{\"createdBy\":\"0c421105-9e6b-4a09-bcda-fa4ddd2e70da\",\"createdOn\":\"2020-08-11T09:58:33.8118731Z\",\"updatedBy\":null,\"updatedOn\":null},\"policyRule\":{\"if\":{\"not\":{\"field\":\"location\",\"in\":[\"southcentralus\",\"westeurope\"]}},\"then\":{\"effect\":\"deny\"}}},\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization/policyDefinitions/policy47866b2\",\"type\":\"Microsoft.Authorization/policyDefinitions\",\"name\":\"policy47866b2\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null } ], - "variables" : [ "policy5e873449", "mypolicy30923f" ] + "variables" : [ "policy47866b2", "mypolicy26269c" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCreateDeleteResourceSyncPoll.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCreateDeleteResourceSyncPoll.json index 86c4b656a01c..b2f8b2f53f77 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCreateDeleteResourceSyncPoll.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCreateDeleteResourceSyncPoll.json @@ -1,251 +1,268 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2a989906?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg755808b?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b9e1fa03-6ecd-4570-bb9e-9489de2cfffe", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:03 GMT", - "content-length" : "307", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "02f6e7e0-6b1e-46e8-99c9-75b3f902f459", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092404Z:02f6e7e0-6b1e-46e8-99c9-75b3f902f459", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "02f6e7e0-6b1e-46e8-99c9-75b3f902f459", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2a989906\",\"name\":\"rg2a989906\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-07-27T09:24:01.079859600Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:34 GMT", + "x-ms-correlation-request-id" : "aaae4bad-1023-499f-9add-0e374142edf4", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095835Z:aaae4bad-1023-499f-9add-0e374142edf4", + "Expires" : "-1", + "Content-Length" : "215", + "x-ms-request-id" : "aaae4bad-1023-499f-9add-0e374142edf4", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg755808b\",\"name\":\"rg755808b\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB2a989906?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB755808b?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6388e0ed-af45-4e85-bee0-d9ccc4be3477", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:05 GMT", - "content-length" : "317", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9244c3d2-e70d-48ef-9a53-e5b031df29c6", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092405Z:9244c3d2-e70d-48ef-9a53-e5b031df29c6", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9244c3d2-e70d-48ef-9a53-e5b031df29c6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB2a989906\",\"name\":\"rgB2a989906\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-27T09:24:04.899645900Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:36 GMT", + "x-ms-correlation-request-id" : "aa3322e5-7a62-4fcf-8488-398be0d8b7fb", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095837Z:aa3322e5-7a62-4fcf-8488-398be0d8b7fb", + "Expires" : "-1", + "Content-Length" : "225", + "x-ms-request-id" : "aa3322e5-7a62-4fcf-8488-398be0d8b7fb", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB755808b\",\"name\":\"rgB755808b\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "8a58a80b-3d78-41d3-a491-eb7e760cc8de", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:06 GMT", - "content-length" : "54768", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11997", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "22505225-aa6c-4743-a454-2c85b725ef5f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092406Z:22505225-aa6c-4743-a454-2c85b725ef5f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "22505225-aa6c-4743-a454-2c85b725ef5f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 09:58:36 GMT", + "x-ms-correlation-request-id" : "eb07edde-34fd-41df-a20b-ed87270f68b5", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095837Z:eb07edde-34fd-41df-a20b-ed87270f68b5", + "Expires" : "-1", + "Content-Length" : "54768", + "x-ms-request-id" : "eb07edde-34fd-41df-a20b-ed87270f68b5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2a989906/providers/Microsoft.Web//sites/rs2a989906?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg755808b/providers/Microsoft.Web//sites/rs755808b?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b98d591c-9f56-4f33-8ef3-4f1fe822cb7c", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:32 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5228", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", + "Server" : "Microsoft-IIS/10.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4a039cd3-3c35-4675-ab38-06dddf6cb8ae", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "498", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092432Z:4a039cd3-3c35-4675-ab38-06dddf6cb8ae", - "x-powered-by" : "ASP.NET", - "etag" : "\"1D663F7B27CBEC0\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "e1fed7bd-2561-42b8-a793-126b697f1ee9", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2a989906/providers/Microsoft.Web/sites/rs2a989906\",\"name\":\"rs2a989906\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"name\":\"rs2a989906\",\"state\":\"Running\",\"hostNames\":[\"rs2a989906.azurewebsites.net\"],\"webSpace\":\"rg2a989906-SouthCentralUSwebspace\",\"selfLink\":\"https://waws-prod-sn1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg2a989906-SouthCentralUSwebspace/sites/rs2a989906\",\"repositorySiteName\":\"rs2a989906\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"rs2a989906.azurewebsites.net\",\"rs2a989906.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"rs2a989906.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"rs2a989906.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2a989906/providers/Microsoft.Web/serverfarms/Default1mf\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-07-27T09:24:15.1366667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"rs2a989906\",\"trafficManagerHostNames\":null,\"sku\":\"Free\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"52.171.56.110\",\"possibleInboundIpAddresses\":\"52.171.56.110\",\"ftpUsername\":\"rs2a989906\\\\$rs2a989906\",\"ftpsHostName\":\"ftps://waws-prod-sn1-129.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.171.56.110,13.65.253.143,52.171.140.187,13.85.9.231,13.65.255.158\",\"possibleOutboundIpAddresses\":\"52.171.56.110,13.65.253.143,52.171.140.187,13.85.9.231,13.65.255.158,13.84.225.112,70.37.106.185,40.84.231.208\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-sn1-129\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg2a989906\",\"defaultHostName\":\"rs2a989906.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null}}" - } + "Date" : "Tue, 11 Aug 2020 09:59:05 GMT", + "x-ms-correlation-request-id" : "7388838d-d100-429e-9431-2ced5dfafe03", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-ms-ratelimit-remaining-subscription-resource-requests" : "499", + "Cache-Control" : "no-cache", + "ETag" : "\"1D66FC601E98FE0\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095905Z:7388838d-d100-429e-9431-2ced5dfafe03", + "X-AspNet-Version" : "4.0.30319", + "Expires" : "-1", + "Content-Length" : "5323", + "x-ms-request-id" : "63b88639-05d5-4af5-8b99-414458784e48", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg755808b/providers/Microsoft.Web/sites/rs755808b\",\"name\":\"rs755808b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"name\":\"rs755808b\",\"state\":\"Running\",\"hostNames\":[\"rs755808b.azurewebsites.net\"],\"webSpace\":\"rg755808b-SouthCentralUSwebspace\",\"selfLink\":\"https://waws-prod-sn1-111.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg755808b-SouthCentralUSwebspace/sites/rs755808b\",\"repositorySiteName\":\"rs755808b\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"rs755808b.azurewebsites.net\",\"rs755808b.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"rs755808b.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"rs755808b.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg755808b/providers/Microsoft.Web/serverfarms/Default1la\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-11T09:58:47.8666667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"rs755808b\",\"trafficManagerHostNames\":null,\"sku\":\"Free\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"13.85.16.224\",\"possibleInboundIpAddresses\":\"13.85.16.224\",\"ftpUsername\":\"rs755808b\\\\$rs755808b\",\"ftpsHostName\":\"ftps://waws-prod-sn1-111.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"13.85.16.224,13.85.19.31,13.85.74.40,13.85.20.35,13.85.20.67\",\"possibleOutboundIpAddresses\":\"13.85.16.224,13.85.19.31,13.85.74.40,13.85.20.35,13.85.20.67,23.98.151.193,23.102.163.164,104.44.132.167\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-sn1-111\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg755808b\",\"defaultHostName\":\"rs755808b.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", + "X-Powered-By" : "ASP.NET", + "Content-Type" : "application/json" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2a989906/resources?$expand=provisioningState&api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg755808b/resources?$expand=provisioningState&api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e0cf1ac1-5cdf-4db8-a6f1-8cc24187fa12", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:32 GMT", - "content-length" : "271", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e5fc0a6c-3c49-4ca8-aa78-137766bb6a90", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092433Z:e5fc0a6c-3c49-4ca8-aa78-137766bb6a90", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e5fc0a6c-3c49-4ca8-aa78-137766bb6a90", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2a989906/providers/Microsoft.Web/sites/rs2a989906\",\"name\":\"rs2a989906\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"southcentralus\",\"provisioningState\":\"Succeeded\",\"tags\":{}}]}" - } + "Date" : "Tue, 11 Aug 2020 09:59:05 GMT", + "x-ms-correlation-request-id" : "7bdb7811-d71c-4eca-a1af-0f4eedfbf8d6", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095905Z:7bdb7811-d71c-4eca-a1af-0f4eedfbf8d6", + "Expires" : "-1", + "Content-Length" : "268", + "x-ms-request-id" : "7bdb7811-d71c-4eca-a1af-0f4eedfbf8d6", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg755808b/providers/Microsoft.Web/sites/rs755808b\",\"name\":\"rs755808b\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"southcentralus\",\"provisioningState\":\"Succeeded\",\"tags\":{}}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4bb3943e-3a4a-472d-b06f-3c8410188442", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:32 GMT", - "content-length" : "54768", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d2ddc0f7-bfb7-4b5a-8211-df2a61ac2e4e", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092433Z:d2ddc0f7-bfb7-4b5a-8211-df2a61ac2e4e", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d2ddc0f7-bfb7-4b5a-8211-df2a61ac2e4e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:05 GMT", + "x-ms-correlation-request-id" : "b8e19506-e927-4c62-b83b-715562aa8b8e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095905Z:b8e19506-e927-4c62-b83b-715562aa8b8e", + "Expires" : "-1", + "Content-Length" : "54768", + "x-ms-request-id" : "b8e19506-e927-4c62-b83b-715562aa8b8e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2a989906/providers/Microsoft.Web/sites/rs2a989906?api-version=2019-08-01", + "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg755808b/providers/Microsoft.Web/sites/rs755808b?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "53b912c3-8ed6-4bee-bed5-544e2c740b3f", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:43 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14995", - "x-aspnet-version" : "4.0.30319", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "Server" : "Microsoft-IIS/10.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5d89791b-0fae-408d-b17b-9439d73be6d7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092443Z:5d89791b-0fae-408d-b17b-9439d73be6d7", - "x-powered-by" : "ASP.NET", - "etag" : "\"1D663F7B27CBEC0\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "d0d5ac89-1a4e-4dbf-a6d2-94e57317fedb", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:14 GMT", + "x-ms-correlation-request-id" : "997816c7-af1e-49c6-b1aa-ec8751fe9fdd", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "\"1D66FC601E98FE0\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095914Z:997816c7-af1e-49c6-b1aa-ec8751fe9fdd", + "X-AspNet-Version" : "4.0.30319", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "c90036ea-dbbc-4ffb-841b-c0411d7a6d6e", + "X-Powered-By" : "ASP.NET" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2a989906/resources?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg755808b/resources?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "35a21e7b-467a-4374-ad4d-5ffcca7c0c8d", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:13 GMT", - "content-length" : "12", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11963", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ecde6f11-3cf8-4bae-ab45-4b11776db387", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092514Z:ecde6f11-3cf8-4bae-ab45-4b11776db387", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ecde6f11-3cf8-4bae-ab45-4b11776db387", - "Body" : "{\"value\":[]}" - } + "Date" : "Tue, 11 Aug 2020 09:59:43 GMT", + "x-ms-correlation-request-id" : "a3811446-f1bb-49b9-8007-fc8388c39b55", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095944Z:a3811446-f1bb-49b9-8007-fc8388c39b55", + "Expires" : "-1", + "Content-Length" : "12", + "x-ms-request-id" : "a3811446-f1bb-49b9-8007-fc8388c39b55", + "Body" : "{\"value\":[]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB2a989906?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB755808b?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3fa079b9-213d-43fa-9bef-3aa699e55728", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:15 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14996", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4cea2813-ebf7-44d0-a937-89fecc7dc786", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092516Z:4cea2813-ebf7-44d0-a937-89fecc7dc786", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0IyQTk4OTkwNi1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4cea2813-ebf7-44d0-a937-89fecc7dc786", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:48 GMT", + "x-ms-correlation-request-id" : "75004490-5250-46d2-9f95-5424247cd791", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095948Z:75004490-5250-46d2-9f95-5424247cd791", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "75004490-5250-46d2-9f95-5424247cd791", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0I3NTU4MDhCLVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2a989906?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg755808b?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4f2ae2d7-e978-4ba8-a249-82f198d70fd9", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:18 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14995", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "33a76ce1-f7f1-4ea1-85b4-f63044311b16", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092519Z:33a76ce1-f7f1-4ea1-85b4-f63044311b16", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzJBOTg5OTA2LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "33a76ce1-f7f1-4ea1-85b4-f63044311b16", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:52 GMT", + "x-ms-correlation-request-id" : "acae7da6-b7ca-44ef-b647-3e7eb4b7e247", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095953Z:acae7da6-b7ca-44ef-b647-3e7eb4b7e247", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "acae7da6-b7ca-44ef-b647-3e7eb4b7e247", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzc1NTgwOEItRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2020-06-01" + }, + "Exception" : null } ], - "variables" : [ "2a989906" ] + "variables" : [ "755808b" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCreateResourceGroup.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCreateResourceGroup.json index 5c5c223663ed..ca4e05757ec9 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCreateResourceGroup.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCreateResourceGroup.json @@ -1,147 +1,157 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg39439b?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg995997?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "669528c2-e8c7-48d4-bcea-2e7d5e992fc9", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:03 GMT", - "content-length" : "352", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "387b2b58-4735-4fd8-9790-f4ac90bdce01", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092404Z:387b2b58-4735-4fd8-9790-f4ac90bdce01", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "387b2b58-4735-4fd8-9790-f4ac90bdce01", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg39439b\",\"name\":\"rg39439b\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"tagname\":\"tagvalue\",\"department\":\"finance\",\"product\":\"javasdk\",\"cause\":\"automation\",\"date\":\"2020-07-27T09:24:01.368088Z\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:35 GMT", + "x-ms-correlation-request-id" : "9a73e79a-ab9e-474c-be86-015c0e3b0988", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095835Z:9a73e79a-ab9e-474c-be86-015c0e3b0988", + "Expires" : "-1", + "Content-Length" : "274", + "x-ms-request-id" : "9a73e79a-ab9e-474c-be86-015c0e3b0988", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995997\",\"name\":\"rg995997\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"tagname\":\"tagvalue\",\"department\":\"finance\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups?$filter=tagname%20eq%20%27department%27%20and%20tagvalue%20eq%20%27finance%27&api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "2c059e61-8420-46b4-be51-e37b19d287f5", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:04 GMT", - "content-length" : "364", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11998", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "de80744a-9cb7-4c4d-bbe6-29d00f04c812", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092404Z:de80744a-9cb7-4c4d-bbe6-29d00f04c812", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "de80744a-9cb7-4c4d-bbe6-29d00f04c812", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg39439b\",\"name\":\"rg39439b\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"tagname\":\"tagvalue\",\"department\":\"finance\",\"product\":\"javasdk\",\"cause\":\"automation\",\"date\":\"2020-07-27T09:24:01.368088Z\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}]}" - } + "Date" : "Tue, 11 Aug 2020 09:58:35 GMT", + "x-ms-correlation-request-id" : "87ef08c3-3c2f-4a9d-9b37-023054ded720", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095835Z:87ef08c3-3c2f-4a9d-9b37-023054ded720", + "Expires" : "-1", + "Content-Length" : "286", + "x-ms-request-id" : "87ef08c3-3c2f-4a9d-9b37-023054ded720", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995997\",\"name\":\"rg995997\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"tagname\":\"tagvalue\",\"department\":\"finance\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "HEAD", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg39439b?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg995997?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "fe20efa1-61e0-4b54-8e2d-a56c486a06a8", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:04 GMT", - "content-length" : "0", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11996", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "204", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "174e1ed3-69ad-4753-bec7-eed0cec14219", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092405Z:174e1ed3-69ad-4753-bec7-eed0cec14219", - "cache-control" : "no-cache", - "x-ms-request-id" : "174e1ed3-69ad-4753-bec7-eed0cec14219", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:58:35 GMT", + "x-ms-correlation-request-id" : "4939afb8-c779-4fda-8c24-63994152cbd8", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095835Z:4939afb8-c779-4fda-8c24-63994152cbd8", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "4939afb8-c779-4fda-8c24-63994152cbd8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg39439b?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg995997?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6d48a0cf-63ba-4556-9e80-06a973599ca1", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:04 GMT", - "content-length" : "352", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ad9a6e3c-b19f-4af5-8f84-9680f87415c3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092405Z:ad9a6e3c-b19f-4af5-8f84-9680f87415c3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ad9a6e3c-b19f-4af5-8f84-9680f87415c3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg39439b\",\"name\":\"rg39439b\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"tagname\":\"tagvalue\",\"department\":\"finance\",\"product\":\"javasdk\",\"cause\":\"automation\",\"date\":\"2020-07-27T09:24:01.368088Z\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:35 GMT", + "x-ms-correlation-request-id" : "41d45962-5318-4ab9-86c9-541dfe7607eb", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095836Z:41d45962-5318-4ab9-86c9-541dfe7607eb", + "Expires" : "-1", + "Content-Length" : "274", + "x-ms-request-id" : "41d45962-5318-4ab9-86c9-541dfe7607eb", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995997\",\"name\":\"rg995997\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"tagname\":\"tagvalue\",\"department\":\"finance\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg39439b?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg995997?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0bef01d3-c939-4908-985c-d5b42f0c3a4c", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:06 GMT", - "content-length" : "371", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0fac1f58-1a1e-4986-89f3-aef79bed0f56", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092407Z:0fac1f58-1a1e-4986-89f3-aef79bed0f56", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0fac1f58-1a1e-4986-89f3-aef79bed0f56", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg39439b\",\"name\":\"rg39439b\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"tagname\":\"tagvalue\",\"department\":\"finance\",\"product\":\"javasdk\",\"cause\":\"automation\",\"date\":\"2020-07-27T09:24:05.901962700Z\",\"tag1\":\"value1\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:36 GMT", + "x-ms-correlation-request-id" : "c9adeeb3-e50d-4b6a-ab28-65c4da256b86", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095836Z:c9adeeb3-e50d-4b6a-ab28-65c4da256b86", + "Expires" : "-1", + "Content-Length" : "290", + "x-ms-request-id" : "c9adeeb3-e50d-4b6a-ab28-65c4da256b86", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg995997\",\"name\":\"rg995997\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"tagname\":\"tagvalue\",\"department\":\"finance\",\"tag1\":\"value1\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg39439b?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg995997?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "517873f1-14d2-4809-8267-0a50684e0975", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:08 GMT", - "content-length" : "0", - "expires" : "-1", "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "retry-after" : "0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "861f8abb-1c97-4f03-892c-d7b605ddd5ab", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092409Z:861f8abb-1c97-4f03-892c-d7b605ddd5ab", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzM5NDM5Qi1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "861f8abb-1c97-4f03-892c-d7b605ddd5ab", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:58:39 GMT", + "x-ms-correlation-request-id" : "e1af4c61-2812-407a-8fb8-877df837c95f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095839Z:e1af4c61-2812-407a-8fb8-877df837c95f", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "e1af4c61-2812-407a-8fb8-877df837c95f", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzk5NTk5Ny1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2020-06-01" + }, + "Exception" : null } ], - "variables" : [ "rg39439b" ] + "variables" : [ "rg995997" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCreateUpdateMoveResource.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCreateUpdateMoveResource.json index 7dc2e2b7d850..ea116dd05357 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCreateUpdateMoveResource.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canCreateUpdateMoveResource.json @@ -1,799 +1,847 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69985096?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg95773f9?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0d8b9ac8-ad47-46d5-892d-6dd9cb74c6e8", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:04 GMT", - "content-length" : "307", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c570854d-5c45-43c8-b69f-45ae1f712da5", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092404Z:c570854d-5c45-43c8-b69f-45ae1f712da5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c570854d-5c45-43c8-b69f-45ae1f712da5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69985096\",\"name\":\"rg69985096\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"tags\":{\"date\":\"2020-07-27T09:24:01.278327700Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:35 GMT", + "x-ms-correlation-request-id" : "3f17b96c-ddf5-4807-8092-f9fe06f8492c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095835Z:3f17b96c-ddf5-4807-8092-f9fe06f8492c", + "Expires" : "-1", + "Content-Length" : "215", + "x-ms-request-id" : "3f17b96c-ddf5-4807-8092-f9fe06f8492c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg95773f9\",\"name\":\"rg95773f9\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB69985096?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB95773f9?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "8f63d74c-5f8e-4628-a29d-ed27483f5081", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:05 GMT", - "content-length" : "317", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1193", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cef773ba-cc89-4bd6-9db7-2383c4c406d7", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092406Z:cef773ba-cc89-4bd6-9db7-2383c4c406d7", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "cef773ba-cc89-4bd6-9db7-2383c4c406d7", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB69985096\",\"name\":\"rgB69985096\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-27T09:24:05.083154100Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:39 GMT", + "x-ms-correlation-request-id" : "90ef16b9-bce9-4e56-b97c-731aec379f3c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095839Z:90ef16b9-bce9-4e56-b97c-731aec379f3c", + "Expires" : "-1", + "Content-Length" : "225", + "x-ms-request-id" : "90ef16b9-bce9-4e56-b97c-731aec379f3c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB95773f9\",\"name\":\"rgB95773f9\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b1190647-1e55-4cba-bc81-6b1504849c08", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:05 GMT", - "content-length" : "54768", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cd9feeeb-7d71-457a-a127-b55d9953ad87", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092406Z:cd9feeeb-7d71-457a-a127-b55d9953ad87", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "cd9feeeb-7d71-457a-a127-b55d9953ad87", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 09:58:39 GMT", + "x-ms-correlation-request-id" : "e619ee20-c151-417d-a162-364436a7e4d8", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095839Z:e619ee20-c151-417d-a162-364436a7e4d8", + "Expires" : "-1", + "Content-Length" : "54768", + "x-ms-request-id" : "e619ee20-c151-417d-a162-364436a7e4d8", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69985096/providers/Microsoft.Web//sites/rs69985096?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg95773f9/providers/Microsoft.Web//sites/rs95773f9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "392d90ff-b4dc-4ace-b04f-2c2bb1815094", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:32 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5238", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", + "Server" : "Microsoft-IIS/10.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c24d68cc-d4a7-4f68-8358-00feae526f78", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "498", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092433Z:c24d68cc-d4a7-4f68-8358-00feae526f78", - "x-powered-by" : "ASP.NET", - "etag" : "\"1D663F7B31966EB\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "8e928b96-1355-4b16-90a1-1e4308827d3e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69985096/providers/Microsoft.Web/sites/rs69985096\",\"name\":\"rs69985096\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"name\":\"rs69985096\",\"state\":\"Running\",\"hostNames\":[\"rs69985096.azurewebsites.net\"],\"webSpace\":\"rg69985096-SouthCentralUSwebspace\",\"selfLink\":\"https://waws-prod-sn1-123.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg69985096-SouthCentralUSwebspace/sites/rs69985096\",\"repositorySiteName\":\"rs69985096\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"rs69985096.azurewebsites.net\",\"rs69985096.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"rs69985096.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"rs69985096.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69985096/providers/Microsoft.Web/serverfarms/Default1vk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-07-27T09:24:16.56\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"rs69985096\",\"trafficManagerHostNames\":null,\"sku\":\"Free\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"104.210.147.57\",\"possibleInboundIpAddresses\":\"104.210.147.57\",\"ftpUsername\":\"rs69985096\\\\$rs69985096\",\"ftpsHostName\":\"ftps://waws-prod-sn1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.210.147.57,104.210.151.129,104.210.149.160,104.214.109.77,104.210.150.3\",\"possibleOutboundIpAddresses\":\"104.210.147.57,104.210.151.129,104.210.149.160,104.214.109.77,104.210.150.3,70.37.67.49,40.84.224.164,157.55.201.136\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-sn1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg69985096\",\"defaultHostName\":\"rs69985096.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null}}" - } + "Date" : "Tue, 11 Aug 2020 09:59:07 GMT", + "x-ms-correlation-request-id" : "89d9515c-1ebf-4a5f-bca3-fa733834ccd7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-ms-ratelimit-remaining-subscription-resource-requests" : "499", + "Cache-Control" : "no-cache", + "ETag" : "\"1D66FC6036FADAB\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095908Z:89d9515c-1ebf-4a5f-bca3-fa733834ccd7", + "X-AspNet-Version" : "4.0.30319", + "Expires" : "-1", + "Content-Length" : "5339", + "x-ms-request-id" : "7bd9212d-769a-4925-ac6b-69b51290a5c4", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg95773f9/providers/Microsoft.Web/sites/rs95773f9\",\"name\":\"rs95773f9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"southcentralus\",\"tags\":{},\"properties\":{\"name\":\"rs95773f9\",\"state\":\"Running\",\"hostNames\":[\"rs95773f9.azurewebsites.net\"],\"webSpace\":\"rg95773f9-SouthCentralUSwebspace\",\"selfLink\":\"https://waws-prod-sn1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg95773f9-SouthCentralUSwebspace/sites/rs95773f9\",\"repositorySiteName\":\"rs95773f9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"rs95773f9.azurewebsites.net\",\"rs95773f9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"rs95773f9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"rs95773f9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg95773f9/providers/Microsoft.Web/serverfarms/Default1mx\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-11T09:58:50.4733333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"rs95773f9\",\"trafficManagerHostNames\":null,\"sku\":\"Free\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"52.171.56.110\",\"possibleInboundIpAddresses\":\"52.171.56.110\",\"ftpUsername\":\"rs95773f9\\\\$rs95773f9\",\"ftpsHostName\":\"ftps://waws-prod-sn1-129.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.171.56.110,13.65.253.143,52.171.140.187,13.85.9.231,13.65.255.158\",\"possibleOutboundIpAddresses\":\"52.171.56.110,13.65.253.143,52.171.140.187,13.85.9.231,13.65.255.158,13.84.225.112,70.37.106.185,40.84.231.208\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-sn1-129\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg95773f9\",\"defaultHostName\":\"rs95773f9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", + "X-Powered-By" : "ASP.NET", + "Content-Type" : "application/json" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69985096/resources?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg95773f9/resources?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "23db53e9-c55b-4336-a46f-941a12a7a7fb", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:33 GMT", - "content-length" : "239", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "349817fc-5902-427e-8494-f2e2550694d5", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092433Z:349817fc-5902-427e-8494-f2e2550694d5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "349817fc-5902-427e-8494-f2e2550694d5", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69985096/providers/Microsoft.Web/sites/rs69985096\",\"name\":\"rs69985096\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"southcentralus\",\"tags\":{}}]}" - } + "Date" : "Tue, 11 Aug 2020 09:59:08 GMT", + "x-ms-correlation-request-id" : "9f5e74d7-8856-43ff-aea5-c5bf0051fd46", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095908Z:9f5e74d7-8856-43ff-aea5-c5bf0051fd46", + "Expires" : "-1", + "Content-Length" : "236", + "x-ms-request-id" : "9f5e74d7-8856-43ff-aea5-c5bf0051fd46", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg95773f9/providers/Microsoft.Web/sites/rs95773f9\",\"name\":\"rs95773f9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"southcentralus\",\"tags\":{}}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1ca8d495-b973-4cc2-99a6-65d6b3b61e72", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:33 GMT", - "content-length" : "54768", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11984", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cd742b1e-16c7-4a16-a432-bc2ce05443c8", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092433Z:cd742b1e-16c7-4a16-a432-bc2ce05443c8", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "cd742b1e-16c7-4a16-a432-bc2ce05443c8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:08 GMT", + "x-ms-correlation-request-id" : "995bff51-e903-470d-9743-76a65121fe2a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095908Z:995bff51-e903-470d-9743-76a65121fe2a", + "Expires" : "-1", + "Content-Length" : "54768", + "x-ms-request-id" : "995bff51-e903-470d-9743-76a65121fe2a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69985096/providers/Microsoft.Web//sites/rs69985096?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg95773f9/providers/Microsoft.Web//sites/rs95773f9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "86d180fb-7a1a-45c7-bec2-0070a7e8c187", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:35 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5045", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", + "Server" : "Microsoft-IIS/10.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11983", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b2c1eb79-adfc-4529-ac03-ac174ed1d6c7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092435Z:b2c1eb79-adfc-4529-ac03-ac174ed1d6c7", - "x-powered-by" : "ASP.NET", - "etag" : "\"1D663F7B31966EB\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "326eeca0-dd06-4496-982d-80d45d2b58df", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69985096/providers/Microsoft.Web/sites/rs69985096\",\"name\":\"rs69985096\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"name\":\"rs69985096\",\"state\":\"Running\",\"hostNames\":[\"rs69985096.azurewebsites.net\"],\"webSpace\":\"rg69985096-SouthCentralUSwebspace\",\"selfLink\":\"https://waws-prod-sn1-123.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg69985096-SouthCentralUSwebspace/sites/rs69985096\",\"repositorySiteName\":\"rs69985096\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"rs69985096.azurewebsites.net\",\"rs69985096.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"rs69985096.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"rs69985096.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69985096/providers/Microsoft.Web/serverfarms/Default1vk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-07-27T09:24:16.6866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"rs69985096\",\"trafficManagerHostNames\":null,\"sku\":\"Free\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"104.210.147.57\",\"possibleInboundIpAddresses\":\"104.210.147.57\",\"ftpUsername\":\"rs69985096\\\\$rs69985096\",\"ftpsHostName\":\"ftps://waws-prod-sn1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.210.147.57,104.210.151.129,104.210.149.160,104.214.109.77,104.210.150.3\",\"possibleOutboundIpAddresses\":\"104.210.147.57,104.210.151.129,104.210.149.160,104.214.109.77,104.210.150.3,70.37.67.49,40.84.224.164,157.55.201.136\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-sn1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg69985096\",\"defaultHostName\":\"rs69985096.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null}}" - } + "Date" : "Tue, 11 Aug 2020 09:59:08 GMT", + "x-ms-correlation-request-id" : "0cd2fa2f-14ea-4e6c-a098-730b46eeba78", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "\"1D66FC6036FADAB\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095909Z:0cd2fa2f-14ea-4e6c-a098-730b46eeba78", + "X-AspNet-Version" : "4.0.30319", + "Expires" : "-1", + "Content-Length" : "5141", + "x-ms-request-id" : "95e508ea-7694-411a-8f6e-9eb373e7b28d", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg95773f9/providers/Microsoft.Web/sites/rs95773f9\",\"name\":\"rs95773f9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"name\":\"rs95773f9\",\"state\":\"Running\",\"hostNames\":[\"rs95773f9.azurewebsites.net\"],\"webSpace\":\"rg95773f9-SouthCentralUSwebspace\",\"selfLink\":\"https://waws-prod-sn1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg95773f9-SouthCentralUSwebspace/sites/rs95773f9\",\"repositorySiteName\":\"rs95773f9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"rs95773f9.azurewebsites.net\",\"rs95773f9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"rs95773f9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"rs95773f9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg95773f9/providers/Microsoft.Web/serverfarms/Default1mx\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-11T09:58:50.5866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"rs95773f9\",\"trafficManagerHostNames\":null,\"sku\":\"Free\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"52.171.56.110\",\"possibleInboundIpAddresses\":\"52.171.56.110\",\"ftpUsername\":\"rs95773f9\\\\$rs95773f9\",\"ftpsHostName\":\"ftps://waws-prod-sn1-129.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.171.56.110,13.65.253.143,52.171.140.187,13.85.9.231,13.65.255.158\",\"possibleOutboundIpAddresses\":\"52.171.56.110,13.65.253.143,52.171.140.187,13.85.9.231,13.65.255.158,13.84.225.112,70.37.106.185,40.84.231.208\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-sn1-129\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rg95773f9\",\"defaultHostName\":\"rs95773f9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", + "X-Powered-By" : "ASP.NET", + "Content-Type" : "application/json" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB69985096?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB95773f9?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5ccab4e9-599a-4b53-9e06-b651b9b83e31", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:35 GMT", - "content-length" : "317", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ca7bee19-69e3-47dc-9916-b82bbe91bd92", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092435Z:ca7bee19-69e3-47dc-9916-b82bbe91bd92", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ca7bee19-69e3-47dc-9916-b82bbe91bd92", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB69985096\",\"name\":\"rgB69985096\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-27T09:24:05.083154100Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:59:08 GMT", + "x-ms-correlation-request-id" : "64e9c21d-9c77-4649-b8ff-6635e9758c2a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095909Z:64e9c21d-9c77-4649-b8ff-6635e9758c2a", + "Expires" : "-1", + "Content-Length" : "225", + "x-ms-request-id" : "64e9c21d-9c77-4649-b8ff-6635e9758c2a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB95773f9\",\"name\":\"rgB95773f9\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69985096/moveResources?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg95773f9/moveResources?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0ac15e41-56a4-4755-b319-c8987a42d2ab", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:39 GMT", - "content-length" : "0", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6c5d4c1c-2ea4-4cdd-8f21-5f42098914f6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092440Z:6c5d4c1c-2ea4-4cdd-8f21-5f42098914f6", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "6c5d4c1c-2ea4-4cdd-8f21-5f42098914f6", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:17 GMT", + "x-ms-correlation-request-id" : "e3760813-3d73-4a3b-9116-c14a8137b00c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095918Z:e3760813-3d73-4a3b-9116-c14a8137b00c", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "e3760813-3d73-4a3b-9116-c14a8137b00c", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "2c9eeb1b-4e46-4925-899d-26da58b02c85" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:55 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11973", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9b6e7221-3e6d-4469-8983-d8c9a97ebf33", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092455Z:9b6e7221-3e6d-4469-8983-d8c9a97ebf33", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "9b6e7221-3e6d-4469-8983-d8c9a97ebf33", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:34 GMT", + "x-ms-correlation-request-id" : "92c773ed-7173-439c-8ba5-0a97271ee790", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095934Z:92c773ed-7173-439c-8ba5-0a97271ee790", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "92c773ed-7173-439c-8ba5-0a97271ee790", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f8ef6742-4861-427b-bbac-e73cc727aa2a" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:11 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11982", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "27a6addf-2e8e-4f17-8fc6-c1dbbda21232", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092511Z:27a6addf-2e8e-4f17-8fc6-c1dbbda21232", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "27a6addf-2e8e-4f17-8fc6-c1dbbda21232", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:49 GMT", + "x-ms-correlation-request-id" : "e5445c5a-e8c0-40e3-8174-049b1d6a0ae3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095949Z:e5445c5a-e8c0-40e3-8174-049b1d6a0ae3", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "e5445c5a-e8c0-40e3-8174-049b1d6a0ae3", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5e31e30e-26b3-4c70-9919-59ec0a750f65" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:27 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11956", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1ba59e53-cd08-40e7-a85c-bdb94412588e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092527Z:1ba59e53-cd08-40e7-a85c-bdb94412588e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "1ba59e53-cd08-40e7-a85c-bdb94412588e", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:00:05 GMT", + "x-ms-correlation-request-id" : "3c7c654c-ec05-440e-92e1-505b5ef35e03", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100005Z:3c7c654c-ec05-440e-92e1-505b5ef35e03", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "3c7c654c-ec05-440e-92e1-505b5ef35e03", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0421e4a0-6a67-409d-ac4b-04ec53fa9397" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:43 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11952", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f86c12bf-9c5b-4675-a78c-68b8c7541554", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092543Z:f86c12bf-9c5b-4675-a78c-68b8c7541554", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "f86c12bf-9c5b-4675-a78c-68b8c7541554", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:00:21 GMT", + "x-ms-correlation-request-id" : "2430756a-822c-423f-98ca-ea153681b2f0", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100021Z:2430756a-822c-423f-98ca-ea153681b2f0", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "2430756a-822c-423f-98ca-ea153681b2f0", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "9dce212b-f88b-43f1-b866-750fba5d1a17" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:59 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11948", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6e51b099-d0ca-4850-9526-e831f80b6e89", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092559Z:6e51b099-d0ca-4850-9526-e831f80b6e89", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "6e51b099-d0ca-4850-9526-e831f80b6e89", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:00:36 GMT", + "x-ms-correlation-request-id" : "8ee37fbb-4e3d-47d8-86b7-730adcc19358", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100037Z:8ee37fbb-4e3d-47d8-86b7-730adcc19358", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "8ee37fbb-4e3d-47d8-86b7-730adcc19358", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "54b31ff2-94e1-45c6-80e6-98a601ab1eb0" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:26:15 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "717a29d0-03df-4d55-8349-f7d8472275a8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092615Z:717a29d0-03df-4d55-8349-f7d8472275a8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "717a29d0-03df-4d55-8349-f7d8472275a8", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:00:52 GMT", + "x-ms-correlation-request-id" : "fc8dc991-bc64-4cae-8068-624800f16e7f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100052Z:fc8dc991-bc64-4cae-8068-624800f16e7f", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "fc8dc991-bc64-4cae-8068-624800f16e7f", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b953b035-c7fe-4b64-9c8e-641ebc82369e" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:26:31 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11947", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "736ca5dd-add9-4483-9555-87481ff8e9ba", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092631Z:736ca5dd-add9-4483-9555-87481ff8e9ba", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "736ca5dd-add9-4483-9555-87481ff8e9ba", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:01:08 GMT", + "x-ms-correlation-request-id" : "71463cf5-1623-4e18-9ce8-1c9b95d55094", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100108Z:71463cf5-1623-4e18-9ce8-1c9b95d55094", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "71463cf5-1623-4e18-9ce8-1c9b95d55094", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "54acfca0-5ad7-44b9-83a0-1bda19c38af0" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:26:47 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11978", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dd43e1c4-2532-4c6e-be07-49fab9acba41", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092648Z:dd43e1c4-2532-4c6e-be07-49fab9acba41", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "dd43e1c4-2532-4c6e-be07-49fab9acba41", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:01:24 GMT", + "x-ms-correlation-request-id" : "7be78d0b-a44c-4c00-a79a-cbe1c6d37439", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100124Z:7be78d0b-a44c-4c00-a79a-cbe1c6d37439", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "7be78d0b-a44c-4c00-a79a-cbe1c6d37439", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b7570d9f-983d-47bd-9ea1-1fc3ebe18f5a" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:27:03 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5142add7-cc10-437c-8ad8-51aa58be84be", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092704Z:5142add7-cc10-437c-8ad8-51aa58be84be", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "5142add7-cc10-437c-8ad8-51aa58be84be", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:01:40 GMT", + "x-ms-correlation-request-id" : "69335c99-5981-4c28-b02c-28d9fd2ce899", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100140Z:69335c99-5981-4c28-b02c-28d9fd2ce899", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "69335c99-5981-4c28-b02c-28d9fd2ce899", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "82f9540a-75ee-4489-b10e-d215553a5739" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:27:20 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11941", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8cec3fc0-405b-4e3d-aa25-018505aec0f6", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092720Z:8cec3fc0-405b-4e3d-aa25-018505aec0f6", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "8cec3fc0-405b-4e3d-aa25-018505aec0f6", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:01:56 GMT", + "x-ms-correlation-request-id" : "436f84b0-62a9-4a25-b234-6f9d86278221", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100157Z:436f84b0-62a9-4a25-b234-6f9d86278221", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "436f84b0-62a9-4a25-b234-6f9d86278221", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "fe2c1592-e29d-4a48-94bf-32a043fb7f7d" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:27:36 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1a4de38f-3c81-4cec-a89c-b600bd8ecc6f", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092737Z:1a4de38f-3c81-4cec-a89c-b600bd8ecc6f", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "1a4de38f-3c81-4cec-a89c-b600bd8ecc6f", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:02:13 GMT", + "x-ms-correlation-request-id" : "7e575ae2-91e4-4e0d-83cf-570a601f3275", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100213Z:7e575ae2-91e4-4e0d-83cf-570a601f3275", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "7e575ae2-91e4-4e0d-83cf-570a601f3275", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b2613834-6ce3-42fe-a6f5-136a199e981d" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:27:52 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11940", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "19c68241-f2db-484a-8de1-c7cf643f8c6d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092753Z:19c68241-f2db-484a-8de1-c7cf643f8c6d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "19c68241-f2db-484a-8de1-c7cf643f8c6d", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:02:28 GMT", + "x-ms-correlation-request-id" : "c08b25de-4ea7-4165-a801-c15458c97321", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100229Z:c08b25de-4ea7-4165-a801-c15458c97321", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "c08b25de-4ea7-4165-a801-c15458c97321", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3524c6dd-b792-46b6-ba94-d00857497571" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:28:09 GMT", - "content-length" : "0", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11939", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f0995134-c61a-41b0-be0f-a02586fc8fcf", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092809Z:f0995134-c61a-41b0-be0f-a02586fc8fcf", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "f0995134-c61a-41b0-be0f-a02586fc8fcf", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:02:44 GMT", + "x-ms-correlation-request-id" : "c50864e8-2d50-4a01-9aff-9df0617feb6e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100245Z:c50864e8-2d50-4a01-9aff-9df0617feb6e", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "c50864e8-2d50-4a01-9aff-9df0617feb6e", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHNjk5ODUwOTYtRUFTVFVTLU1PVkUiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFQkFUQ0hNT1ZFSk9CLVJHOTU3NzNGOS1FQVNUVVMtTU9WRSIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5b7a079f-9296-4b60-a562-b58f1571e63b" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:28:24 GMT", - "expires" : "-1", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "X-Content-Type-Options" : "nosniff", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100301Z:36ec47ca-0dc5-4e25-8348-3bf57dd1c7a8", + "Expires" : "-1", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11938", + "x-ms-ratelimit-remaining-subscription-reads" : "11977", "StatusCode" : "204", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0f304684-76e9-4fb7-9d34-6232859a0c45", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092825Z:0f304684-76e9-4fb7-9d34-6232859a0c45", - "cache-control" : "no-cache", - "x-ms-request-id" : "0f304684-76e9-4fb7-9d34-6232859a0c45", - "Body" : "" - } + "x-ms-request-id" : "36ec47ca-0dc5-4e25-8348-3bf57dd1c7a8", + "Date" : "Tue, 11 Aug 2020 10:03:00 GMT", + "x-ms-correlation-request-id" : "36ec47ca-0dc5-4e25-8348-3bf57dd1c7a8" + }, + "Exception" : null }, { "Method" : "HEAD", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69985096/providers/Microsoft.Web//sites/rs69985096?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg95773f9/providers/Microsoft.Web//sites/rs95773f9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3096c21c-cc8f-44b2-b839-f30a8a110495", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:28:25 GMT", - "content-length" : "212", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "404", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f86a925f-0f83-4d4f-8ea8-a071de9226a5", - "x-content-type-options" : "nosniff", + "Date" : "Tue, 11 Aug 2020 10:03:00 GMT", + "x-ms-correlation-request-id" : "b439c49e-4fb7-447a-af33-f11c3ea4ab57", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", "x-ms-failure-cause" : "gateway", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092825Z:f86a925f-0f83-4d4f-8ea8-a071de9226a5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f86a925f-0f83-4d4f-8ea8-a071de9226a5", - "Body" : "" - } + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100301Z:b439c49e-4fb7-447a-af33-f11c3ea4ab57", + "Expires" : "-1", + "Content-Length" : "210", + "x-ms-request-id" : "b439c49e-4fb7-447a-af33-f11c3ea4ab57", + "Body" : "", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB69985096/providers/Microsoft.Web//sites/rs69985096?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB95773f9/providers/Microsoft.Web//sites/rs95773f9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0e7dc6ec-f186-41b5-9543-d9d6f6d0c127", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:28:26 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5047", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", + "Server" : "Microsoft-IIS/10.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11936", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b15feaf8-8d13-46fe-a383-8d16d28a398a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092826Z:b15feaf8-8d13-46fe-a383-8d16d28a398a", - "x-powered-by" : "ASP.NET", - "etag" : "\"1D663F7F7E20B6B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "c7c82a10-9b9f-481e-a3b2-465a44a7f2e3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB69985096/providers/Microsoft.Web/sites/rs69985096\",\"name\":\"rs69985096\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"name\":\"rs69985096\",\"state\":\"Running\",\"hostNames\":[\"rs69985096.azurewebsites.net\"],\"webSpace\":\"rg69985096-SouthCentralUSwebspace\",\"selfLink\":\"https://waws-prod-sn1-123.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg69985096-SouthCentralUSwebspace/sites/rs69985096\",\"repositorySiteName\":\"rs69985096\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"rs69985096.azurewebsites.net\",\"rs69985096.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"rs69985096.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"rs69985096.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69985096/providers/Microsoft.Web/serverfarms/Default1vk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-07-27T09:26:12.0866667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"rs69985096\",\"trafficManagerHostNames\":null,\"sku\":\"Free\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"104.210.147.57\",\"possibleInboundIpAddresses\":\"104.210.147.57\",\"ftpUsername\":\"rs69985096\\\\$rs69985096\",\"ftpsHostName\":\"ftps://waws-prod-sn1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.210.147.57,104.210.151.129,104.210.149.160,104.214.109.77,104.210.150.3\",\"possibleOutboundIpAddresses\":\"104.210.147.57,104.210.151.129,104.210.149.160,104.214.109.77,104.210.150.3,70.37.67.49,40.84.224.164,157.55.201.136\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-sn1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgB69985096\",\"defaultHostName\":\"rs69985096.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null}}" - } + "Date" : "Tue, 11 Aug 2020 10:03:02 GMT", + "x-ms-correlation-request-id" : "c46a8dba-4be5-4ab1-a6fe-5f248bdb9661", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "\"1D66FC64A27B915\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100303Z:c46a8dba-4be5-4ab1-a6fe-5f248bdb9661", + "X-AspNet-Version" : "4.0.30319", + "Expires" : "-1", + "Content-Length" : "5143", + "x-ms-request-id" : "c837e303-1b4c-450c-b2de-749f58cc4c03", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB95773f9/providers/Microsoft.Web/sites/rs95773f9\",\"name\":\"rs95773f9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"name\":\"rs95773f9\",\"state\":\"Running\",\"hostNames\":[\"rs95773f9.azurewebsites.net\"],\"webSpace\":\"rg95773f9-SouthCentralUSwebspace\",\"selfLink\":\"https://waws-prod-sn1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg95773f9-SouthCentralUSwebspace/sites/rs95773f9\",\"repositorySiteName\":\"rs95773f9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"rs95773f9.azurewebsites.net\",\"rs95773f9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"rs95773f9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"rs95773f9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg95773f9/providers/Microsoft.Web/serverfarms/Default1mx\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-11T10:00:49.2333333\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":null,\"scmIpSecurityRestrictions\":null,\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"rs95773f9\",\"trafficManagerHostNames\":null,\"sku\":\"Free\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"52.171.56.110\",\"possibleInboundIpAddresses\":\"52.171.56.110\",\"ftpUsername\":\"rs95773f9\\\\$rs95773f9\",\"ftpsHostName\":\"ftps://waws-prod-sn1-129.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.171.56.110,13.65.253.143,52.171.140.187,13.85.9.231,13.65.255.158\",\"possibleOutboundIpAddresses\":\"52.171.56.110,13.65.253.143,52.171.140.187,13.85.9.231,13.65.255.158,13.84.225.112,70.37.106.185,40.84.231.208\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-sn1-129\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgB95773f9\",\"defaultHostName\":\"rs95773f9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":[],\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", + "X-Powered-By" : "ASP.NET", + "Content-Type" : "application/json" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB69985096/providers/Microsoft.Web//sites/rs69985096?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB95773f9/providers/Microsoft.Web//sites/rs95773f9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f0abba82-d829-4bf6-8302-7f97996e5f21", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:28:28 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "5242", - "expires" : "-1", - "x-aspnet-version" : "4.0.30319", + "Server" : "Microsoft-IIS/10.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "297c8a6f-6fb0-47e9-a20e-c95f438e4b8d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-ratelimit-remaining-subscription-resource-requests" : "498", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092829Z:297c8a6f-6fb0-47e9-a20e-c95f438e4b8d", - "x-powered-by" : "ASP.NET", - "etag" : "\"1D663F7F7E20B6B\"", - "content-type" : "application/json", - "cache-control" : "no-cache", - "x-ms-request-id" : "9ae67af7-c22c-4cb9-ac0b-8ad0377e0c3a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB69985096/providers/Microsoft.Web/sites/rs69985096\",\"name\":\"rs69985096\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"name\":\"rs69985096\",\"state\":\"Running\",\"hostNames\":[\"rs69985096.azurewebsites.net\"],\"webSpace\":\"rg69985096-SouthCentralUSwebspace\",\"selfLink\":\"https://waws-prod-sn1-123.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg69985096-SouthCentralUSwebspace/sites/rs69985096\",\"repositorySiteName\":\"rs69985096\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"rs69985096.azurewebsites.net\",\"rs69985096.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"rs69985096.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"rs69985096.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69985096/providers/Microsoft.Web/serverfarms/Default1vk\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-07-27T09:28:27.89\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"rs69985096\",\"trafficManagerHostNames\":null,\"sku\":\"Free\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"104.210.147.57\",\"possibleInboundIpAddresses\":\"104.210.147.57\",\"ftpUsername\":\"rs69985096\\\\$rs69985096\",\"ftpsHostName\":\"ftps://waws-prod-sn1-123.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"104.210.147.57,104.210.151.129,104.210.149.160,104.214.109.77,104.210.150.3\",\"possibleOutboundIpAddresses\":\"104.210.147.57,104.210.151.129,104.210.149.160,104.214.109.77,104.210.150.3,70.37.67.49,40.84.224.164,157.55.201.136\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-sn1-123\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgB69985096\",\"defaultHostName\":\"rs69985096.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null}}" - } + "Date" : "Tue, 11 Aug 2020 10:03:05 GMT", + "x-ms-correlation-request-id" : "26528384-fbaa-48e0-91a8-67ad62da7db9", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "x-ms-ratelimit-remaining-subscription-resource-requests" : "499", + "Cache-Control" : "no-cache", + "ETag" : "\"1D66FC64A27B915\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100306Z:26528384-fbaa-48e0-91a8-67ad62da7db9", + "X-AspNet-Version" : "4.0.30319", + "Expires" : "-1", + "Content-Length" : "5343", + "x-ms-request-id" : "2de4e2a4-e095-4387-b9af-b0a32f402f16", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB95773f9/providers/Microsoft.Web/sites/rs95773f9\",\"name\":\"rs95773f9\",\"type\":\"Microsoft.Web/sites\",\"kind\":\"app\",\"location\":\"South Central US\",\"tags\":{},\"properties\":{\"name\":\"rs95773f9\",\"state\":\"Running\",\"hostNames\":[\"rs95773f9.azurewebsites.net\"],\"webSpace\":\"rg95773f9-SouthCentralUSwebspace\",\"selfLink\":\"https://waws-prod-sn1-129.api.azurewebsites.windows.net:454/subscriptions/00000000-0000-0000-0000-000000000000/webspaces/rg95773f9-SouthCentralUSwebspace/sites/rs95773f9\",\"repositorySiteName\":\"rs95773f9\",\"owner\":null,\"usageState\":\"Normal\",\"enabled\":true,\"adminEnabled\":true,\"enabledHostNames\":[\"rs95773f9.azurewebsites.net\",\"rs95773f9.scm.azurewebsites.net\"],\"siteProperties\":{\"metadata\":null,\"properties\":[{\"name\":\"LinuxFxVersion\",\"value\":\"\"},{\"name\":\"WindowsFxVersion\",\"value\":null}],\"appSettings\":null},\"availabilityState\":\"Normal\",\"sslCertificates\":null,\"csrs\":[],\"cers\":null,\"siteMode\":null,\"hostNameSslStates\":[{\"name\":\"rs95773f9.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Standard\"},{\"name\":\"rs95773f9.scm.azurewebsites.net\",\"sslState\":\"Disabled\",\"ipBasedSslResult\":null,\"virtualIP\":null,\"thumbprint\":null,\"toUpdate\":null,\"toUpdateIpBasedSsl\":null,\"ipBasedSslState\":\"NotConfigured\",\"hostType\":\"Repository\"}],\"computeMode\":null,\"serverFarm\":null,\"serverFarmId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg95773f9/providers/Microsoft.Web/serverfarms/Default1mx\",\"reserved\":false,\"isXenon\":false,\"hyperV\":false,\"lastModifiedTimeUtc\":\"2020-08-11T10:03:04.8466667\",\"storageRecoveryDefaultState\":\"Running\",\"contentAvailabilityState\":\"Normal\",\"runtimeAvailabilityState\":\"Normal\",\"siteConfig\":{\"numberOfWorkers\":null,\"defaultDocuments\":null,\"netFrameworkVersion\":null,\"phpVersion\":null,\"pythonVersion\":null,\"nodeVersion\":null,\"powerShellVersion\":null,\"linuxFxVersion\":null,\"windowsFxVersion\":null,\"requestTracingEnabled\":null,\"remoteDebuggingEnabled\":null,\"remoteDebuggingVersion\":null,\"httpLoggingEnabled\":null,\"azureMonitorLogCategories\":null,\"acrUseManagedIdentityCreds\":false,\"acrUserManagedIdentityID\":null,\"logsDirectorySizeLimit\":null,\"detailedErrorLoggingEnabled\":null,\"publishingUsername\":null,\"publishingPassword\":null,\"appSettings\":null,\"azureStorageAccounts\":null,\"metadata\":null,\"connectionStrings\":null,\"machineKey\":null,\"handlerMappings\":null,\"documentRoot\":null,\"scmType\":null,\"use32BitWorkerProcess\":null,\"webSocketsEnabled\":null,\"alwaysOn\":null,\"javaVersion\":null,\"javaContainer\":null,\"javaContainerVersion\":null,\"appCommandLine\":null,\"managedPipelineMode\":null,\"virtualApplications\":null,\"winAuthAdminState\":null,\"winAuthTenantState\":null,\"customAppPoolIdentityAdminState\":null,\"customAppPoolIdentityTenantState\":null,\"runtimeADUser\":null,\"runtimeADUserPassword\":null,\"loadBalancing\":null,\"routingRules\":null,\"experiments\":null,\"limits\":null,\"autoHealEnabled\":null,\"autoHealRules\":null,\"tracingOptions\":null,\"vnetName\":null,\"vnetRouteAllEnabled\":null,\"cors\":null,\"push\":null,\"apiDefinition\":null,\"apiManagementConfig\":null,\"autoSwapSlotName\":null,\"localMySqlEnabled\":null,\"managedServiceIdentityId\":null,\"xManagedServiceIdentityId\":null,\"ipSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictions\":[{\"ipAddress\":\"Any\",\"action\":\"Allow\",\"priority\":1,\"name\":\"Allow all\",\"description\":\"Allow all access\"}],\"scmIpSecurityRestrictionsUseMain\":null,\"http20Enabled\":null,\"minTlsVersion\":null,\"scmMinTlsVersion\":null,\"ftpsState\":null,\"preWarmedInstanceCount\":null,\"functionAppScaleLimit\":null,\"healthCheckPath\":null,\"fileChangeAuditEnabled\":null,\"functionsRuntimeScaleMonitoringEnabled\":null,\"websiteTimeZone\":null,\"minimumElasticInstanceCount\":0},\"deploymentId\":\"rs95773f9\",\"trafficManagerHostNames\":null,\"sku\":\"Free\",\"scmSiteAlsoStopped\":false,\"targetSwapSlot\":null,\"hostingEnvironment\":null,\"hostingEnvironmentProfile\":null,\"clientAffinityEnabled\":true,\"clientCertEnabled\":false,\"clientCertMode\":\"Required\",\"clientCertExclusionPaths\":null,\"hostNamesDisabled\":false,\"domainVerificationIdentifiers\":null,\"customDomainVerificationId\":\"0FFA32248F34E67BEAA6BC639753005F4F7BED4F59950F668037EEAB327F1054\",\"kind\":\"app\",\"inboundIpAddress\":\"52.171.56.110\",\"possibleInboundIpAddresses\":\"52.171.56.110\",\"ftpUsername\":\"rs95773f9\\\\$rs95773f9\",\"ftpsHostName\":\"ftps://waws-prod-sn1-129.ftp.azurewebsites.windows.net/site/wwwroot\",\"outboundIpAddresses\":\"52.171.56.110,13.65.253.143,52.171.140.187,13.85.9.231,13.65.255.158\",\"possibleOutboundIpAddresses\":\"52.171.56.110,13.65.253.143,52.171.140.187,13.85.9.231,13.65.255.158,13.84.225.112,70.37.106.185,40.84.231.208\",\"containerSize\":0,\"dailyMemoryTimeQuota\":0,\"suspendedTill\":null,\"siteDisabledReason\":0,\"functionExecutionUnitsCache\":null,\"maxNumberOfWorkers\":null,\"homeStamp\":\"waws-prod-sn1-129\",\"cloningInfo\":null,\"hostingEnvironmentId\":null,\"tags\":{},\"resourceGroup\":\"rgB95773f9\",\"defaultHostName\":\"rs95773f9.azurewebsites.net\",\"slotSwapStatus\":null,\"httpsOnly\":false,\"redundancyMode\":\"None\",\"inProgressOperationId\":null,\"geoDistributions\":null,\"privateEndpointConnections\":null,\"buildVersion\":null,\"targetBuildVersion\":null,\"migrationState\":null}}", + "X-Powered-By" : "ASP.NET", + "Content-Type" : "application/json" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "269f159a-ecde-4fe7-96a9-f6532a2090a3", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:28:29 GMT", - "content-length" : "54768", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "48503dbd-0292-4075-9ab4-9aede9f833e2", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092829Z:48503dbd-0292-4075-9ab4-9aede9f833e2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "48503dbd-0292-4075-9ab4-9aede9f833e2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 10:03:05 GMT", + "x-ms-correlation-request-id" : "e268fa57-3f52-48e2-9581-7282c3945a12", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100306Z:e268fa57-3f52-48e2-9581-7282c3945a12", + "Expires" : "-1", + "Content-Length" : "54768", + "x-ms-request-id" : "e268fa57-3f52-48e2-9581-7282c3945a12", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB69985096/providers/Microsoft.Web/sites/rs69985096?api-version=2019-08-01", + "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB95773f9/providers/Microsoft.Web/sites/rs95773f9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "aae61a6d-03b7-42fc-a1bc-fa226f5456e0", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:28:37 GMT", - "server" : "Microsoft-IIS/10.0", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14992", - "x-aspnet-version" : "4.0.30319", + "x-ms-ratelimit-remaining-subscription-deletes" : "14996", + "Server" : "Microsoft-IIS/10.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "81fbc40e-1449-42f5-9976-98ebd3bc001e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092838Z:81fbc40e-1449-42f5-9976-98ebd3bc001e", - "x-powered-by" : "ASP.NET", - "etag" : "\"1D663F848D3FD20\"", - "cache-control" : "no-cache", - "x-ms-request-id" : "7603faa2-e95d-490f-a197-fb4cc6d2937a", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:03:14 GMT", + "x-ms-correlation-request-id" : "4c297c75-4273-4dd2-83b8-711d92fe495c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "\"1D66FC69AFCACEB\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100315Z:4c297c75-4273-4dd2-83b8-711d92fe495c", + "X-AspNet-Version" : "4.0.30319", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "cc6bb340-4144-44df-a38f-0da5106546f8", + "X-Powered-By" : "ASP.NET" + }, + "Exception" : null }, { "Method" : "HEAD", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB69985096/providers/Microsoft.Web//sites/rs69985096?api-version=2019-08-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB95773f9/providers/Microsoft.Web//sites/rs95773f9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "7db2c9e4-7496-450f-b396-12f2a5f74f9b", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:28:38 GMT", - "content-length" : "213", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "404", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ba145ae6-8765-4f96-8bdb-9fe59bc10bc2", - "x-content-type-options" : "nosniff", + "Date" : "Tue, 11 Aug 2020 10:03:15 GMT", + "x-ms-correlation-request-id" : "7558d0b1-163c-417e-bb9f-44ae9c13e0fd", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", "x-ms-failure-cause" : "gateway", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092838Z:ba145ae6-8765-4f96-8bdb-9fe59bc10bc2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ba145ae6-8765-4f96-8bdb-9fe59bc10bc2", - "Body" : "" - } + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100315Z:7558d0b1-163c-417e-bb9f-44ae9c13e0fd", + "Expires" : "-1", + "Content-Length" : "211", + "x-ms-request-id" : "7558d0b1-163c-417e-bb9f-44ae9c13e0fd", + "Body" : "", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Web?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1abe765d-43a8-4335-9eb9-8c3ad959706a", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:28:38 GMT", - "content-length" : "54768", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", + "x-ms-ratelimit-remaining-subscription-reads" : "11976", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "903bd23e-3afd-4223-8735-76d232820de4", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092839Z:903bd23e-3afd-4223-8735-76d232820de4", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "903bd23e-3afd-4223-8735-76d232820de4", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 10:03:15 GMT", + "x-ms-correlation-request-id" : "03dd62c6-ef57-4c7c-9f15-e3107e804e27", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100316Z:03dd62c6-ef57-4c7c-9f15-e3107e804e27", + "Expires" : "-1", + "Content-Length" : "54768", + "x-ms-request-id" : "03dd62c6-ef57-4c7c-9f15-e3107e804e27", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "HEAD", - "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB69985096/providers/Microsoft.Web/sites/rs69985096?api-version=2019-08-01", + "Uri" : "http://localhost:1234//subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgB95773f9/providers/Microsoft.Web/sites/rs95773f9?api-version=2019-08-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ae515e3f-8acf-473f-978a-3fa64b01089b", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:28:38 GMT", - "content-length" : "213", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "404", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3a052ae2-db58-458e-b6d5-dbaeabb9fdf5", - "x-content-type-options" : "nosniff", + "Date" : "Tue, 11 Aug 2020 10:03:15 GMT", + "x-ms-correlation-request-id" : "46ca218d-604a-4e3a-b7d6-a06e99eb8d4e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", "x-ms-failure-cause" : "gateway", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092839Z:3a052ae2-db58-458e-b6d5-dbaeabb9fdf5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3a052ae2-db58-458e-b6d5-dbaeabb9fdf5", - "Body" : "" - } + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100316Z:46ca218d-604a-4e3a-b7d6-a06e99eb8d4e", + "Expires" : "-1", + "Content-Length" : "211", + "x-ms-request-id" : "46ca218d-604a-4e3a-b7d6-a06e99eb8d4e", + "Body" : "", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB69985096?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgB95773f9?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d64c1ccc-9238-4f1c-98f2-9e98afb2f58a", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:28:42 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14989", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "430faaa8-d8c6-4912-a686-6bbdfc92653b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092843Z:430faaa8-d8c6-4912-a686-6bbdfc92653b", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0I2OTk4NTA5Ni1TT1VUSENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "430faaa8-d8c6-4912-a686-6bbdfc92653b", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:03:19 GMT", + "x-ms-correlation-request-id" : "ec71ac2f-1551-4705-b6f6-151d17475882", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100320Z:ec71ac2f-1551-4705-b6f6-151d17475882", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "ec71ac2f-1551-4705-b6f6-151d17475882", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0I5NTc3M0Y5LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69985096?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg95773f9?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a4266132-3c65-46d1-a392-9e54476746a7", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:28:46 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14991", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14995", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "10e10dc2-e93d-4bad-b6b4-2fac32209a06", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092847Z:10e10dc2-e93d-4bad-b6b4-2fac32209a06", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzY5OTg1MDk2LUVBU1RVUyIsImpvYkxvY2F0aW9uIjoiZWFzdHVzIn0?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "10e10dc2-e93d-4bad-b6b4-2fac32209a06", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:03:23 GMT", + "x-ms-correlation-request-id" : "74ea5876-0887-49f8-9427-f11c70dddb47", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100324Z:74ea5876-0887-49f8-9427-f11c70dddb47", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "74ea5876-0887-49f8-9427-f11c70dddb47", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzk1NzczRjktRUFTVFVTIiwiam9iTG9jYXRpb24iOiJlYXN0dXMifQ?api-version=2020-06-01" + }, + "Exception" : null } ], - "variables" : [ "69985096" ] + "variables" : [ "95773f9" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canDeployVirtualNetwork.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canDeployVirtualNetwork.json index 5c98eb0e6a97..cd6c891a4240 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canDeployVirtualNetwork.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canDeployVirtualNetwork.json @@ -1,421 +1,527 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3bdf9227-4fa5-445d-b78a-4438e9b1d4eb", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:05:51 GMT", - "content-length" : "315", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1188", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d25a7ca3-3c90-4501-8adc-bb5b0456c82b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100552Z:d25a7ca3-3c90-4501-8adc-bb5b0456c82b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d25a7ca3-3c90-4501-8adc-bb5b0456c82b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638\",\"name\":\"rg45b03638\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-27T10:05:48.377868300Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:36 GMT", + "x-ms-correlation-request-id" : "b9638fa1-8135-443f-a31a-3d085070f205", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095837Z:b9638fa1-8135-443f-a31a-3d085070f205", + "Expires" : "-1", + "Content-Length" : "223", + "x-ms-request-id" : "b9638fa1-8135-443f-a31a-3d085070f205", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147\",\"name\":\"rg2545147\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "573d0ac2-7768-4218-9166-e5636d52bd48", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:05:57 GMT", - "content-length" : "2557", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1187", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0d495ca6-2605-4270-9907-ea8dd6305517", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100558Z:0d495ca6-2605-4270-9907-ea8dd6305517", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0d495ca6-2605-4270-9907-ea8dd6305517", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638\",\"name\":\"dpA45b03638\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-07-27T10:05:57.4469589Z\",\"duration\":\"PT2.2384213S\",\"correlationId\":\"0d495ca6-2605-4270-9907-ea8dd6305517\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/operationStatuses/08586057625302690759?api-version=2020-06-01" - } + "Date" : "Tue, 11 Aug 2020 09:58:42 GMT", + "x-ms-correlation-request-id" : "c10050f4-65e7-490b-a846-b325f8b50207", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095843Z:c10050f4-65e7-490b-a846-b325f8b50207", + "Expires" : "-1", + "Content-Length" : "2549", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operationStatuses/08586044669669458131?api-version=2020-06-01", + "x-ms-request-id" : "c10050f4-65e7-490b-a846-b325f8b50207", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147\",\"name\":\"dpA2545147\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-08-11T09:58:41.3545527Z\",\"duration\":\"PT2.8227283S\",\"correlationId\":\"c10050f4-65e7-490b-a846-b325f8b50207\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operationStatuses/08586044669669458131?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c3f20001-7565-4573-b376-09b94b1dece0" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", + "StatusCode" : "200", + "Date" : "Tue, 11 Aug 2020 09:59:14 GMT", + "x-ms-correlation-request-id" : "695b36e8-132c-4835-9ee1-ae50200fa22e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095914Z:695b36e8-132c-4835-9ee1-ae50200fa22e", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "695b36e8-132c-4835-9ee1-ae50200fa22e", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operationStatuses/08586044669669458131?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6f3b4d82-adab-428b-a0de-97f9d2d5531c" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "StatusCode" : "200", + "Date" : "Tue, 11 Aug 2020 09:59:44 GMT", + "x-ms-correlation-request-id" : "b24e1e8a-d1d3-46f2-a0c5-82830ee2291d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095945Z:b24e1e8a-d1d3-46f2-a0c5-82830ee2291d", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "b24e1e8a-d1d3-46f2-a0c5-82830ee2291d", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operationStatuses/08586044669669458131?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "64ddd7db-6a7a-44f2-9809-61bbb0944392" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", + "StatusCode" : "200", + "Date" : "Tue, 11 Aug 2020 10:00:14 GMT", + "x-ms-correlation-request-id" : "46a556a5-2220-41f7-a410-231b36fcba3b", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100015Z:46a556a5-2220-41f7-a410-231b36fcba3b", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "46a556a5-2220-41f7-a410-231b36fcba3b", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/operationStatuses/08586057625302690759?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operationStatuses/08586044669669458131?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "cef7ceb1-c616-4df0-a188-8e955ebfeeec" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:28 GMT", - "content-length" : "22", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11935", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "539a3d4e-1894-4da8-8d49-c0c739f19dfa", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100629Z:539a3d4e-1894-4da8-8d49-c0c739f19dfa", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "539a3d4e-1894-4da8-8d49-c0c739f19dfa", - "Body" : "{\"status\":\"Succeeded\"}" - } + "Date" : "Tue, 11 Aug 2020 10:00:45 GMT", + "x-ms-correlation-request-id" : "c5a0b053-efa1-44e5-afb9-9d284cb9df72", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100046Z:c5a0b053-efa1-44e5-afb9-9d284cb9df72", + "Expires" : "-1", + "Content-Length" : "22", + "x-ms-request-id" : "c5a0b053-efa1-44e5-afb9-9d284cb9df72", + "Body" : "{\"status\":\"Succeeded\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4c4d3d8e-ce54-4350-816b-7005d7be1591" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:29 GMT", - "content-length" : "3022", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11934", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9cf7f989-97a4-4ff3-aef0-659b8e94ef7c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100630Z:9cf7f989-97a4-4ff3-aef0-659b8e94ef7c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9cf7f989-97a4-4ff3-aef0-659b8e94ef7c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638\",\"name\":\"dpA45b03638\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:25.1061374Z\",\"duration\":\"PT29.8975998S\",\"correlationId\":\"0d495ca6-2605-4270-9907-ea8dd6305517\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}" - } + "Date" : "Tue, 11 Aug 2020 10:00:45 GMT", + "x-ms-correlation-request-id" : "fdf9f827-ef69-4831-91fd-166d72ec2f40", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100046Z:fdf9f827-ef69-4831-91fd-166d72ec2f40", + "Expires" : "-1", + "Content-Length" : "3012", + "x-ms-request-id" : "fdf9f827-ef69-4831-91fd-166d72ec2f40", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147\",\"name\":\"dpA2545147\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T10:00:39.8075572Z\",\"duration\":\"PT2M1.2757328S\",\"correlationId\":\"c10050f4-65e7-490b-a846-b325f8b50207\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/providers/Microsoft.Resources/deployments/?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/providers/Microsoft.Resources/deployments/?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ac4e0e32-a4dc-4b36-bd99-64f5bf724bdf", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:31 GMT", - "content-length" : "3034", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11933", + "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "196363c4-19ac-47b2-8a1d-4f8a7f2ae21b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100631Z:196363c4-19ac-47b2-8a1d-4f8a7f2ae21b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "196363c4-19ac-47b2-8a1d-4f8a7f2ae21b", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638\",\"name\":\"dpA45b03638\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:25.1061374Z\",\"duration\":\"PT29.8975998S\",\"correlationId\":\"0d495ca6-2605-4270-9907-ea8dd6305517\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}]}" - } + "Date" : "Tue, 11 Aug 2020 10:00:46 GMT", + "x-ms-correlation-request-id" : "93a255b6-e8bc-4a66-b9d3-e37514e34422", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100047Z:93a255b6-e8bc-4a66-b9d3-e37514e34422", + "Expires" : "-1", + "Content-Length" : "3024", + "x-ms-request-id" : "93a255b6-e8bc-4a66-b9d3-e37514e34422", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147\",\"name\":\"dpA2545147\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T10:00:39.8075572Z\",\"duration\":\"PT2M1.2757328S\",\"correlationId\":\"c10050f4-65e7-490b-a846-b325f8b50207\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "HEAD", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "2fdc1a5f-15d6-4e27-b476-8a91fe609605", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:31 GMT", - "content-length" : "0", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11932", + "x-ms-ratelimit-remaining-subscription-reads" : "11980", "StatusCode" : "204", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6c44d91f-9bfb-4691-8df2-78f0da987d2b", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100631Z:6c44d91f-9bfb-4691-8df2-78f0da987d2b", - "cache-control" : "no-cache", - "x-ms-request-id" : "6c44d91f-9bfb-4691-8df2-78f0da987d2b", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:00:46 GMT", + "x-ms-correlation-request-id" : "2d964696-7ddb-44f3-b030-690437519e67", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100047Z:2d964696-7ddb-44f3-b030-690437519e67", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "2d964696-7ddb-44f3-b030-690437519e67" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "03a87490-2fc3-424f-916d-63d302f6d530", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:32 GMT", - "content-length" : "3022", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11931", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "00a2c396-bed6-4284-94be-6f9a5b6efee2", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100632Z:00a2c396-bed6-4284-94be-6f9a5b6efee2", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "00a2c396-bed6-4284-94be-6f9a5b6efee2", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638\",\"name\":\"dpA45b03638\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:25.1061374Z\",\"duration\":\"PT29.8975998S\",\"correlationId\":\"0d495ca6-2605-4270-9907-ea8dd6305517\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}" - } + "Date" : "Tue, 11 Aug 2020 10:00:48 GMT", + "x-ms-correlation-request-id" : "6ec0d1c2-73b9-49d8-a37c-d9cad26596e2", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100048Z:6ec0d1c2-73b9-49d8-a37c-d9cad26596e2", + "Expires" : "-1", + "Content-Length" : "3012", + "x-ms-request-id" : "6ec0d1c2-73b9-49d8-a37c-d9cad26596e2", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147\",\"name\":\"dpA2545147\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T10:00:39.8075572Z\",\"duration\":\"PT2M1.2757328S\",\"correlationId\":\"c10050f4-65e7-490b-a846-b325f8b50207\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/providers/Microsoft.Network//virtualnetworks/VNet1?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/providers/Microsoft.Network//virtualnetworks/VNet1?api-version=2015-06-15", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3d99d0bf-eb14-4180-ade4-8ad3aabbf6e1", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1455", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11930", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f7c27fc9-9d9b-412e-b690-97086b4f0a76", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "24231ff2-d34d-423d-a605-35234bcb55c0", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100632Z:f7c27fc9-9d9b-412e-b690-97086b4f0a76", - "etag" : "W/\"1ccd7c8c-b4f8-4dad-9640-186839a8890f\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f8e23445-8446-4d99-a29a-78e3f0ba7952", - "Body" : "{\r\n \"name\": \"VNet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\",\r\n \"etag\": \"W/\\\"1ccd7c8c-b4f8-4dad-9640-186839a8890f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"962f89b3-da34-492d-a027-b5085383cd65\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\r\n \"etag\": \"W/\\\"1ccd7c8c-b4f8-4dad-9640-186839a8890f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"Subnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\r\n \"etag\": \"W/\\\"1ccd7c8c-b4f8-4dad-9640-186839a8890f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ]\r\n }\r\n}" - } + "Date" : "Tue, 11 Aug 2020 10:00:47 GMT", + "x-ms-correlation-request-id" : "97cc825d-2042-4650-90d7-5bdcaad040d6", + "x-ms-arm-service-request-id" : "c9e8b6e8-285b-4af7-ad5d-0d5cfac3628d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"86b57601-0272-4d60-8eaa-6103d6a50dd8\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100048Z:97cc825d-2042-4650-90d7-5bdcaad040d6", + "Expires" : "-1", + "Content-Length" : "1452", + "x-ms-request-id" : "a0eafd8a-5e8a-4f18-b3d4-0103dba59191", + "Body" : "{\r\n \"name\": \"VNet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\",\r\n \"etag\": \"W/\\\"86b57601-0272-4d60-8eaa-6103d6a50dd8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"02f29e6c-5064-457a-9e3e-b9e1c8e68852\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\r\n \"etag\": \"W/\\\"86b57601-0272-4d60-8eaa-6103d6a50dd8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"Subnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\r\n \"etag\": \"W/\\\"86b57601-0272-4d60-8eaa-6103d6a50dd8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ]\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/exportTemplate?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/exportTemplate?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f4114a3f-ed2a-466e-9f7f-5ff5fa37069c", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:33 GMT", - "content-length" : "1648", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "dc082ac5-dd5e-4ee4-882b-b55ed8e5a5f8", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100633Z:dc082ac5-dd5e-4ee4-882b-b55ed8e5a5f8", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "dc082ac5-dd5e-4ee4-882b-b55ed8e5a5f8", - "Body" : "{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vnetName\":{\"defaultValue\":\"VNet1\",\"type\":\"String\",\"metadata\":{\"description\":\"VNet name\"}},\"vnetAddressPrefix\":{\"defaultValue\":\"10.0.0.0/16\",\"type\":\"String\",\"metadata\":{\"description\":\"Address prefix\"}},\"subnet1Prefix\":{\"defaultValue\":\"10.0.0.0/24\",\"type\":\"String\",\"metadata\":{\"description\":\"Subnet 1 Prefix\"}},\"subnet1Name\":{\"defaultValue\":\"Subnet1\",\"type\":\"String\",\"metadata\":{\"description\":\"Subnet 1 Name\"}},\"subnet2Prefix\":{\"defaultValue\":\"10.0.1.0/24\",\"type\":\"String\",\"metadata\":{\"description\":\"Subnet 2 Prefix\"}},\"subnet2Name\":{\"defaultValue\":\"Subnet2\",\"type\":\"String\",\"metadata\":{\"description\":\"Subnet 2 Name\"}},\"location\":{\"defaultValue\":\"[resourceGroup().location]\",\"type\":\"String\",\"metadata\":{\"description\":\"Location for all resources.\"}}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Network/virtualNetworks\",\"apiVersion\":\"2018-10-01\",\"name\":\"[parameters('vnetName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"[parameters('vnetAddressPrefix')]\"]}},\"resources\":[{\"type\":\"subnets\",\"apiVersion\":\"2018-10-01\",\"name\":\"[parameters('subnet1Name')]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[parameters('vnetName')]\"],\"properties\":{\"addressPrefix\":\"[parameters('subnet1Prefix')]\"}},{\"type\":\"subnets\",\"apiVersion\":\"2018-10-01\",\"name\":\"[parameters('subnet2Name')]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[parameters('vnetName')]\",\"[parameters('subnet1Name')]\"],\"properties\":{\"addressPrefix\":\"[parameters('subnet2Prefix')]\"}}]}]}}" - } + "Date" : "Tue, 11 Aug 2020 10:00:48 GMT", + "x-ms-correlation-request-id" : "90c4b092-2b38-4a79-9cb6-bf423fb4236e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100048Z:90c4b092-2b38-4a79-9cb6-bf423fb4236e", + "Expires" : "-1", + "Content-Length" : "1648", + "x-ms-request-id" : "90c4b092-2b38-4a79-9cb6-bf423fb4236e", + "Body" : "{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"vnetName\":{\"defaultValue\":\"VNet1\",\"type\":\"String\",\"metadata\":{\"description\":\"VNet name\"}},\"vnetAddressPrefix\":{\"defaultValue\":\"10.0.0.0/16\",\"type\":\"String\",\"metadata\":{\"description\":\"Address prefix\"}},\"subnet1Prefix\":{\"defaultValue\":\"10.0.0.0/24\",\"type\":\"String\",\"metadata\":{\"description\":\"Subnet 1 Prefix\"}},\"subnet1Name\":{\"defaultValue\":\"Subnet1\",\"type\":\"String\",\"metadata\":{\"description\":\"Subnet 1 Name\"}},\"subnet2Prefix\":{\"defaultValue\":\"10.0.1.0/24\",\"type\":\"String\",\"metadata\":{\"description\":\"Subnet 2 Prefix\"}},\"subnet2Name\":{\"defaultValue\":\"Subnet2\",\"type\":\"String\",\"metadata\":{\"description\":\"Subnet 2 Name\"}},\"location\":{\"defaultValue\":\"[resourceGroup().location]\",\"type\":\"String\",\"metadata\":{\"description\":\"Location for all resources.\"}}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Network/virtualNetworks\",\"apiVersion\":\"2018-10-01\",\"name\":\"[parameters('vnetName')]\",\"location\":\"[parameters('location')]\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"[parameters('vnetAddressPrefix')]\"]}},\"resources\":[{\"type\":\"subnets\",\"apiVersion\":\"2018-10-01\",\"name\":\"[parameters('subnet1Name')]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[parameters('vnetName')]\"],\"properties\":{\"addressPrefix\":\"[parameters('subnet1Prefix')]\"}},{\"type\":\"subnets\",\"apiVersion\":\"2018-10-01\",\"name\":\"[parameters('subnet2Name')]\",\"location\":\"[parameters('location')]\",\"dependsOn\":[\"[parameters('vnetName')]\",\"[parameters('subnet1Name')]\"],\"properties\":{\"addressPrefix\":\"[parameters('subnet2Prefix')]\"}}]}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/exportTemplate?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/exportTemplate?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "2f2b815a-2390-4dca-a8c0-90d8aa63a267", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:35 GMT", - "content-length" : "2265", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11927", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0824675b-1844-43df-9ad7-e9536aec29f7", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100635Z:0824675b-1844-43df-9ad7-e9536aec29f7", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0824675b-1844-43df-9ad7-e9536aec29f7", - "Body" : "{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"virtualNetworks_VNet1_name\":{\"defaultValue\":\"VNet1\",\"type\":\"String\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Network/virtualNetworks\",\"apiVersion\":\"2020-05-01\",\"name\":\"[parameters('virtualNetworks_VNet1_name')]\",\"comments\":\"Generalized from resource: '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1'.\",\"location\":\"southcentralus\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"Subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"delegations\":[],\"privateEndpointNetworkPolicies\":\"Enabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\"}},{\"name\":\"Subnet2\",\"properties\":{\"addressPrefix\":\"10.0.1.0/24\",\"delegations\":[],\"privateEndpointNetworkPolicies\":\"Enabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\"}}],\"virtualNetworkPeerings\":[],\"enableDdosProtection\":false,\"enableVmProtection\":false}},{\"type\":\"Microsoft.Network/virtualNetworks/subnets\",\"apiVersion\":\"2020-05-01\",\"name\":\"[concat(parameters('virtualNetworks_VNet1_name'), '/Subnet1')]\",\"comments\":\"Generalized from resource: '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1'.\",\"dependsOn\":[\"[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_VNet1_name'))]\"],\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"delegations\":[],\"privateEndpointNetworkPolicies\":\"Enabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\"}},{\"type\":\"Microsoft.Network/virtualNetworks/subnets\",\"apiVersion\":\"2020-05-01\",\"name\":\"[concat(parameters('virtualNetworks_VNet1_name'), '/Subnet2')]\",\"comments\":\"Generalized from resource: '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2'.\",\"dependsOn\":[\"[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_VNet1_name'))]\"],\"properties\":{\"addressPrefix\":\"10.0.1.0/24\",\"delegations\":[],\"privateEndpointNetworkPolicies\":\"Enabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\"}}]}}" - } + "Date" : "Tue, 11 Aug 2020 10:00:49 GMT", + "x-ms-correlation-request-id" : "aef8b69a-ca85-4239-8a0d-c237d3203041", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100050Z:aef8b69a-ca85-4239-8a0d-c237d3203041", + "Expires" : "-1", + "Content-Length" : "2262", + "x-ms-request-id" : "aef8b69a-ca85-4239-8a0d-c237d3203041", + "Body" : "{\"template\":{\"$schema\":\"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\"contentVersion\":\"1.0.0.0\",\"parameters\":{\"virtualNetworks_VNet1_name\":{\"defaultValue\":\"VNet1\",\"type\":\"String\"}},\"variables\":{},\"resources\":[{\"type\":\"Microsoft.Network/virtualNetworks\",\"apiVersion\":\"2020-05-01\",\"name\":\"[parameters('virtualNetworks_VNet1_name')]\",\"comments\":\"Generalized from resource: '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1'.\",\"location\":\"southcentralus\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"subnets\":[{\"name\":\"Subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"delegations\":[],\"privateEndpointNetworkPolicies\":\"Enabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\"}},{\"name\":\"Subnet2\",\"properties\":{\"addressPrefix\":\"10.0.1.0/24\",\"delegations\":[],\"privateEndpointNetworkPolicies\":\"Enabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\"}}],\"virtualNetworkPeerings\":[],\"enableDdosProtection\":false,\"enableVmProtection\":false}},{\"type\":\"Microsoft.Network/virtualNetworks/subnets\",\"apiVersion\":\"2020-05-01\",\"name\":\"[concat(parameters('virtualNetworks_VNet1_name'), '/Subnet1')]\",\"comments\":\"Generalized from resource: '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1'.\",\"dependsOn\":[\"[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_VNet1_name'))]\"],\"properties\":{\"addressPrefix\":\"10.0.0.0/24\",\"delegations\":[],\"privateEndpointNetworkPolicies\":\"Enabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\"}},{\"type\":\"Microsoft.Network/virtualNetworks/subnets\",\"apiVersion\":\"2020-05-01\",\"name\":\"[concat(parameters('virtualNetworks_VNet1_name'), '/Subnet2')]\",\"comments\":\"Generalized from resource: '/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2'.\",\"dependsOn\":[\"[resourceId('Microsoft.Network/virtualNetworks', parameters('virtualNetworks_VNet1_name'))]\"],\"properties\":{\"addressPrefix\":\"10.0.1.0/24\",\"delegations\":[],\"privateEndpointNetworkPolicies\":\"Enabled\",\"privateLinkServiceNetworkPolicies\":\"Enabled\"}}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/deployments/dpA45b03638/operations?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/deployments/dpA2545147/operations?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3751944b-ef0e-4790-85a0-79e91c37bc2b", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:36 GMT", - "content-length" : "3075", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11926", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "42cf4a4f-c29c-4e51-b9f1-85805578ced3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100636Z:42cf4a4f-c29c-4e51-b9f1-85805578ced3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "42cf4a4f-c29c-4e51-b9f1-85805578ced3", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/operations/C37E4430DEE07296\",\"operationId\":\"C37E4430DEE07296\",\"properties\":{\"provisioningOperation\":\"DeploymentCleanup\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:25.0170656Z\",\"duration\":\"PT0.046467S\",\"trackingId\":\"bce2f02e-13b6-4687-907c-5b902756f78d\",\"statusCode\":\"OK\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/operations/EC700B6ACE53365F\",\"operationId\":\"EC700B6ACE53365F\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:24.9315254Z\",\"duration\":\"PT6.0583884S\",\"trackingId\":\"9c35ea52-16b5-451f-b7c6-7ea74a008335\",\"serviceRequestId\":\"dd9f6eb2-e9e8-4743-acd8-87ae233aab68\",\"statusCode\":\"OK\",\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/operations/49039ED23B651E4B\",\"operationId\":\"49039ED23B651E4B\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:18.8357637Z\",\"duration\":\"PT9.4473625S\",\"trackingId\":\"fcf403ff-8cbc-4d8f-bba9-d82f36934804\",\"serviceRequestId\":\"9b8995e1-6d90-4229-a609-0beac2a90d0e\",\"statusCode\":\"OK\",\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/operations/8D4F74906BF076D1\",\"operationId\":\"8D4F74906BF076D1\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:09.2417196Z\",\"duration\":\"PT10.3632325S\",\"trackingId\":\"08f5776b-3778-4124-8efd-b63100f474e2\",\"serviceRequestId\":\"28d43496-9fa1-4adf-b413-85984726a6ea\",\"statusCode\":\"OK\",\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/operations/08586057625302690759\",\"operationId\":\"08586057625302690759\",\"properties\":{\"provisioningOperation\":\"EvaluateDeploymentOutput\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:25.0887674Z\",\"duration\":\"PT0.0460832S\",\"trackingId\":\"00fdef63-a30e-4181-9a14-2903e1982b72\",\"statusCode\":\"OK\"}}]}" - } + "Date" : "Tue, 11 Aug 2020 10:00:50 GMT", + "x-ms-correlation-request-id" : "fb6cb34f-8003-4844-9257-7588f580f378", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100051Z:fb6cb34f-8003-4844-9257-7588f580f378", + "Expires" : "-1", + "Content-Length" : "3067", + "x-ms-request-id" : "fb6cb34f-8003-4844-9257-7588f580f378", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operations/92BD5582FFD4EC46\",\"operationId\":\"92BD5582FFD4EC46\",\"properties\":{\"provisioningOperation\":\"DeploymentCleanup\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T10:00:39.7131551Z\",\"duration\":\"PT0.0631153S\",\"trackingId\":\"11e4d211-9177-4245-9a87-73b9ff9b694c\",\"statusCode\":\"OK\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operations/C14B74418E447CE9\",\"operationId\":\"C14B74418E447CE9\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T10:00:39.6182109Z\",\"duration\":\"PT1M39.1747885S\",\"trackingId\":\"9929121f-dec4-47e0-826a-3028eba45a3c\",\"serviceRequestId\":\"6a858f9e-7bce-4d2d-a96d-16f6b1f14f6a\",\"statusCode\":\"OK\",\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operations/71F4BEFBB272AF7C\",\"operationId\":\"71F4BEFBB272AF7C\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T09:59:34.6943626Z\",\"duration\":\"PT34.2509402S\",\"trackingId\":\"b3b71722-8440-482f-adfe-c406a285ad8d\",\"serviceRequestId\":\"62fd80db-61bb-4e16-951e-d49b8edab3fa\",\"statusCode\":\"OK\",\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operations/4B3FA57ED1F52A53\",\"operationId\":\"4B3FA57ED1F52A53\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T09:59:00.4077721Z\",\"duration\":\"PT19.2613933S\",\"trackingId\":\"ada6637f-8bef-4614-98ff-483e851663ac\",\"serviceRequestId\":\"00e11f5d-5336-4c31-be6a-eed940b97c5a\",\"statusCode\":\"OK\",\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operations/08586044669669458131\",\"operationId\":\"08586044669669458131\",\"properties\":{\"provisioningOperation\":\"EvaluateDeploymentOutput\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T10:00:39.7902653Z\",\"duration\":\"PT0.0498712S\",\"trackingId\":\"da39dab6-b652-49c2-b82a-12a54e8f24ee\",\"statusCode\":\"OK\"}}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/deployments/dpA45b03638/operations?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/deployments/dpA2545147/operations?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "58a4e640-c6b0-45d1-9780-596f0df39912", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:37 GMT", - "content-length" : "3075", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11925", + "x-ms-ratelimit-remaining-subscription-reads" : "11979", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b14db423-6e7a-431b-8a6f-bcc4a0dcadcc", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100637Z:b14db423-6e7a-431b-8a6f-bcc4a0dcadcc", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b14db423-6e7a-431b-8a6f-bcc4a0dcadcc", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/operations/C37E4430DEE07296\",\"operationId\":\"C37E4430DEE07296\",\"properties\":{\"provisioningOperation\":\"DeploymentCleanup\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:25.0170656Z\",\"duration\":\"PT0.046467S\",\"trackingId\":\"bce2f02e-13b6-4687-907c-5b902756f78d\",\"statusCode\":\"OK\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/operations/EC700B6ACE53365F\",\"operationId\":\"EC700B6ACE53365F\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:24.9315254Z\",\"duration\":\"PT6.0583884S\",\"trackingId\":\"9c35ea52-16b5-451f-b7c6-7ea74a008335\",\"serviceRequestId\":\"dd9f6eb2-e9e8-4743-acd8-87ae233aab68\",\"statusCode\":\"OK\",\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/operations/49039ED23B651E4B\",\"operationId\":\"49039ED23B651E4B\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:18.8357637Z\",\"duration\":\"PT9.4473625S\",\"trackingId\":\"fcf403ff-8cbc-4d8f-bba9-d82f36934804\",\"serviceRequestId\":\"9b8995e1-6d90-4229-a609-0beac2a90d0e\",\"statusCode\":\"OK\",\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/operations/8D4F74906BF076D1\",\"operationId\":\"8D4F74906BF076D1\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:09.2417196Z\",\"duration\":\"PT10.3632325S\",\"trackingId\":\"08f5776b-3778-4124-8efd-b63100f474e2\",\"serviceRequestId\":\"28d43496-9fa1-4adf-b413-85984726a6ea\",\"statusCode\":\"OK\",\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/operations/08586057625302690759\",\"operationId\":\"08586057625302690759\",\"properties\":{\"provisioningOperation\":\"EvaluateDeploymentOutput\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:25.0887674Z\",\"duration\":\"PT0.0460832S\",\"trackingId\":\"00fdef63-a30e-4181-9a14-2903e1982b72\",\"statusCode\":\"OK\"}}]}" - } + "Date" : "Tue, 11 Aug 2020 10:00:50 GMT", + "x-ms-correlation-request-id" : "e15d0dd6-273b-4ee5-8308-c5c42881d875", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100051Z:e15d0dd6-273b-4ee5-8308-c5c42881d875", + "Expires" : "-1", + "Content-Length" : "3067", + "x-ms-request-id" : "e15d0dd6-273b-4ee5-8308-c5c42881d875", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operations/92BD5582FFD4EC46\",\"operationId\":\"92BD5582FFD4EC46\",\"properties\":{\"provisioningOperation\":\"DeploymentCleanup\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T10:00:39.7131551Z\",\"duration\":\"PT0.0631153S\",\"trackingId\":\"11e4d211-9177-4245-9a87-73b9ff9b694c\",\"statusCode\":\"OK\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operations/C14B74418E447CE9\",\"operationId\":\"C14B74418E447CE9\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T10:00:39.6182109Z\",\"duration\":\"PT1M39.1747885S\",\"trackingId\":\"9929121f-dec4-47e0-826a-3028eba45a3c\",\"serviceRequestId\":\"6a858f9e-7bce-4d2d-a96d-16f6b1f14f6a\",\"statusCode\":\"OK\",\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operations/71F4BEFBB272AF7C\",\"operationId\":\"71F4BEFBB272AF7C\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T09:59:34.6943626Z\",\"duration\":\"PT34.2509402S\",\"trackingId\":\"b3b71722-8440-482f-adfe-c406a285ad8d\",\"serviceRequestId\":\"62fd80db-61bb-4e16-951e-d49b8edab3fa\",\"statusCode\":\"OK\",\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operations/4B3FA57ED1F52A53\",\"operationId\":\"4B3FA57ED1F52A53\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T09:59:00.4077721Z\",\"duration\":\"PT19.2613933S\",\"trackingId\":\"ada6637f-8bef-4614-98ff-483e851663ac\",\"serviceRequestId\":\"00e11f5d-5336-4c31-be6a-eed940b97c5a\",\"statusCode\":\"OK\",\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operations/08586044669669458131\",\"operationId\":\"08586044669669458131\",\"properties\":{\"provisioningOperation\":\"EvaluateDeploymentOutput\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T10:00:39.7902653Z\",\"duration\":\"PT0.0498712S\",\"trackingId\":\"da39dab6-b652-49c2-b82a-12a54e8f24ee\",\"statusCode\":\"OK\"}}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/deployments/dpA45b03638/operations/C37E4430DEE07296?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/deployments/dpA2545147/operations/92BD5582FFD4EC46?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e6ebe286-3139-4800-a766-3b5f161a79a6", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:38 GMT", - "content-length" : "430", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11924", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "03cb21ad-f831-468a-b658-800be0bb86e5", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100638Z:03cb21ad-f831-468a-b658-800be0bb86e5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "03cb21ad-f831-468a-b658-800be0bb86e5", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg45b03638/providers/Microsoft.Resources/deployments/dpA45b03638/operations/C37E4430DEE07296\",\"operationId\":\"C37E4430DEE07296\",\"properties\":{\"provisioningOperation\":\"DeploymentCleanup\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T10:06:25.0170656Z\",\"duration\":\"PT0.046467S\",\"trackingId\":\"bce2f02e-13b6-4687-907c-5b902756f78d\",\"statusCode\":\"OK\"}}" - } + "Date" : "Tue, 11 Aug 2020 10:00:52 GMT", + "x-ms-correlation-request-id" : "4db63247-901d-4741-b678-5d27b66f5306", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100052Z:4db63247-901d-4741-b678-5d27b66f5306", + "Expires" : "-1", + "Content-Length" : "429", + "x-ms-request-id" : "4db63247-901d-4741-b678-5d27b66f5306", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg2545147/providers/Microsoft.Resources/deployments/dpA2545147/operations/92BD5582FFD4EC46\",\"operationId\":\"92BD5582FFD4EC46\",\"properties\":{\"provisioningOperation\":\"DeploymentCleanup\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T10:00:39.7131551Z\",\"duration\":\"PT0.0631153S\",\"trackingId\":\"11e4d211-9177-4245-9a87-73b9ff9b694c\",\"statusCode\":\"OK\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638/providers/Microsoft.Network//virtualnetworks/VNet1?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147/providers/Microsoft.Network//virtualnetworks/VNet1?api-version=2015-06-15", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a7e19077-f9e8-41cb-9645-36799700af43", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:39 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14988", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14996", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f369c11b-b133-4abf-8fbe-59e015948c1e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "3e78de80-ef56-4c92-8ae0-b56962619c11", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100639Z:f369c11b-b133-4abf-8fbe-59e015948c1e", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/7e59b441-2414-499e-9616-d6ec39a9fed0?api-version=2015-06-15", - "cache-control" : "no-cache", - "x-ms-request-id" : "7e59b441-2414-499e-9616-d6ec39a9fed0", - "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7e59b441-2414-499e-9616-d6ec39a9fed0?api-version=2015-06-15" - } + "Date" : "Tue, 11 Aug 2020 10:00:52 GMT", + "x-ms-correlation-request-id" : "c5b6ad18-8103-4017-8c75-b5aa52164cb7", + "x-ms-arm-service-request-id" : "37a56b00-c7a5-4f9c-bdbd-683714231745", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100053Z:c5b6ad18-8103-4017-8c75-b5aa52164cb7", + "Expires" : "-1", + "Content-Length" : "0", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ce675837-b126-4173-8a20-fd719510edda?api-version=2015-06-15", + "x-ms-request-id" : "ce675837-b126-4173-8a20-fd719510edda", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/ce675837-b126-4173-8a20-fd719510edda?api-version=2015-06-15" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7e59b441-2414-499e-9616-d6ec39a9fed0?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ce675837-b126-4173-8a20-fd719510edda?api-version=2015-06-15", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "96ebd91d-cb78-4f0e-ad2d-091fcff751eb" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:51 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11923", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e1d73f42-d8dc-4446-8610-7f28a81fe411", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "5b923006-366c-47ee-887e-4ea8f245db05", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100651Z:e1d73f42-d8dc-4446-8610-7f28a81fe411", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "cd956d40-4a14-4332-9038-7cc3057b35ca", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Tue, 11 Aug 2020 10:01:03 GMT", + "x-ms-correlation-request-id" : "1f8030da-9ad6-4d68-92db-64668a73dd64", + "x-ms-arm-service-request-id" : "adad6b2f-ab58-4e9a-bbc3-5d83f2ea1431", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100104Z:1f8030da-9ad6-4d68-92db-64668a73dd64", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "1c1d4023-7560-426c-98fb-eb4412c1b98a", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/7e59b441-2414-499e-9616-d6ec39a9fed0?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/ce675837-b126-4173-8a20-fd719510edda?api-version=2015-06-15", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5353d684-84e9-420a-a8c4-8f1a4e119a09" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:51 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11922", + "Azure-AsyncNotification" : "Enabled", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "204", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f369c11b-b133-4abf-8fbe-59e015948c1e", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "3e78de80-ef56-4c92-8ae0-b56962619c11", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100651Z:db674508-99ae-4880-9033-6d18ad67a50c", - "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/7e59b441-2414-499e-9616-d6ec39a9fed0?api-version=2015-06-15", - "cache-control" : "no-cache", - "x-ms-request-id" : "7e59b441-2414-499e-9616-d6ec39a9fed0", + "Date" : "Tue, 11 Aug 2020 10:01:05 GMT", + "x-ms-correlation-request-id" : "c5b6ad18-8103-4017-8c75-b5aa52164cb7", + "x-ms-arm-service-request-id" : "37a56b00-c7a5-4f9c-bdbd-683714231745", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100105Z:2d77ab1f-b66d-43ee-8e83-fbaedd8d49d4", + "Expires" : "-1", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ce675837-b126-4173-8a20-fd719510edda?api-version=2015-06-15", + "x-ms-request-id" : "ce675837-b126-4173-8a20-fd719510edda", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/7e59b441-2414-499e-9616-d6ec39a9fed0?api-version=2015-06-15" - } + "Content-Type" : "application/json; charset=utf-8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/ce675837-b126-4173-8a20-fd719510edda?api-version=2015-06-15" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg45b03638?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg2545147?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b1430558-7b8c-4b85-877c-4476620320a4", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 10:06:55 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14987", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4f958ab4-a396-47d9-b3ec-d8495902554c", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T100655Z:4f958ab4-a396-47d9-b3ec-d8495902554c", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzQ1QjAzNjM4LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "4f958ab4-a396-47d9-b3ec-d8495902554c", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:01:09 GMT", + "x-ms-correlation-request-id" : "15954361-435f-48db-be5c-b68c5062ede7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100109Z:15954361-435f-48db-be5c-b68c5062ede7", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "15954361-435f-48db-be5c-b68c5062ede7", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzI1NDUxNDctU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2020-06-01" + }, + "Exception" : null } ], - "variables" : [ "45b03638" ] + "variables" : [ "2545147" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canDeployVirtualNetworkSyncPoll.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canDeployVirtualNetworkSyncPoll.json index c5dc6a2bca71..9549bd7428ef 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canDeployVirtualNetworkSyncPoll.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canDeployVirtualNetworkSyncPoll.json @@ -1,215 +1,207 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaaa81587?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5095788?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "8333d63b-a9e8-4cc1-ad1c-8d5c07956956", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:03 GMT", - "content-length" : "315", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "12960c63-89cb-41cd-9c12-e5d604f34246", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092404Z:12960c63-89cb-41cd-9c12-e5d604f34246", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "12960c63-89cb-41cd-9c12-e5d604f34246", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587\",\"name\":\"rgaaa81587\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-27T09:24:01.286306400Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:35 GMT", + "x-ms-correlation-request-id" : "218aa17a-3574-4e2c-a75a-811c55508a5b", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095835Z:218aa17a-3574-4e2c-a75a-811c55508a5b", + "Expires" : "-1", + "Content-Length" : "223", + "x-ms-request-id" : "218aa17a-3574-4e2c-a75a-811c55508a5b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788\",\"name\":\"rg5095788\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaaa81587/providers/Microsoft.Resources/deployments/dpDaaa81587?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5095788/providers/Microsoft.Resources/deployments/dpD5095788?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f78b30eb-8b72-463b-a966-d6cdae4256f8", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:09 GMT", - "content-length" : "2557", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "32fd79c0-c09c-4bbf-b715-436e9dae88d8", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092410Z:32fd79c0-c09c-4bbf-b715-436e9dae88d8", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "32fd79c0-c09c-4bbf-b715-436e9dae88d8", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Resources/deployments/dpDaaa81587\",\"name\":\"dpDaaa81587\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-07-27T09:24:08.4962092Z\",\"duration\":\"PT2.3810079S\",\"correlationId\":\"32fd79c0-c09c-4bbf-b715-436e9dae88d8\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaaa81587/providers/Microsoft.Resources/deployments/dpDaaa81587/operationStatuses/08586057650393624161?api-version=2020-06-01" - } - }, { - "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaaa81587/providers/Microsoft.Resources/deployments/dpDaaa81587/operationStatuses/08586057650393624161?api-version=2020-06-01", - "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "Date" : "Tue, 11 Aug 2020 09:58:41 GMT", + "x-ms-correlation-request-id" : "b3d87a12-2b87-4390-87af-adcec72b2f37", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095842Z:b3d87a12-2b87-4390-87af-adcec72b2f37", + "Expires" : "-1", + "Content-Length" : "2549", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5095788/providers/Microsoft.Resources/deployments/dpD5095788/operationStatuses/08586044669675618277?api-version=2020-06-01", + "x-ms-request-id" : "b3d87a12-2b87-4390-87af-adcec72b2f37", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Resources/deployments/dpD5095788\",\"name\":\"dpD5095788\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-08-11T09:58:40.3923291Z\",\"duration\":\"PT2.4765367S\",\"correlationId\":\"b3d87a12-2b87-4390-87af-adcec72b2f37\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" }, - "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:09 GMT", - "content-length" : "20", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", - "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "527230af-6737-4340-8829-8d7cdebd38a0", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092410Z:527230af-6737-4340-8829-8d7cdebd38a0", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "527230af-6737-4340-8829-8d7cdebd38a0", - "Body" : "{\"status\":\"Running\"}" - } + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaaa81587/providers/Microsoft.Resources/deployments/dpDaaa81587/operationStatuses/08586057650393624161?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5095788/providers/Microsoft.Resources/deployments/dpD5095788/operationStatuses/08586044669675618277?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "fd080c15-ad41-41b5-86bf-af678772c385" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:21 GMT", - "content-length" : "20", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e8f2ccb5-0f46-466c-bbbc-0849659d7911", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092421Z:e8f2ccb5-0f46-466c-bbbc-0849659d7911", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e8f2ccb5-0f46-466c-bbbc-0849659d7911", - "Body" : "{\"status\":\"Running\"}" - } + "Date" : "Tue, 11 Aug 2020 09:58:42 GMT", + "x-ms-correlation-request-id" : "0f90c37a-b096-4703-8b65-11643571be08", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095842Z:0f90c37a-b096-4703-8b65-11643571be08", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "0f90c37a-b096-4703-8b65-11643571be08", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaaa81587/providers/Microsoft.Resources/deployments/dpDaaa81587/operationStatuses/08586057650393624161?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5095788/providers/Microsoft.Resources/deployments/dpD5095788/operationStatuses/08586044669675618277?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ef0f509b-7b5c-4e4b-ba7f-79662481bda5" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:31 GMT", - "content-length" : "20", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7ec60ee4-ef2e-4e1b-80a3-686770f27760", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092432Z:7ec60ee4-ef2e-4e1b-80a3-686770f27760", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7ec60ee4-ef2e-4e1b-80a3-686770f27760", - "Body" : "{\"status\":\"Running\"}" - } + "Date" : "Tue, 11 Aug 2020 09:58:53 GMT", + "x-ms-correlation-request-id" : "4a101826-bd52-4364-89e3-410e2358f9d1", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095853Z:4a101826-bd52-4364-89e3-410e2358f9d1", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "4a101826-bd52-4364-89e3-410e2358f9d1", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaaa81587/providers/Microsoft.Resources/deployments/dpDaaa81587/operationStatuses/08586057650393624161?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5095788/providers/Microsoft.Resources/deployments/dpD5095788/operationStatuses/08586044669675618277?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "09ed582c-af90-46b9-b482-81973538cc21" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:42 GMT", - "content-length" : "20", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c1415002-1b1d-4e34-9725-667288bcb247", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092442Z:c1415002-1b1d-4e34-9725-667288bcb247", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c1415002-1b1d-4e34-9725-667288bcb247", - "Body" : "{\"status\":\"Running\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:03 GMT", + "x-ms-correlation-request-id" : "bbd53234-89d1-49c1-ab54-a276adbdc754", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095903Z:bbd53234-89d1-49c1-ab54-a276adbdc754", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "bbd53234-89d1-49c1-ab54-a276adbdc754", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaaa81587/providers/Microsoft.Resources/deployments/dpDaaa81587/operationStatuses/08586057650393624161?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5095788/providers/Microsoft.Resources/deployments/dpD5095788/operationStatuses/08586044669675618277?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "185d8d63-bc5c-4cc4-96ee-e388f3ceecd3" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:52 GMT", - "content-length" : "22", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11975", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a894eebd-daa3-41e8-af91-9964babf3a8f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092453Z:a894eebd-daa3-41e8-af91-9964babf3a8f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a894eebd-daa3-41e8-af91-9964babf3a8f", - "Body" : "{\"status\":\"Succeeded\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:13 GMT", + "x-ms-correlation-request-id" : "c318ac02-2e96-4460-af81-6ca0349f2097", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095914Z:c318ac02-2e96-4460-af81-6ca0349f2097", + "Expires" : "-1", + "Content-Length" : "22", + "x-ms-request-id" : "c318ac02-2e96-4460-af81-6ca0349f2097", + "Body" : "{\"status\":\"Succeeded\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaaa81587/providers/Microsoft.Resources/deployments/dpDaaa81587?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5095788/providers/Microsoft.Resources/deployments/dpD5095788?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d6c16113-f025-44f8-8daf-51f44624b9e0" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:53 GMT", - "content-length" : "3021", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6f6d34e6-0e9c-46fa-8b4e-d36d56649c29", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092454Z:6f6d34e6-0e9c-46fa-8b4e-d36d56649c29", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6f6d34e6-0e9c-46fa-8b4e-d36d56649c29", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Resources/deployments/dpDaaa81587\",\"name\":\"dpDaaa81587\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T09:24:45.7915883Z\",\"duration\":\"PT39.676387S\",\"correlationId\":\"32fd79c0-c09c-4bbf-b715-436e9dae88d8\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rgaaa81587/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}" - } + "Date" : "Tue, 11 Aug 2020 09:59:14 GMT", + "x-ms-correlation-request-id" : "1774f02f-caf6-470f-91d2-7f934e7ef9aa", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095914Z:1774f02f-caf6-470f-91d2-7f934e7ef9aa", + "Expires" : "-1", + "Content-Length" : "3011", + "x-ms-request-id" : "1774f02f-caf6-470f-91d2-7f934e7ef9aa", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Resources/deployments/dpD5095788\",\"name\":\"dpD5095788\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T09:59:10.9964168Z\",\"duration\":\"PT33.0806244S\",\"correlationId\":\"b3d87a12-2b87-4390-87af-adcec72b2f37\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5095788/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rgaaa81587?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5095788?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "cd8a7ace-56b2-4c5d-acdc-8c19f4c6bc97", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:55 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14993", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14999", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "47e904a3-2b80-4fd0-b617-2033d0ee0a9d", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092456Z:47e904a3-2b80-4fd0-b617-2033d0ee0a9d", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SR0FBQTgxNTg3LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "47e904a3-2b80-4fd0-b617-2033d0ee0a9d", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:15 GMT", + "x-ms-correlation-request-id" : "73ccaacd-dfd9-4071-8198-6e9c66f3fa5d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095916Z:73ccaacd-dfd9-4071-8198-6e9c66f3fa5d", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "73ccaacd-dfd9-4071-8198-6e9c66f3fa5d", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzUwOTU3ODgtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2020-06-01" + }, + "Exception" : null } ], - "variables" : [ "aaa81587" ] + "variables" : [ "5095788" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canDeployVirtualNetworkSyncPollWithFailure.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canDeployVirtualNetworkSyncPollWithFailure.json index 59d5628ffca9..05c5f14ceb73 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canDeployVirtualNetworkSyncPollWithFailure.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canDeployVirtualNetworkSyncPollWithFailure.json @@ -1,359 +1,412 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7cf80118?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg305808f?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "bea308dd-86c8-4d9f-80f6-3f40e8842ca7", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:04 GMT", - "content-length" : "312", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e268b7e6-edcf-45ac-b76a-ae56e5e4c5c6", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092404Z:e268b7e6-edcf-45ac-b76a-ae56e5e4c5c6", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e268b7e6-edcf-45ac-b76a-ae56e5e4c5c6", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7cf80118\",\"name\":\"rg7cf80118\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-27T09:24:01.099806Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:36 GMT", + "x-ms-correlation-request-id" : "6dbf64be-4ae4-4a9d-8f95-dee0629ece28", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095836Z:6dbf64be-4ae4-4a9d-8f95-dee0629ece28", + "Expires" : "-1", + "Content-Length" : "223", + "x-ms-request-id" : "6dbf64be-4ae4-4a9d-8f95-dee0629ece28", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305808f\",\"name\":\"rg305808f\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7cf80118/providers/Microsoft.Resources/deployments/dpE7cf80118?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg305808f/providers/Microsoft.Resources/deployments/dpE305808f?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "70f59a73-6566-4fc4-bd53-8daa7ffd1e78", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:08 GMT", - "content-length" : "570", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "1c6c3b5c-8a6e-4065-bf9d-161b21f00c6a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092409Z:1c6c3b5c-8a6e-4065-bf9d-161b21f00c6a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1c6c3b5c-8a6e-4065-bf9d-161b21f00c6a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7cf80118/providers/Microsoft.Resources/deployments/dpE7cf80118\",\"name\":\"dpE7cf80118\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"16777920307673510031\",\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-07-27T09:24:08.0926262Z\",\"duration\":\"PT2.5232973S\",\"correlationId\":\"1c6c3b5c-8a6e-4065-bf9d-161b21f00c6a\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[]}}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7cf80118/providers/Microsoft.Resources/deployments/dpE7cf80118/operationStatuses/08586057650399082718?api-version=2020-06-01" - } + "Date" : "Tue, 11 Aug 2020 09:58:41 GMT", + "x-ms-correlation-request-id" : "70ffd325-c93c-4356-b241-5043a6270fc7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095841Z:70ffd325-c93c-4356-b241-5043a6270fc7", + "Expires" : "-1", + "Content-Length" : "567", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg305808f/providers/Microsoft.Resources/deployments/dpE305808f/operationStatuses/08586044669682795729?api-version=2020-06-01", + "x-ms-request-id" : "70ffd325-c93c-4356-b241-5043a6270fc7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305808f/providers/Microsoft.Resources/deployments/dpE305808f\",\"name\":\"dpE305808f\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"16777920307673510031\",\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-08-11T09:58:39.2578884Z\",\"duration\":\"PT2.0598604S\",\"correlationId\":\"70ffd325-c93c-4356-b241-5043a6270fc7\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg305808f/providers/Microsoft.Resources/deployments/dpE305808f/operationStatuses/08586044669682795729?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ccb8b8ed-2d11-4d15-9873-29aceefa67a9" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", + "StatusCode" : "200", + "Date" : "Tue, 11 Aug 2020 09:58:42 GMT", + "x-ms-correlation-request-id" : "4722f7f1-84e1-49d1-9940-0ff95d5682de", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095842Z:4722f7f1-84e1-49d1-9940-0ff95d5682de", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "4722f7f1-84e1-49d1-9940-0ff95d5682de", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7cf80118/providers/Microsoft.Resources/deployments/dpE7cf80118/operationStatuses/08586057650399082718?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg305808f/providers/Microsoft.Resources/deployments/dpE305808f/operationStatuses/08586044669682795729?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5f318eaf-2fb7-4557-9342-da462045e45f" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:10 GMT", - "content-length" : "20", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0b656eb4-06ed-485e-a4d3-d2a90b968bda", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092410Z:0b656eb4-06ed-485e-a4d3-d2a90b968bda", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "0b656eb4-06ed-485e-a4d3-d2a90b968bda", - "Body" : "{\"status\":\"Running\"}" - } + "Date" : "Tue, 11 Aug 2020 09:58:52 GMT", + "x-ms-correlation-request-id" : "91f14faf-07e2-49cf-914f-0aafb3ddf8a4", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095852Z:91f14faf-07e2-49cf-914f-0aafb3ddf8a4", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "91f14faf-07e2-49cf-914f-0aafb3ddf8a4", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7cf80118/providers/Microsoft.Resources/deployments/dpE7cf80118/operationStatuses/08586057650399082718?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg305808f/providers/Microsoft.Resources/deployments/dpE305808f/operationStatuses/08586044669682795729?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "9426899b-c29b-4b45-88b3-37bb8bb8a4f1" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:20 GMT", - "content-length" : "20", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5b261a90-8e4f-4ecc-8516-232940708ccb", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092421Z:5b261a90-8e4f-4ecc-8516-232940708ccb", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "5b261a90-8e4f-4ecc-8516-232940708ccb", - "Body" : "{\"status\":\"Running\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:02 GMT", + "x-ms-correlation-request-id" : "8c613e53-20c5-478c-bdbc-3558896e72d7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095903Z:8c613e53-20c5-478c-bdbc-3558896e72d7", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "8c613e53-20c5-478c-bdbc-3558896e72d7", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7cf80118/providers/Microsoft.Resources/deployments/dpE7cf80118/operationStatuses/08586057650399082718?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg305808f/providers/Microsoft.Resources/deployments/dpE305808f/operationStatuses/08586044669682795729?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c8ef1ae7-ae27-4109-8fc5-699f17e193c1" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:31 GMT", - "content-length" : "20", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "98079e68-c229-470e-8e56-b24bfc24fbf9", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092432Z:98079e68-c229-470e-8e56-b24bfc24fbf9", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "98079e68-c229-470e-8e56-b24bfc24fbf9", - "Body" : "{\"status\":\"Running\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:13 GMT", + "x-ms-correlation-request-id" : "ad8b318b-06a2-4fe3-9a25-a9a14bc3f265", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095913Z:ad8b318b-06a2-4fe3-9a25-a9a14bc3f265", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "ad8b318b-06a2-4fe3-9a25-a9a14bc3f265", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7cf80118/providers/Microsoft.Resources/deployments/dpE7cf80118/operationStatuses/08586057650399082718?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg305808f/providers/Microsoft.Resources/deployments/dpE305808f/operationStatuses/08586044669682795729?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "8bdb3105-9104-4e41-bb1d-63f56214f277" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:42 GMT", - "content-length" : "22", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a5109f31-9b8f-4601-86ed-858eb50d6542", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092442Z:a5109f31-9b8f-4601-86ed-858eb50d6542", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "a5109f31-9b8f-4601-86ed-858eb50d6542", - "Body" : "{\"status\":\"Succeeded\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:23 GMT", + "x-ms-correlation-request-id" : "74d9ffe2-7709-4c7d-ba91-fd7e9106a564", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095924Z:74d9ffe2-7709-4c7d-ba91-fd7e9106a564", + "Expires" : "-1", + "Content-Length" : "22", + "x-ms-request-id" : "74d9ffe2-7709-4c7d-ba91-fd7e9106a564", + "Body" : "{\"status\":\"Succeeded\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7cf80118/providers/Microsoft.Resources/deployments/dpE7cf80118?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg305808f/providers/Microsoft.Resources/deployments/dpE305808f?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4119af30-4dc4-4baf-a245-858fb60f3da1" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:42 GMT", - "content-length" : "742", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11989", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "14b269a2-e103-45b5-b199-993c78db2abc", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092443Z:14b269a2-e103-45b5-b199-993c78db2abc", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "14b269a2-e103-45b5-b199-993c78db2abc", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7cf80118/providers/Microsoft.Resources/deployments/dpE7cf80118\",\"name\":\"dpE7cf80118\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"16777920307673510031\",\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T09:24:42.3228376Z\",\"duration\":\"PT36.7535087S\",\"correlationId\":\"1c6c3b5c-8a6e-4065-bf9d-161b21f00c6a\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7cf80118/providers/Microsoft.Storage/storageAccounts/satestnameconflict\"}]}}" - } + "Date" : "Tue, 11 Aug 2020 09:59:23 GMT", + "x-ms-correlation-request-id" : "34cc0882-457c-4e36-9a09-4985cc81c0cf", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095924Z:34cc0882-457c-4e36-9a09-4985cc81c0cf", + "Expires" : "-1", + "Content-Length" : "738", + "x-ms-request-id" : "34cc0882-457c-4e36-9a09-4985cc81c0cf", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305808f/providers/Microsoft.Resources/deployments/dpE305808f\",\"name\":\"dpE305808f\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"16777920307673510031\",\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T09:59:16.7087034Z\",\"duration\":\"PT39.5106754S\",\"correlationId\":\"70ffd325-c93c-4356-b241-5043a6270fc7\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg305808f/providers/Microsoft.Storage/storageAccounts/satestnameconflict\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg402908?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg184250?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "aaac30d7-de28-401d-9791-26f96bda1169", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:45 GMT", - "content-length" : "301", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1194", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "621af6c1-e901-4c42-9855-146abaaf1433", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092446Z:621af6c1-e901-4c42-9855-146abaaf1433", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "621af6c1-e901-4c42-9855-146abaaf1433", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg402908\",\"name\":\"rg402908\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"tags\":{\"date\":\"2020-07-27T09:24:43.575245Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:59:27 GMT", + "x-ms-correlation-request-id" : "2f41ccbc-9f65-4396-a95a-d4634542996f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095927Z:2f41ccbc-9f65-4396-a95a-d4634542996f", + "Expires" : "-1", + "Content-Length" : "214", + "x-ms-request-id" : "2f41ccbc-9f65-4396-a95a-d4634542996f", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg184250\",\"name\":\"rg184250\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"eastus2\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg402908/providers/Microsoft.Resources/deployments/dpF7cf80118?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg184250/providers/Microsoft.Resources/deployments/dpF305808f?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d5774939-8177-4c73-9c22-b491ca1cb20c", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:52 GMT", - "content-length" : "568", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1191", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1196", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "44f466ce-f146-4841-b62f-76e9e1fefc5b", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092453Z:44f466ce-f146-4841-b62f-76e9e1fefc5b", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "44f466ce-f146-4841-b62f-76e9e1fefc5b", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg402908/providers/Microsoft.Resources/deployments/dpF7cf80118\",\"name\":\"dpF7cf80118\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"16777920307673510031\",\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-07-27T09:24:51.4489262Z\",\"duration\":\"PT2.3255232S\",\"correlationId\":\"44f466ce-f146-4841-b62f-76e9e1fefc5b\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[]}}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg402908/providers/Microsoft.Resources/deployments/dpF7cf80118/operationStatuses/08586057649963541973?api-version=2020-06-01" - } + "Date" : "Tue, 11 Aug 2020 09:59:34 GMT", + "x-ms-correlation-request-id" : "d7a69482-4504-4881-853d-5c27f6bc9dac", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095935Z:d7a69482-4504-4881-853d-5c27f6bc9dac", + "Expires" : "-1", + "Content-Length" : "566", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg184250/providers/Microsoft.Resources/deployments/dpF305808f/operationStatuses/08586044669151167111?api-version=2020-06-01", + "x-ms-request-id" : "d7a69482-4504-4881-853d-5c27f6bc9dac", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg184250/providers/Microsoft.Resources/deployments/dpF305808f\",\"name\":\"dpF305808f\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"16777920307673510031\",\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-08-11T09:59:33.0173398Z\",\"duration\":\"PT2.6564454S\",\"correlationId\":\"d7a69482-4504-4881-853d-5c27f6bc9dac\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg402908/providers/Microsoft.Resources/deployments/dpF7cf80118/operationStatuses/08586057649963541973?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg184250/providers/Microsoft.Resources/deployments/dpF305808f/operationStatuses/08586044669151167111?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6a29eee3-57eb-4243-a353-b812788e3bb3" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:53 GMT", - "content-length" : "20", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11986", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "40eb138b-0d2a-4edf-9248-c6e93836cc86", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092454Z:40eb138b-0d2a-4edf-9248-c6e93836cc86", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "40eb138b-0d2a-4edf-9248-c6e93836cc86", - "Body" : "{\"status\":\"Running\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:35 GMT", + "x-ms-correlation-request-id" : "ac8691fe-4f9d-4757-9848-a4775a9fb39b", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095935Z:ac8691fe-4f9d-4757-9848-a4775a9fb39b", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "ac8691fe-4f9d-4757-9848-a4775a9fb39b", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg402908/providers/Microsoft.Resources/deployments/dpF7cf80118/operationStatuses/08586057649963541973?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg184250/providers/Microsoft.Resources/deployments/dpF305808f/operationStatuses/08586044669151167111?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ac109484-5cd8-47a4-9de1-cc7ed8d43e30" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:04 GMT", - "content-length" : "461", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11971", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f43fb2ee-9f19-47b7-b61e-9fe033c3fb5a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092505Z:f43fb2ee-9f19-47b7-b61e-9fe033c3fb5a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f43fb2ee-9f19-47b7-b61e-9fe033c3fb5a", - "Body" : "{\"status\":\"Failed\",\"error\":{\"code\":\"DeploymentFailed\",\"message\":\"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"Conflict\",\"message\":\"{\\r\\n \\\"error\\\": {\\r\\n \\\"code\\\": \\\"StorageAccountAlreadyExists\\\",\\r\\n \\\"message\\\": \\\"The storage account named satestnameconflict already exists under the subscription.\\\"\\r\\n }\\r\\n}\"}]}}" - } + "Date" : "Tue, 11 Aug 2020 09:59:45 GMT", + "x-ms-correlation-request-id" : "3fc60437-0f8e-4543-a465-7892433fa073", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095946Z:3fc60437-0f8e-4543-a465-7892433fa073", + "Expires" : "-1", + "Content-Length" : "461", + "x-ms-request-id" : "3fc60437-0f8e-4543-a465-7892433fa073", + "Body" : "{\"status\":\"Failed\",\"error\":{\"code\":\"DeploymentFailed\",\"message\":\"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"Conflict\",\"message\":\"{\\r\\n \\\"error\\\": {\\r\\n \\\"code\\\": \\\"StorageAccountAlreadyExists\\\",\\r\\n \\\"message\\\": \\\"The storage account named satestnameconflict already exists under the subscription.\\\"\\r\\n }\\r\\n}\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg402908/providers/Microsoft.Resources/deployments/dpF7cf80118?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg184250/providers/Microsoft.Resources/deployments/dpF305808f?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "24d1b4c3-5629-4fa3-8d6e-d2fa3a2511e7", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:05 GMT", - "content-length" : "922", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11970", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ad4dc89d-5678-40c0-b958-6316ac87f56a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092506Z:ad4dc89d-5678-40c0-b958-6316ac87f56a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ad4dc89d-5678-40c0-b958-6316ac87f56a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg402908/providers/Microsoft.Resources/deployments/dpF7cf80118\",\"name\":\"dpF7cf80118\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"16777920307673510031\",\"mode\":\"Complete\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-07-27T09:25:03.1609401Z\",\"duration\":\"PT14.0375371S\",\"correlationId\":\"44f466ce-f146-4841-b62f-76e9e1fefc5b\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[],\"error\":{\"code\":\"DeploymentFailed\",\"message\":\"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"StorageAccountAlreadyExists\",\"message\":\"The storage account named satestnameconflict already exists under the subscription.\"}]}}}" - } + "Date" : "Tue, 11 Aug 2020 09:59:46 GMT", + "x-ms-correlation-request-id" : "46131b5c-a0e8-479a-9756-a84a9f246ba6", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095946Z:46131b5c-a0e8-479a-9756-a84a9f246ba6", + "Expires" : "-1", + "Content-Length" : "920", + "x-ms-request-id" : "46131b5c-a0e8-479a-9756-a84a9f246ba6", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg184250/providers/Microsoft.Resources/deployments/dpF305808f\",\"name\":\"dpF305808f\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"16777920307673510031\",\"mode\":\"Complete\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-08-11T09:59:45.7343459Z\",\"duration\":\"PT15.3734515S\",\"correlationId\":\"d7a69482-4504-4881-853d-5c27f6bc9dac\",\"providers\":[{\"namespace\":\"Microsoft.Storage\",\"resourceTypes\":[{\"resourceType\":\"storageAccounts\",\"locations\":[\"eastus\"]}]}],\"dependencies\":[],\"error\":{\"code\":\"DeploymentFailed\",\"message\":\"At least one resource deployment operation failed. Please list deployment operations for details. Please see https://aka.ms/DeployOperations for usage details.\",\"details\":[{\"code\":\"StorageAccountAlreadyExists\",\"message\":\"The storage account named satestnameconflict already exists under the subscription.\"}]}}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg402908/deployments/dpF7cf80118/operations?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg184250/deployments/dpF305808f/operations?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d51d13f7-0bcf-4b43-88bf-b77a02b4b4d1", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:06 GMT", - "content-length" : "922", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11969", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "6beae338-b137-4990-b18a-122a07c333a3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092507Z:6beae338-b137-4990-b18a-122a07c333a3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "6beae338-b137-4990-b18a-122a07c333a3", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg402908/providers/Microsoft.Resources/deployments/dpF7cf80118/operations/C803508BD74E5994\",\"operationId\":\"C803508BD74E5994\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-07-27T09:25:02.0541857Z\",\"duration\":\"PT8.0089381S\",\"trackingId\":\"2ecc97a1-cb84-4a71-9e65-e5452c0c3bfe\",\"serviceRequestId\":\"5b2cd3f2-2f33-4238-9cf3-509663292a49\",\"statusCode\":\"Conflict\",\"statusMessage\":{\"status\":\"Failed\",\"error\":{\"code\":\"StorageAccountAlreadyExists\",\"message\":\"The storage account named satestnameconflict already exists under the subscription.\"}},\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg402908/providers/Microsoft.Storage/storageAccounts/satestnameconflict\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"satestnameconflict\"}}}]}" - } + "Date" : "Tue, 11 Aug 2020 09:59:46 GMT", + "x-ms-correlation-request-id" : "d7630646-7821-4ea9-b924-49b1298c3825", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095947Z:d7630646-7821-4ea9-b924-49b1298c3825", + "Expires" : "-1", + "Content-Length" : "922", + "x-ms-request-id" : "d7630646-7821-4ea9-b924-49b1298c3825", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg184250/providers/Microsoft.Resources/deployments/dpF305808f/operations/58C88D05293C4BC0\",\"operationId\":\"58C88D05293C4BC0\",\"properties\":{\"provisioningOperation\":\"Create\",\"provisioningState\":\"Failed\",\"timestamp\":\"2020-08-11T09:59:45.5888626Z\",\"duration\":\"PT10.4260714S\",\"trackingId\":\"6eb1fa56-a66c-472d-9a5f-02aa5e63a57e\",\"serviceRequestId\":\"163e6087-9fec-46bf-b78a-776ad79136ca\",\"statusCode\":\"Conflict\",\"statusMessage\":{\"status\":\"Failed\",\"error\":{\"code\":\"StorageAccountAlreadyExists\",\"message\":\"The storage account named satestnameconflict already exists under the subscription.\"}},\"targetResource\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg184250/providers/Microsoft.Storage/storageAccounts/satestnameconflict\",\"resourceType\":\"Microsoft.Storage/storageAccounts\",\"resourceName\":\"satestnameconflict\"}}}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg402908?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg184250?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f017534f-1bf0-47d5-b182-430d74c3cd27", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:10 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14997", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "156338cd-158f-47be-885f-f33502aa06a7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092511Z:156338cd-158f-47be-885f-f33502aa06a7", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzQwMjkwOC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "156338cd-158f-47be-885f-f33502aa06a7", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:52 GMT", + "x-ms-correlation-request-id" : "e520f0b8-e39c-468f-8f21-ba4c9f4eff6f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095952Z:e520f0b8-e39c-468f-8f21-ba4c9f4eff6f", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "e520f0b8-e39c-468f-8f21-ba4c9f4eff6f", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzE4NDI1MC1FQVNUVVMyIiwiam9iTG9jYXRpb24iOiJlYXN0dXMyIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7cf80118?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg305808f?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e284e23a-5ea6-4ed2-bacd-a7cefa23070d", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:14 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14999", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "a5450fc7-cc67-4461-afc7-e06c5fe0e2f1", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092515Z:a5450fc7-cc67-4461-afc7-e06c5fe0e2f1", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzdDRjgwMTE4LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "a5450fc7-cc67-4461-afc7-e06c5fe0e2f1", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:54 GMT", + "x-ms-correlation-request-id" : "3aad8fe1-44e9-4141-b77c-06b9fa1f96e5", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095954Z:3aad8fe1-44e9-4141-b77c-06b9fa1f96e5", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "3aad8fe1-44e9-4141-b77c-06b9fa1f96e5", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzMwNTgwOEYtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2020-06-01" + }, + "Exception" : null } ], - "variables" : [ "7cf80118", "rg402908" ] + "variables" : [ "305808f", "rg184250" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canListLocations.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canListLocations.json index d7f429178032..820a86874093 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canListLocations.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canListLocations.json @@ -4,49 +4,53 @@ "Uri" : "http://localhost:1234/subscriptions?api-version=2020-01-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0e68c20f-7aba-4cce-8120-0b56234ca462", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:01 GMT", - "content-length" : "460", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2482408c-70ce-4294-83ee-690f415b40f5", - "x-ms-ratelimit-remaining-tenant-reads" : "11998", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092402Z:2482408c-70ce-4294-83ee-690f415b40f5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2482408c-70ce-4294-83ee-690f415b40f5", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"authorizationSource\":\"RoleBased\",\"managedByTenants\":[],\"subscriptionId\":\"00000000-0000-0000-0000-000000000000\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"displayName\":\"Java Libs Tests with TTL = 7 Days\",\"state\":\"Enabled\",\"subscriptionPolicies\":{\"locationPlacementId\":\"Internal_2014-09-01\",\"quotaId\":\"Internal_2014-09-01\",\"spendingLimit\":\"Off\"}}],\"count\":{\"type\":\"Total\",\"value\":1}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:32 GMT", + "x-ms-correlation-request-id" : "6f8ae649-625e-4626-b94c-136673e93b1b", + "x-ms-ratelimit-remaining-tenant-reads" : "11999", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095833Z:6f8ae649-625e-4626-b94c-136673e93b1b", + "Expires" : "-1", + "Content-Length" : "460", + "x-ms-request-id" : "6f8ae649-625e-4626-b94c-136673e93b1b", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"authorizationSource\":\"RoleBased\",\"managedByTenants\":[],\"subscriptionId\":\"00000000-0000-0000-0000-000000000000\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"displayName\":\"Java Libs Tests with TTL = 7 Days\",\"state\":\"Enabled\",\"subscriptionPolicies\":{\"locationPlacementId\":\"Internal_2014-09-01\",\"quotaId\":\"Internal_2014-09-01\",\"spendingLimit\":\"Off\"}}],\"count\":{\"type\":\"Total\",\"value\":1}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/locations?api-version=2020-01-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "86793e61-3b58-4fb9-99f8-833682cefb38", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:05 GMT", - "content-length" : "24609", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "cf363fec-481b-41b1-91fd-9da5a6cf2cf6", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092405Z:cf363fec-481b-41b1-91fd-9da5a6cf2cf6", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "cf363fec-481b-41b1-91fd-9da5a6cf2cf6", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\",\"name\":\"eastus\",\"displayName\":\"East US\",\"regionalDisplayName\":\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\",\"name\":\"eastus2\",\"displayName\":\"East US 2\",\"regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\",\"name\":\"southcentralus\",\"displayName\":\"South Central US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\",\"name\":\"westus2\",\"displayName\":\"West US 2\",\"regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\":\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\",\"name\":\"australiaeast\",\"displayName\":\"Australia East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"151.2094\",\"latitude\":\"-33.86\",\"physicalLocation\":\"New South Wales\",\"pairedRegion\":[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\",\"name\":\"southeastasia\",\"displayName\":\"Southeast Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"103.833\",\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\":[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\",\"name\":\"northeurope\",\"displayName\":\"North Europe\",\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\",\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"displayName\":\"UK South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"displayName\":\"West Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"displayName\":\"Central US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"displayName\":\"North Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"displayName\":\"West US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"displayName\":\"South Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.218370\",\"latitude\":\"-25.731340\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"displayName\":\"Central India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"displayName\":\"East Asia\",\"regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"114.188\",\"latitude\":\"22.267\",\"physicalLocation\":\"Hong Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"displayName\":\"Japan East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo, Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"displayName\":\"Korea Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"126.9780\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"displayName\":\"Canada Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"displayName\":\"France Central\",\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.3730\",\"latitude\":\"46.3772\",\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\",\"name\":\"germanywestcentral\",\"displayName\":\"Germany West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\",\"name\":\"norwayeast\",\"displayName\":\"Norway East\",\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\",\"name\":\"switzerlandnorth\",\"displayName\":\"Switzerland North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\",\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\":[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\",\"name\":\"uaenorth\",\"displayName\":\"UAE North\",\"regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Middle East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"displayName\":\"Brazil South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"South America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"displayName\":\"Central US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"displayName\":\"East US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"displayName\":\"East US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"displayName\":\"North Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\",\"name\":\"southcentralusstage\",\"displayName\":\"South Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"displayName\":\"West US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"displayName\":\"West US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"displayName\":\"Asia Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"displayName\":\"United Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"displayName\":\"United States\",\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\",\"name\":\"eastasiastage\",\"displayName\":\"East Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"displayName\":\"Southeast Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\",\"name\":\"centraluseuap\",\"displayName\":\"Central US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"displayName\":\"East US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"displayName\":\"West Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.890\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"displayName\":\"South Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"displayName\":\"Australia Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\",\"name\":\"australiacentral2\",\"displayName\":\"Australia Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\",\"name\":\"australiasoutheast\",\"displayName\":\"Australia Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"144.9631\",\"latitude\":\"-37.8136\",\"physicalLocation\":\"Victoria\",\"pairedRegion\":[{\"name\":\"australiaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\",\"name\":\"japanwest\",\"displayName\":\"Japan West\",\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"135.5022\",\"latitude\":\"34.6939\",\"physicalLocation\":\"Osaka\",\"pairedRegion\":[{\"name\":\"japaneast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\",\"name\":\"koreasouth\",\"displayName\":\"Korea South\",\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"129.0756\",\"latitude\":\"35.1796\",\"physicalLocation\":\"Busan\",\"pairedRegion\":[{\"name\":\"koreacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\",\"name\":\"southindia\",\"displayName\":\"South India\",\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\":\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\",\"name\":\"westindia\",\"displayName\":\"West India\",\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\":\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\",\"name\":\"canadaeast\",\"displayName\":\"Canada East\",\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\":\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\",\"name\":\"francesouth\",\"displayName\":\"France South\",\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\":\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\",\"name\":\"germanynorth\",\"displayName\":\"Germany North\",\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\":\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\",\"name\":\"norwaywest\",\"displayName\":\"Norway West\",\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\",\"name\":\"switzerlandwest\",\"displayName\":\"Switzerland West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\":[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\",\"name\":\"ukwest\",\"displayName\":\"UK West\",\"regionalDisplayName\":\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\",\"name\":\"uaecentral\",\"displayName\":\"UAE Central\",\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"physicalLocation\":\"Abu Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"}]}}]}" - } + "Date" : "Tue, 11 Aug 2020 09:58:33 GMT", + "x-ms-correlation-request-id" : "49f0cf3e-6c69-4dab-a2da-6fde0ef5ec2e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095834Z:49f0cf3e-6c69-4dab-a2da-6fde0ef5ec2e", + "Expires" : "-1", + "Content-Length" : "24609", + "x-ms-request-id" : "49f0cf3e-6c69-4dab-a2da-6fde0ef5ec2e", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\",\"name\":\"eastus\",\"displayName\":\"East US\",\"regionalDisplayName\":\"(US) East US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-79.8164\",\"latitude\":\"37.3719\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"westus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\",\"name\":\"eastus2\",\"displayName\":\"East US 2\",\"regionalDisplayName\":\"(US) East US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"physicalLocation\":\"Virginia\",\"pairedRegion\":[{\"name\":\"centralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\",\"name\":\"southcentralus\",\"displayName\":\"South Central US\",\"regionalDisplayName\":\"(US) South Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-98.5\",\"latitude\":\"29.4167\",\"physicalLocation\":\"Texas\",\"pairedRegion\":[{\"name\":\"northcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\",\"name\":\"westus2\",\"displayName\":\"West US 2\",\"regionalDisplayName\":\"(US) West US 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-119.852\",\"latitude\":\"47.233\",\"physicalLocation\":\"Washington\",\"pairedRegion\":[{\"name\":\"westcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\",\"name\":\"australiaeast\",\"displayName\":\"Australia East\",\"regionalDisplayName\":\"(Asia Pacific) Australia East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"151.2094\",\"latitude\":\"-33.86\",\"physicalLocation\":\"New South Wales\",\"pairedRegion\":[{\"name\":\"australiasoutheast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\",\"name\":\"southeastasia\",\"displayName\":\"Southeast Asia\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"103.833\",\"latitude\":\"1.283\",\"physicalLocation\":\"Singapore\",\"pairedRegion\":[{\"name\":\"eastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\",\"name\":\"northeurope\",\"displayName\":\"North Europe\",\"regionalDisplayName\":\"(Europe) North Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-6.2597\",\"latitude\":\"53.3478\",\"physicalLocation\":\"Ireland\",\"pairedRegion\":[{\"name\":\"westeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\",\"name\":\"uksouth\",\"displayName\":\"UK South\",\"regionalDisplayName\":\"(Europe) UK South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"-0.799\",\"latitude\":\"50.941\",\"physicalLocation\":\"London\",\"pairedRegion\":[{\"name\":\"ukwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope\",\"name\":\"westeurope\",\"displayName\":\"West Europe\",\"regionalDisplayName\":\"(Europe) West Europe\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"4.9\",\"latitude\":\"52.3667\",\"physicalLocation\":\"Netherlands\",\"pairedRegion\":[{\"name\":\"northeurope\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northeurope\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralus\",\"name\":\"centralus\",\"displayName\":\"Central US\",\"regionalDisplayName\":\"(US) Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"physicalLocation\":\"Iowa\",\"pairedRegion\":[{\"name\":\"eastus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralus\",\"name\":\"northcentralus\",\"displayName\":\"North Central US\",\"regionalDisplayName\":\"(US) North Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-87.6278\",\"latitude\":\"41.8819\",\"physicalLocation\":\"Illinois\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus\",\"name\":\"westus\",\"displayName\":\"West US\",\"regionalDisplayName\":\"(US) West US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"US\",\"longitude\":\"-122.417\",\"latitude\":\"37.783\",\"physicalLocation\":\"California\",\"pairedRegion\":[{\"name\":\"eastus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\",\"name\":\"southafricanorth\",\"displayName\":\"South Africa North\",\"regionalDisplayName\":\"(Africa) South Africa North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Africa\",\"longitude\":\"28.218370\",\"latitude\":\"-25.731340\",\"physicalLocation\":\"Johannesburg\",\"pairedRegion\":[{\"name\":\"southafricawest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\",\"name\":\"centralindia\",\"displayName\":\"Central India\",\"regionalDisplayName\":\"(Asia Pacific) Central India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"73.9197\",\"latitude\":\"18.5822\",\"physicalLocation\":\"Pune\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasia\",\"name\":\"eastasia\",\"displayName\":\"East Asia\",\"regionalDisplayName\":\"(Asia Pacific) East Asia\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"114.188\",\"latitude\":\"22.267\",\"physicalLocation\":\"Hong Kong\",\"pairedRegion\":[{\"name\":\"southeastasia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\",\"name\":\"japaneast\",\"displayName\":\"Japan East\",\"regionalDisplayName\":\"(Asia Pacific) Japan East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"139.77\",\"latitude\":\"35.68\",\"physicalLocation\":\"Tokyo, Saitama\",\"pairedRegion\":[{\"name\":\"japanwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\",\"name\":\"koreacentral\",\"displayName\":\"Korea Central\",\"regionalDisplayName\":\"(Asia Pacific) Korea Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"126.9780\",\"latitude\":\"37.5665\",\"physicalLocation\":\"Seoul\",\"pairedRegion\":[{\"name\":\"koreasouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\",\"name\":\"canadacentral\",\"displayName\":\"Canada Central\",\"regionalDisplayName\":\"(Canada) Canada Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Canada\",\"longitude\":\"-79.383\",\"latitude\":\"43.653\",\"physicalLocation\":\"Toronto\",\"pairedRegion\":[{\"name\":\"canadaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\",\"name\":\"francecentral\",\"displayName\":\"France Central\",\"regionalDisplayName\":\"(Europe) France Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.3730\",\"latitude\":\"46.3772\",\"physicalLocation\":\"Paris\",\"pairedRegion\":[{\"name\":\"francesouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\",\"name\":\"germanywestcentral\",\"displayName\":\"Germany West Central\",\"regionalDisplayName\":\"(Europe) Germany West Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.682127\",\"latitude\":\"50.110924\",\"physicalLocation\":\"Frankfurt\",\"pairedRegion\":[{\"name\":\"germanynorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\",\"name\":\"norwayeast\",\"displayName\":\"Norway East\",\"regionalDisplayName\":\"(Europe) Norway East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"10.752245\",\"latitude\":\"59.913868\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwaywest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\",\"name\":\"switzerlandnorth\",\"displayName\":\"Switzerland North\",\"regionalDisplayName\":\"(Europe) Switzerland North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.564572\",\"latitude\":\"47.451542\",\"physicalLocation\":\"Zurich\",\"pairedRegion\":[{\"name\":\"switzerlandwest\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\",\"name\":\"uaenorth\",\"displayName\":\"UAE North\",\"regionalDisplayName\":\"(Middle East) UAE North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"Middle East\",\"longitude\":\"55.316666\",\"latitude\":\"25.266666\",\"physicalLocation\":\"Dubai\",\"pairedRegion\":[{\"name\":\"uaecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazilsouth\",\"name\":\"brazilsouth\",\"displayName\":\"Brazil South\",\"regionalDisplayName\":\"(South America) Brazil South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Recommended\",\"geographyGroup\":\"South America\",\"longitude\":\"-46.633\",\"latitude\":\"-23.55\",\"physicalLocation\":\"Sao Paulo State\",\"pairedRegion\":[{\"name\":\"southcentralus\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralus\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralusstage\",\"name\":\"centralusstage\",\"displayName\":\"Central US (Stage)\",\"regionalDisplayName\":\"(US) Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastusstage\",\"name\":\"eastusstage\",\"displayName\":\"East US (Stage)\",\"regionalDisplayName\":\"(US) East US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2stage\",\"name\":\"eastus2stage\",\"displayName\":\"East US 2 (Stage)\",\"regionalDisplayName\":\"(US) East US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/northcentralusstage\",\"name\":\"northcentralusstage\",\"displayName\":\"North Central US (Stage)\",\"regionalDisplayName\":\"(US) North Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southcentralusstage\",\"name\":\"southcentralusstage\",\"displayName\":\"South Central US (Stage)\",\"regionalDisplayName\":\"(US) South Central US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westusstage\",\"name\":\"westusstage\",\"displayName\":\"West US (Stage)\",\"regionalDisplayName\":\"(US) West US (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2stage\",\"name\":\"westus2stage\",\"displayName\":\"West US 2 (Stage)\",\"regionalDisplayName\":\"(US) West US 2 (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asia\",\"name\":\"asia\",\"displayName\":\"Asia\",\"regionalDisplayName\":\"Asia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/asiapacific\",\"name\":\"asiapacific\",\"displayName\":\"Asia Pacific\",\"regionalDisplayName\":\"Asia Pacific\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australia\",\"name\":\"australia\",\"displayName\":\"Australia\",\"regionalDisplayName\":\"Australia\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/brazil\",\"name\":\"brazil\",\"displayName\":\"Brazil\",\"regionalDisplayName\":\"Brazil\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canada\",\"name\":\"canada\",\"displayName\":\"Canada\",\"regionalDisplayName\":\"Canada\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/europe\",\"name\":\"europe\",\"displayName\":\"Europe\",\"regionalDisplayName\":\"Europe\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/global\",\"name\":\"global\",\"displayName\":\"Global\",\"regionalDisplayName\":\"Global\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/india\",\"name\":\"india\",\"displayName\":\"India\",\"regionalDisplayName\":\"India\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japan\",\"name\":\"japan\",\"displayName\":\"Japan\",\"regionalDisplayName\":\"Japan\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uk\",\"name\":\"uk\",\"displayName\":\"United Kingdom\",\"regionalDisplayName\":\"United Kingdom\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/unitedstates\",\"name\":\"unitedstates\",\"displayName\":\"United States\",\"regionalDisplayName\":\"United States\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastasiastage\",\"name\":\"eastasiastage\",\"displayName\":\"East Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) East Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southeastasiastage\",\"name\":\"southeastasiastage\",\"displayName\":\"Southeast Asia (Stage)\",\"regionalDisplayName\":\"(Asia Pacific) Southeast Asia (Stage)\",\"metadata\":{\"regionType\":\"Logical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\"}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\",\"name\":\"centraluseuap\",\"displayName\":\"Central US EUAP\",\"regionalDisplayName\":\"(US) Central US EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-93.6208\",\"latitude\":\"41.5908\",\"pairedRegion\":[{\"name\":\"eastus2euap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/eastus2euap\",\"name\":\"eastus2euap\",\"displayName\":\"East US 2 EUAP\",\"regionalDisplayName\":\"(US) East US 2 EUAP\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-78.3889\",\"latitude\":\"36.6681\",\"pairedRegion\":[{\"name\":\"centraluseuap\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centraluseuap\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westcentralus\",\"name\":\"westcentralus\",\"displayName\":\"West Central US\",\"regionalDisplayName\":\"(US) West Central US\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"US\",\"longitude\":\"-110.234\",\"latitude\":\"40.890\",\"physicalLocation\":\"Wyoming\",\"pairedRegion\":[{\"name\":\"westus2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westus2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricawest\",\"name\":\"southafricawest\",\"displayName\":\"South Africa West\",\"regionalDisplayName\":\"(Africa) South Africa West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Africa\",\"longitude\":\"18.843266\",\"latitude\":\"-34.075691\",\"physicalLocation\":\"Cape Town\",\"pairedRegion\":[{\"name\":\"southafricanorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southafricanorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\",\"name\":\"australiacentral\",\"displayName\":\"Australia Central\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\",\"name\":\"australiacentral2\",\"displayName\":\"Australia Central 2\",\"regionalDisplayName\":\"(Asia Pacific) Australia Central 2\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"149.1244\",\"latitude\":\"-35.3075\",\"physicalLocation\":\"Canberra\",\"pairedRegion\":[{\"name\":\"australiacentral2\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiacentral2\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiasoutheast\",\"name\":\"australiasoutheast\",\"displayName\":\"Australia Southeast\",\"regionalDisplayName\":\"(Asia Pacific) Australia Southeast\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"144.9631\",\"latitude\":\"-37.8136\",\"physicalLocation\":\"Victoria\",\"pairedRegion\":[{\"name\":\"australiaeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/australiaeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japanwest\",\"name\":\"japanwest\",\"displayName\":\"Japan West\",\"regionalDisplayName\":\"(Asia Pacific) Japan West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"135.5022\",\"latitude\":\"34.6939\",\"physicalLocation\":\"Osaka\",\"pairedRegion\":[{\"name\":\"japaneast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/japaneast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreasouth\",\"name\":\"koreasouth\",\"displayName\":\"Korea South\",\"regionalDisplayName\":\"(Asia Pacific) Korea South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"129.0756\",\"latitude\":\"35.1796\",\"physicalLocation\":\"Busan\",\"pairedRegion\":[{\"name\":\"koreacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/koreacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\",\"name\":\"southindia\",\"displayName\":\"South India\",\"regionalDisplayName\":\"(Asia Pacific) South India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"80.1636\",\"latitude\":\"12.9822\",\"physicalLocation\":\"Chennai\",\"pairedRegion\":[{\"name\":\"centralindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/centralindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/westindia\",\"name\":\"westindia\",\"displayName\":\"West India\",\"regionalDisplayName\":\"(Asia Pacific) West India\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Asia Pacific\",\"longitude\":\"72.868\",\"latitude\":\"19.088\",\"physicalLocation\":\"Mumbai\",\"pairedRegion\":[{\"name\":\"southindia\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/southindia\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadaeast\",\"name\":\"canadaeast\",\"displayName\":\"Canada East\",\"regionalDisplayName\":\"(Canada) Canada East\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Canada\",\"longitude\":\"-71.217\",\"latitude\":\"46.817\",\"physicalLocation\":\"Quebec\",\"pairedRegion\":[{\"name\":\"canadacentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/canadacentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francesouth\",\"name\":\"francesouth\",\"displayName\":\"France South\",\"regionalDisplayName\":\"(Europe) France South\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"2.1972\",\"latitude\":\"43.8345\",\"physicalLocation\":\"Marseille\",\"pairedRegion\":[{\"name\":\"francecentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/francecentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanynorth\",\"name\":\"germanynorth\",\"displayName\":\"Germany North\",\"regionalDisplayName\":\"(Europe) Germany North\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"8.806422\",\"latitude\":\"53.073635\",\"physicalLocation\":\"Berlin\",\"pairedRegion\":[{\"name\":\"germanywestcentral\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/germanywestcentral\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwaywest\",\"name\":\"norwaywest\",\"displayName\":\"Norway West\",\"regionalDisplayName\":\"(Europe) Norway West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"5.733107\",\"latitude\":\"58.969975\",\"physicalLocation\":\"Norway\",\"pairedRegion\":[{\"name\":\"norwayeast\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/norwayeast\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandwest\",\"name\":\"switzerlandwest\",\"displayName\":\"Switzerland West\",\"regionalDisplayName\":\"(Europe) Switzerland West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"6.143158\",\"latitude\":\"46.204391\",\"physicalLocation\":\"Geneva\",\"pairedRegion\":[{\"name\":\"switzerlandnorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/switzerlandnorth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/ukwest\",\"name\":\"ukwest\",\"displayName\":\"UK West\",\"regionalDisplayName\":\"(Europe) UK West\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Europe\",\"longitude\":\"-3.084\",\"latitude\":\"53.427\",\"physicalLocation\":\"Cardiff\",\"pairedRegion\":[{\"name\":\"uksouth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uksouth\"}]}},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaecentral\",\"name\":\"uaecentral\",\"displayName\":\"UAE Central\",\"regionalDisplayName\":\"(Middle East) UAE Central\",\"metadata\":{\"regionType\":\"Physical\",\"regionCategory\":\"Other\",\"geographyGroup\":\"Middle East\",\"longitude\":\"54.366669\",\"latitude\":\"24.466667\",\"physicalLocation\":\"Abu Dhabi\",\"pairedRegion\":[{\"name\":\"uaenorth\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/locations/uaenorth\"}]}}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null } ], "variables" : [ ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canListSubscriptions.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canListSubscriptions.json index 589eb48cb0da..fd5f1a114d73 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canListSubscriptions.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canListSubscriptions.json @@ -4,25 +4,27 @@ "Uri" : "http://localhost:1234/subscriptions?api-version=2020-01-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "cfe9b2d1-f295-455a-887c-fc7557c8c9d6", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:04 GMT", - "content-length" : "460", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c4a00a48-a265-47c2-9c49-a725847fb906", - "x-ms-ratelimit-remaining-tenant-reads" : "11997", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092405Z:c4a00a48-a265-47c2-9c49-a725847fb906", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c4a00a48-a265-47c2-9c49-a725847fb906", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"authorizationSource\":\"RoleBased\",\"managedByTenants\":[],\"subscriptionId\":\"00000000-0000-0000-0000-000000000000\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"displayName\":\"Java Libs Tests with TTL = 7 Days\",\"state\":\"Enabled\",\"subscriptionPolicies\":{\"locationPlacementId\":\"Internal_2014-09-01\",\"quotaId\":\"Internal_2014-09-01\",\"spendingLimit\":\"Off\"}}],\"count\":{\"type\":\"Total\",\"value\":1}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:33 GMT", + "x-ms-correlation-request-id" : "73a9ce3a-a949-47c3-9782-08bd246988b8", + "x-ms-ratelimit-remaining-tenant-reads" : "11999", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095834Z:73a9ce3a-a949-47c3-9782-08bd246988b8", + "Expires" : "-1", + "Content-Length" : "460", + "x-ms-request-id" : "73a9ce3a-a949-47c3-9782-08bd246988b8", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000\",\"authorizationSource\":\"RoleBased\",\"managedByTenants\":[],\"subscriptionId\":\"00000000-0000-0000-0000-000000000000\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"displayName\":\"Java Libs Tests with TTL = 7 Days\",\"state\":\"Enabled\",\"subscriptionPolicies\":{\"locationPlacementId\":\"Internal_2014-09-01\",\"quotaId\":\"Internal_2014-09-01\",\"spendingLimit\":\"Off\"}}],\"count\":{\"type\":\"Total\",\"value\":1}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null } ], "variables" : [ ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canListTenants.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canListTenants.json index 765cbc5c0774..fc58a6c66fad 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canListTenants.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canListTenants.json @@ -4,25 +4,27 @@ "Uri" : "http://localhost:1234/tenants?api-version=2020-01-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "7e2805c0-7c21-4058-9723-12241a78d483", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:00 GMT", - "content-length" : "140", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "125ba060-b6f2-4f50-b768-1fae9417e587", + "Date" : "Tue, 11 Aug 2020 09:58:37 GMT", + "x-ms-correlation-request-id" : "fdf39793-13f7-4ae6-a587-4de04b783d91", "x-ms-ratelimit-remaining-tenant-reads" : "11999", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092401Z:125ba060-b6f2-4f50-b768-1fae9417e587", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "125ba060-b6f2-4f50-b768-1fae9417e587", - "Body" : "{\"value\":[{\"id\":\"/tenants/00000000-0000-0000-0000-000000000000\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"tenantCategory\":\"Home\"}]}" - } + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095838Z:fdf39793-13f7-4ae6-a587-4de04b783d91", + "Expires" : "-1", + "Content-Length" : "140", + "x-ms-request-id" : "fdf39793-13f7-4ae6-a587-4de04b783d91", + "Body" : "{\"value\":[{\"id\":\"/tenants/00000000-0000-0000-0000-000000000000\",\"tenantId\":\"00000000-0000-0000-0000-000000000000\",\"tenantCategory\":\"Home\"}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null } ], "variables" : [ ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canPostDeploymentWhatIfOnResourceGroup.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canPostDeploymentWhatIfOnResourceGroup.json index bc73e4132bf0..33bdb7e2d59c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canPostDeploymentWhatIfOnResourceGroup.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canPostDeploymentWhatIfOnResourceGroup.json @@ -1,321 +1,394 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69b34935?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg112332c?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "9c1cde50-035d-412b-b414-3046aa226ae9", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:05 GMT", - "content-length" : "315", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "96456525-a082-433e-931a-7d82cb70f0ad", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092405Z:96456525-a082-433e-931a-7d82cb70f0ad", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "96456525-a082-433e-931a-7d82cb70f0ad", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935\",\"name\":\"rg69b34935\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-27T09:24:01.089832900Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:36 GMT", + "x-ms-correlation-request-id" : "f51c32d5-3353-42f1-8f35-037b0c402f37", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095836Z:f51c32d5-3353-42f1-8f35-037b0c402f37", + "Expires" : "-1", + "Content-Length" : "223", + "x-ms-request-id" : "f51c32d5-3353-42f1-8f35-037b0c402f37", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c\",\"name\":\"rg112332c\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69b34935/providers/Microsoft.Resources/deployments/dpA69b34935?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg112332c/providers/Microsoft.Resources/deployments/dpA112332c?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1bb8bf5b-55e6-4792-8419-ea3dd482d9ae", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:11 GMT", - "content-length" : "2557", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1192", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "5c9a2526-c2fe-4050-9b2f-1f34a2a6455a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092412Z:5c9a2526-c2fe-4050-9b2f-1f34a2a6455a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "5c9a2526-c2fe-4050-9b2f-1f34a2a6455a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Resources/deployments/dpA69b34935\",\"name\":\"dpA69b34935\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-07-27T09:24:09.6653017Z\",\"duration\":\"PT2.4677199S\",\"correlationId\":\"5c9a2526-c2fe-4050-9b2f-1f34a2a6455a\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69b34935/providers/Microsoft.Resources/deployments/dpA69b34935/operationStatuses/08586057650382800371?api-version=2020-06-01" - } + "Date" : "Tue, 11 Aug 2020 09:58:41 GMT", + "x-ms-correlation-request-id" : "ea2ca6f0-1d1e-4335-8ab2-570b2cb37c11", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095841Z:ea2ca6f0-1d1e-4335-8ab2-570b2cb37c11", + "Expires" : "-1", + "Content-Length" : "2549", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg112332c/providers/Microsoft.Resources/deployments/dpA112332c/operationStatuses/08586044669674185017?api-version=2020-06-01", + "x-ms-request-id" : "ea2ca6f0-1d1e-4335-8ab2-570b2cb37c11", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Resources/deployments/dpA112332c\",\"name\":\"dpA112332c\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-08-11T09:58:39.5857512Z\",\"duration\":\"PT1.5266205S\",\"correlationId\":\"ea2ca6f0-1d1e-4335-8ab2-570b2cb37c11\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69b34935/providers/Microsoft.Resources/deployments/dpA69b34935/operationStatuses/08586057650382800371?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg112332c/providers/Microsoft.Resources/deployments/dpA112332c/operationStatuses/08586044669674185017?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "155b747a-a989-4fe1-9fa4-0c5c5057539f" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:42 GMT", - "content-length" : "20", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9e27f4eb-5f38-4d7f-ba5e-829fc3bb2c0c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092443Z:9e27f4eb-5f38-4d7f-ba5e-829fc3bb2c0c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9e27f4eb-5f38-4d7f-ba5e-829fc3bb2c0c", - "Body" : "{\"status\":\"Running\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:11 GMT", + "x-ms-correlation-request-id" : "f479d9fd-f5ec-4262-a526-b858d3d972a4", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095911Z:f479d9fd-f5ec-4262-a526-b858d3d972a4", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "f479d9fd-f5ec-4262-a526-b858d3d972a4", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69b34935/providers/Microsoft.Resources/deployments/dpA69b34935/operationStatuses/08586057650382800371?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg112332c/providers/Microsoft.Resources/deployments/dpA112332c/operationStatuses/08586044669674185017?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "0dfc01cd-21fb-4c5b-a1a6-230a55a83718" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:12 GMT", - "content-length" : "22", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11964", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "19863747-9488-4a87-b0e9-b40023073a59", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092513Z:19863747-9488-4a87-b0e9-b40023073a59", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "19863747-9488-4a87-b0e9-b40023073a59", - "Body" : "{\"status\":\"Succeeded\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:42 GMT", + "x-ms-correlation-request-id" : "afdc3762-8b23-47f5-990f-f14f68ee0a3d", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095943Z:afdc3762-8b23-47f5-990f-f14f68ee0a3d", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "afdc3762-8b23-47f5-990f-f14f68ee0a3d", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69b34935/providers/Microsoft.Resources/deployments/dpA69b34935?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg112332c/providers/Microsoft.Resources/deployments/dpA112332c/operationStatuses/08586044669674185017?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "963af959-a993-4c4c-835c-d18f3134621c" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:13 GMT", - "content-length" : "3022", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11962", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b60d7a24-c984-45d7-bf1a-7a5ce7bda62e", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092514Z:b60d7a24-c984-45d7-bf1a-7a5ce7bda62e", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b60d7a24-c984-45d7-bf1a-7a5ce7bda62e", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Resources/deployments/dpA69b34935\",\"name\":\"dpA69b34935\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T09:24:49.6846415Z\",\"duration\":\"PT42.4870597S\",\"correlationId\":\"5c9a2526-c2fe-4050-9b2f-1f34a2a6455a\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}" - } + "Date" : "Tue, 11 Aug 2020 10:00:12 GMT", + "x-ms-correlation-request-id" : "b3a64b75-0993-41e9-956f-a77215b66729", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100013Z:b3a64b75-0993-41e9-956f-a77215b66729", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "b3a64b75-0993-41e9-956f-a77215b66729", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69b34935/providers/Microsoft.Resources/deployments/?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg112332c/providers/Microsoft.Resources/deployments/dpA112332c/operationStatuses/08586044669674185017?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "2cfaee01-a606-4289-b4de-fef8fff98ca7" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "StatusCode" : "200", + "Date" : "Tue, 11 Aug 2020 10:00:43 GMT", + "x-ms-correlation-request-id" : "126ba7b9-0bf4-4493-80b2-cc8c59963aa2", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100043Z:126ba7b9-0bf4-4493-80b2-cc8c59963aa2", + "Expires" : "-1", + "Content-Length" : "22", + "x-ms-request-id" : "126ba7b9-0bf4-4493-80b2-cc8c59963aa2", + "Body" : "{\"status\":\"Succeeded\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg112332c/providers/Microsoft.Resources/deployments/dpA112332c?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c4b24eb1-95f1-48d2-b72f-4ec941780793" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", + "StatusCode" : "200", + "Date" : "Tue, 11 Aug 2020 10:00:44 GMT", + "x-ms-correlation-request-id" : "0b1b6e39-d24b-462b-ae58-0e0969b105db", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100044Z:0b1b6e39-d24b-462b-ae58-0e0969b105db", + "Expires" : "-1", + "Content-Length" : "3011", + "x-ms-request-id" : "0b1b6e39-d24b-462b-ae58-0e0969b105db", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Resources/deployments/dpA112332c\",\"name\":\"dpA112332c\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T10:00:40.6327957Z\",\"duration\":\"PT2M2.573665S\",\"correlationId\":\"ea2ca6f0-1d1e-4335-8ab2-570b2cb37c11\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg112332c/providers/Microsoft.Resources/deployments/?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "64811e42-3f47-4d52-8671-f98b60abb4b8", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:14 GMT", - "content-length" : "3034", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11961", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "58a439dc-951f-41b4-8735-d24cf7ffec7c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092514Z:58a439dc-951f-41b4-8735-d24cf7ffec7c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "58a439dc-951f-41b4-8735-d24cf7ffec7c", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Resources/deployments/dpA69b34935\",\"name\":\"dpA69b34935\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T09:24:49.6846415Z\",\"duration\":\"PT42.4870597S\",\"correlationId\":\"5c9a2526-c2fe-4050-9b2f-1f34a2a6455a\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}]}" - } + "Date" : "Tue, 11 Aug 2020 10:00:45 GMT", + "x-ms-correlation-request-id" : "14b48476-38a5-4716-ac1e-2df270b54d17", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100045Z:14b48476-38a5-4716-ac1e-2df270b54d17", + "Expires" : "-1", + "Content-Length" : "3023", + "x-ms-request-id" : "14b48476-38a5-4716-ac1e-2df270b54d17", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Resources/deployments/dpA112332c\",\"name\":\"dpA112332c\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T10:00:40.6327957Z\",\"duration\":\"PT2M2.573665S\",\"correlationId\":\"ea2ca6f0-1d1e-4335-8ab2-570b2cb37c11\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69b34935/providers/Microsoft.Resources/deployments/dpA69b34935?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg112332c/providers/Microsoft.Resources/deployments/dpA112332c?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "54b287a2-f6f3-4fe4-bd3b-fc926e0acc53", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:14 GMT", - "content-length" : "3022", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11960", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "16738da9-4f79-4fea-9aa2-f8844ef9bff1", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092515Z:16738da9-4f79-4fea-9aa2-f8844ef9bff1", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "16738da9-4f79-4fea-9aa2-f8844ef9bff1", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Resources/deployments/dpA69b34935\",\"name\":\"dpA69b34935\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T09:24:49.6846415Z\",\"duration\":\"PT42.4870597S\",\"correlationId\":\"5c9a2526-c2fe-4050-9b2f-1f34a2a6455a\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}" - } + "Date" : "Tue, 11 Aug 2020 10:00:45 GMT", + "x-ms-correlation-request-id" : "8e742ebe-850c-40c4-bdef-6b7d8ef030d4", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100045Z:8e742ebe-850c-40c4-bdef-6b7d8ef030d4", + "Expires" : "-1", + "Content-Length" : "3011", + "x-ms-request-id" : "8e742ebe-850c-40c4-bdef-6b7d8ef030d4", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Resources/deployments/dpA112332c\",\"name\":\"dpA112332c\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T10:00:40.6327957Z\",\"duration\":\"PT2M2.573665S\",\"correlationId\":\"ea2ca6f0-1d1e-4335-8ab2-570b2cb37c11\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69b34935/providers/Microsoft.Resources/deployments/dpA69b34935/whatIf?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg112332c/providers/Microsoft.Resources/deployments/dpA112332c/whatIf?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "08c64351-4113-4028-89e0-6214692dfe0d", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:17 GMT", - "content-length" : "0", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", "x-ms-ratelimit-remaining-subscription-writes" : "1199", - "retry-after" : "0", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e445fa14-7c97-4b97-bf81-5e962b3ed678", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092518Z:e445fa14-7c97-4b97-bf81-5e962b3ed678", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItUkc2OUIzNDkzNS1EUEE2OUIzNDkzNS1FNDQ1RkExNDoyRDdDOTc6MkQ0Qjk3OjJEQkY4MToyRDVFOTYyQjNFRDY3OCIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "e445fa14-7c97-4b97-bf81-5e962b3ed678", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:00:47 GMT", + "x-ms-correlation-request-id" : "ddf4c746-cca3-49f2-b210-48ab3c4fdb0c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100048Z:ddf4c746-cca3-49f2-b210-48ab3c4fdb0c", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "ddf4c746-cca3-49f2-b210-48ab3c4fdb0c", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItUkcxMTIzMzJDLURQQTExMjMzMkMtRERGNEM3NDY6MkRDQ0EzOjJENDlGMjoyREIyMTA6MkQ0OEFCM0M0RkRCMEMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItUkc2OUIzNDkzNS1EUEE2OUIzNDkzNS1FNDQ1RkExNDoyRDdDOTc6MkQ0Qjk3OjJEQkY4MToyRDVFOTYyQjNFRDY3OCIsImpvYkxvY2F0aW9uIjoic291dGhjZW50cmFsdXMifQ?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItUkcxMTIzMzJDLURQQTExMjMzMkMtRERGNEM3NDY6MkRDQ0EzOjJENDlGMjoyREIyMTA6MkQ0OEFCM0M0RkRCMEMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "6516c967-7a6f-44ad-b6bd-ea5d3d79853e" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:33 GMT", - "content-length" : "3118", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11953", + "x-ms-ratelimit-remaining-subscription-reads" : "11981", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "06444d45-1b4a-41e8-b6b7-93a78630c865", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092533Z:06444d45-1b4a-41e8-b6b7-93a78630c865", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "06444d45-1b4a-41e8-b6b7-93a78630c865", - "Body" : "{\"status\":\"Succeeded\",\"properties\":{\"changes\":[{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\",\"changeType\":\"Modify\",\"before\":{\"apiVersion\":\"2018-10-01\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\",\"location\":\"southcentralus\",\"name\":\"VNet1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"enableVmProtection\":false,\"subnets\":[{\"name\":\"Subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}},{\"name\":\"Subnet2\",\"properties\":{\"addressPrefix\":\"10.0.1.0/24\"}}]},\"type\":\"Microsoft.Network/virtualNetworks\"},\"after\":{\"apiVersion\":\"2018-10-01\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1\",\"location\":\"southcentralus\",\"name\":\"VNet1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"enableVmProtection\":false},\"type\":\"Microsoft.Network/virtualNetworks\"},\"delta\":[{\"path\":\"properties.subnets\",\"propertyChangeType\":\"Delete\",\"before\":[{\"name\":\"Subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}},{\"name\":\"Subnet2\",\"properties\":{\"addressPrefix\":\"10.0.1.0/24\"}}]}]},{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"changeType\":\"Modify\",\"before\":{\"apiVersion\":\"2018-10-01\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"name\":\"Subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"},\"after\":{\"apiVersion\":\"2018-10-01\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"location\":\"southcentralus\",\"name\":\"Subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"},\"delta\":[{\"path\":\"location\",\"propertyChangeType\":\"Create\",\"after\":\"southcentralus\"}]},{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"changeType\":\"Modify\",\"before\":{\"apiVersion\":\"2018-10-01\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"name\":\"Subnet2\",\"properties\":{\"addressPrefix\":\"10.0.1.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"},\"after\":{\"apiVersion\":\"2018-10-01\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg69b34935/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"location\":\"southcentralus\",\"name\":\"Subnet2\",\"properties\":{\"addressPrefix\":\"10.0.1.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"},\"delta\":[{\"path\":\"location\",\"propertyChangeType\":\"Create\",\"after\":\"southcentralus\"}]}]}}" - } + "Date" : "Tue, 11 Aug 2020 10:01:03 GMT", + "x-ms-correlation-request-id" : "17cec603-c080-461a-b314-071d1ca3207f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100104Z:17cec603-c080-461a-b314-071d1ca3207f", + "Expires" : "-1", + "Content-Length" : "3109", + "x-ms-request-id" : "17cec603-c080-461a-b314-071d1ca3207f", + "Body" : "{\"status\":\"Succeeded\",\"properties\":{\"changes\":[{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\",\"changeType\":\"Modify\",\"before\":{\"apiVersion\":\"2018-10-01\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\",\"location\":\"southcentralus\",\"name\":\"VNet1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"enableVmProtection\":false,\"subnets\":[{\"name\":\"Subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}},{\"name\":\"Subnet2\",\"properties\":{\"addressPrefix\":\"10.0.1.0/24\"}}]},\"type\":\"Microsoft.Network/virtualNetworks\"},\"after\":{\"apiVersion\":\"2018-10-01\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1\",\"location\":\"southcentralus\",\"name\":\"VNet1\",\"properties\":{\"addressSpace\":{\"addressPrefixes\":[\"10.0.0.0/16\"]},\"enableDdosProtection\":false,\"enableVmProtection\":false},\"type\":\"Microsoft.Network/virtualNetworks\"},\"delta\":[{\"path\":\"properties.subnets\",\"propertyChangeType\":\"Delete\",\"before\":[{\"name\":\"Subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"}},{\"name\":\"Subnet2\",\"properties\":{\"addressPrefix\":\"10.0.1.0/24\"}}]}]},{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"changeType\":\"Modify\",\"before\":{\"apiVersion\":\"2018-10-01\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"name\":\"Subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"},\"after\":{\"apiVersion\":\"2018-10-01\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"location\":\"southcentralus\",\"name\":\"Subnet1\",\"properties\":{\"addressPrefix\":\"10.0.0.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"},\"delta\":[{\"path\":\"location\",\"propertyChangeType\":\"Create\",\"after\":\"southcentralus\"}]},{\"resourceId\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"changeType\":\"Modify\",\"before\":{\"apiVersion\":\"2018-10-01\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"name\":\"Subnet2\",\"properties\":{\"addressPrefix\":\"10.0.1.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"},\"after\":{\"apiVersion\":\"2018-10-01\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg112332c/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"location\":\"southcentralus\",\"name\":\"Subnet2\",\"properties\":{\"addressPrefix\":\"10.0.1.0/24\"},\"type\":\"Microsoft.Network/virtualNetworks/subnets\"},\"delta\":[{\"path\":\"location\",\"propertyChangeType\":\"Create\",\"after\":\"southcentralus\"}]}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69b34935/providers/Microsoft.Network//virtualnetworks/VNet1?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg112332c/providers/Microsoft.Network//virtualnetworks/VNet1?api-version=2015-06-15", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4404c41c-553b-4b64-893a-42f4580b0abc", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:33 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14994", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0b11001a-5e76-45cd-bf72-4d380cb93207", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b84b7a22-551f-4269-9ea7-f72266bfb03d", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092534Z:0b11001a-5e76-45cd-bf72-4d380cb93207", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/b8911c4c-1c2d-4eee-aff2-a57d8693676e?api-version=2015-06-15", - "cache-control" : "no-cache", - "x-ms-request-id" : "b8911c4c-1c2d-4eee-aff2-a57d8693676e", - "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b8911c4c-1c2d-4eee-aff2-a57d8693676e?api-version=2015-06-15" - } + "Date" : "Tue, 11 Aug 2020 10:01:05 GMT", + "x-ms-correlation-request-id" : "d9dfbf09-8c82-42c4-af17-7d58593a1851", + "x-ms-arm-service-request-id" : "9144c323-b233-4fd8-8d55-32f206fc50bc", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100105Z:d9dfbf09-8c82-42c4-af17-7d58593a1851", + "Expires" : "-1", + "Content-Length" : "0", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c325ace5-7dd4-451d-87a1-7a7f598a69c7?api-version=2015-06-15", + "x-ms-request-id" : "c325ace5-7dd4-451d-87a1-7a7f598a69c7", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/c325ace5-7dd4-451d-87a1-7a7f598a69c7?api-version=2015-06-15" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b8911c4c-1c2d-4eee-aff2-a57d8693676e?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c325ace5-7dd4-451d-87a1-7a7f598a69c7?api-version=2015-06-15", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d0064df9-8f0f-4f1f-8b73-b2769fe89e1d" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:45 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11950", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "12f06d5d-9874-429a-9d68-f90f83cb88e5", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "0a5121bf-55a5-4e6b-8b62-e15b222d0e22", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092545Z:12f06d5d-9874-429a-9d68-f90f83cb88e5", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f00d4028-bf2f-4356-be5d-7e3f927a06c4", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Tue, 11 Aug 2020 10:01:15 GMT", + "x-ms-correlation-request-id" : "f9bd5eab-3bc1-43ec-9fc0-e1c11f755e16", + "x-ms-arm-service-request-id" : "5aac7b9f-017f-45f8-877c-d41608f0ad0f", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100116Z:f9bd5eab-3bc1-43ec-9fc0-e1c11f755e16", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "180f120b-118a-4b5d-ae99-ae56ac4a07d9", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/b8911c4c-1c2d-4eee-aff2-a57d8693676e?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/c325ace5-7dd4-451d-87a1-7a7f598a69c7?api-version=2015-06-15", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a99dbf38-e250-4460-8bd2-b03a760ac92a" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:45 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11949", + "Azure-AsyncNotification" : "Enabled", + "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "204", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0b11001a-5e76-45cd-bf72-4d380cb93207", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "b84b7a22-551f-4269-9ea7-f72266bfb03d", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092546Z:488d3f28-21cc-47d9-bf95-0ceb1df36fda", - "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/b8911c4c-1c2d-4eee-aff2-a57d8693676e?api-version=2015-06-15", - "cache-control" : "no-cache", - "x-ms-request-id" : "b8911c4c-1c2d-4eee-aff2-a57d8693676e", + "Date" : "Tue, 11 Aug 2020 10:01:15 GMT", + "x-ms-correlation-request-id" : "d9dfbf09-8c82-42c4-af17-7d58593a1851", + "x-ms-arm-service-request-id" : "9144c323-b233-4fd8-8d55-32f206fc50bc", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100116Z:67c2a2f0-037a-4979-a5ac-e7459376939f", + "Expires" : "-1", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/c325ace5-7dd4-451d-87a1-7a7f598a69c7?api-version=2015-06-15", + "x-ms-request-id" : "c325ace5-7dd4-451d-87a1-7a7f598a69c7", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/b8911c4c-1c2d-4eee-aff2-a57d8693676e?api-version=2015-06-15" - } + "Content-Type" : "application/json; charset=utf-8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/c325ace5-7dd4-451d-87a1-7a7f598a69c7?api-version=2015-06-15" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg69b34935?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg112332c?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e9f6bc4b-b400-487a-ad66-1a7fd004498f", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:47 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14990", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2be23a6f-362c-44c1-a88c-d7149d8999e2", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092547Z:2be23a6f-362c-44c1-a88c-d7149d8999e2", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzY5QjM0OTM1LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "2be23a6f-362c-44c1-a88c-d7149d8999e2", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:01:20 GMT", + "x-ms-correlation-request-id" : "b9e6046b-a788-47f1-800f-b321d09652f4", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100121Z:b9e6046b-a788-47f1-800f-b321d09652f4", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "b9e6046b-a788-47f1-800f-b321d09652f4", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzExMjMzMkMtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2020-06-01" + }, + "Exception" : null } ], - "variables" : [ "69b34935" ] + "variables" : [ "112332c" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canPostDeploymentWhatIfOnSubscription.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canPostDeploymentWhatIfOnSubscription.json index 6aa175a799a6..a984a848e20f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canPostDeploymentWhatIfOnSubscription.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canPostDeploymentWhatIfOnSubscription.json @@ -1,321 +1,344 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4f505888?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7864962?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c38d290d-1398-4b7a-b1cf-0a6e55a054f2", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:03 GMT", - "content-length" : "315", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "98acc93a-e3c0-45dc-90da-a9aa8efe680f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092404Z:98acc93a-e3c0-45dc-90da-a9aa8efe680f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "98acc93a-e3c0-45dc-90da-a9aa8efe680f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888\",\"name\":\"rg4f505888\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-27T09:24:01.184580400Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:34 GMT", + "x-ms-correlation-request-id" : "dc2654bd-d1ad-4553-a6b1-702c85894c01", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095835Z:dc2654bd-d1ad-4553-a6b1-702c85894c01", + "Expires" : "-1", + "Content-Length" : "223", + "x-ms-request-id" : "dc2654bd-d1ad-4553-a6b1-702c85894c01", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962\",\"name\":\"rg7864962\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4f505888/providers/Microsoft.Resources/deployments/dpA4f505888?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7864962/providers/Microsoft.Resources/deployments/dpA7864962?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f162a7db-07f9-4f7a-b9c9-ccdc56c4f0e0", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:08 GMT", - "content-length" : "2557", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ab0f34ae-90f8-41e9-b337-0fbc144d060a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092409Z:ab0f34ae-90f8-41e9-b337-0fbc144d060a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "ab0f34ae-90f8-41e9-b337-0fbc144d060a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Resources/deployments/dpA4f505888\",\"name\":\"dpA4f505888\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-07-27T09:24:08.2580705Z\",\"duration\":\"PT1.6511779S\",\"correlationId\":\"ab0f34ae-90f8-41e9-b337-0fbc144d060a\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4f505888/providers/Microsoft.Resources/deployments/dpA4f505888/operationStatuses/08586057650388707282?api-version=2020-06-01" - } + "Date" : "Tue, 11 Aug 2020 09:58:42 GMT", + "x-ms-correlation-request-id" : "ce0dc18b-32b3-49fb-9315-c097613618fb", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095842Z:ce0dc18b-32b3-49fb-9315-c097613618fb", + "Expires" : "-1", + "Content-Length" : "2549", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7864962/providers/Microsoft.Resources/deployments/dpA7864962/operationStatuses/08586044669675529839?api-version=2020-06-01", + "x-ms-request-id" : "ce0dc18b-32b3-49fb-9315-c097613618fb", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Resources/deployments/dpA7864962\",\"name\":\"dpA7864962\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-08-11T09:58:40.6480784Z\",\"duration\":\"PT2.7234315S\",\"correlationId\":\"ce0dc18b-32b3-49fb-9315-c097613618fb\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4f505888/providers/Microsoft.Resources/deployments/dpA4f505888/operationStatuses/08586057650388707282?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7864962/providers/Microsoft.Resources/deployments/dpA7864962/operationStatuses/08586044669675529839?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ebec42a5-767c-4e25-83da-5597f92850bf" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:40 GMT", - "content-length" : "20", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "31d00c44-fe35-41aa-bf88-29cbcb79ac53", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092440Z:31d00c44-fe35-41aa-bf88-29cbcb79ac53", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "31d00c44-fe35-41aa-bf88-29cbcb79ac53", - "Body" : "{\"status\":\"Running\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:12 GMT", + "x-ms-correlation-request-id" : "8aca62c6-6a16-4459-af6e-ce7be713f307", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095913Z:8aca62c6-6a16-4459-af6e-ce7be713f307", + "Expires" : "-1", + "Content-Length" : "20", + "x-ms-request-id" : "8aca62c6-6a16-4459-af6e-ce7be713f307", + "Body" : "{\"status\":\"Running\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4f505888/providers/Microsoft.Resources/deployments/dpA4f505888/operationStatuses/08586057650388707282?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7864962/providers/Microsoft.Resources/deployments/dpA7864962/operationStatuses/08586044669675529839?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f8254784-b0b1-4ca6-94d7-e3d3cdbe9b3b" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:10 GMT", - "content-length" : "22", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11967", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bf61b405-838a-496b-b09b-a70c5e109e50", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092511Z:bf61b405-838a-496b-b09b-a70c5e109e50", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "bf61b405-838a-496b-b09b-a70c5e109e50", - "Body" : "{\"status\":\"Succeeded\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:43 GMT", + "x-ms-correlation-request-id" : "7a14cf92-b5af-4f0e-8b4b-38ea414e4f73", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095943Z:7a14cf92-b5af-4f0e-8b4b-38ea414e4f73", + "Expires" : "-1", + "Content-Length" : "22", + "x-ms-request-id" : "7a14cf92-b5af-4f0e-8b4b-38ea414e4f73", + "Body" : "{\"status\":\"Succeeded\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4f505888/providers/Microsoft.Resources/deployments/dpA4f505888?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7864962/providers/Microsoft.Resources/deployments/dpA7864962?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1c5a940b-9763-4f4d-b9d0-955c37b6d191" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:11 GMT", - "content-length" : "3021", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bb998517-1077-4f82-932d-67a0dbd7caff", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092511Z:bb998517-1077-4f82-932d-67a0dbd7caff", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "bb998517-1077-4f82-932d-67a0dbd7caff", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Resources/deployments/dpA4f505888\",\"name\":\"dpA4f505888\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T09:24:42.0890796Z\",\"duration\":\"PT35.482187S\",\"correlationId\":\"ab0f34ae-90f8-41e9-b337-0fbc144d060a\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}" - } + "Date" : "Tue, 11 Aug 2020 09:59:43 GMT", + "x-ms-correlation-request-id" : "650ced62-3d27-4d1d-84d4-ed283c85b8f5", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095944Z:650ced62-3d27-4d1d-84d4-ed283c85b8f5", + "Expires" : "-1", + "Content-Length" : "3010", + "x-ms-request-id" : "650ced62-3d27-4d1d-84d4-ed283c85b8f5", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Resources/deployments/dpA7864962\",\"name\":\"dpA7864962\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T09:59:25.8217029Z\",\"duration\":\"PT47.897056S\",\"correlationId\":\"ce0dc18b-32b3-49fb-9315-c097613618fb\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4f505888/providers/Microsoft.Resources/deployments/?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7864962/providers/Microsoft.Resources/deployments/?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "9ada6fd5-3bb1-4812-a98e-cc707f8c54d1", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:11 GMT", - "content-length" : "3033", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11966", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f84608b4-4519-4272-8a5d-142c140bf3fe", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092512Z:f84608b4-4519-4272-8a5d-142c140bf3fe", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f84608b4-4519-4272-8a5d-142c140bf3fe", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Resources/deployments/dpA4f505888\",\"name\":\"dpA4f505888\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T09:24:42.0890796Z\",\"duration\":\"PT35.482187S\",\"correlationId\":\"ab0f34ae-90f8-41e9-b337-0fbc144d060a\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}]}" - } + "Date" : "Tue, 11 Aug 2020 09:59:44 GMT", + "x-ms-correlation-request-id" : "20a84b6f-0577-460d-b536-459a3740ebea", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095944Z:20a84b6f-0577-460d-b536-459a3740ebea", + "Expires" : "-1", + "Content-Length" : "3022", + "x-ms-request-id" : "20a84b6f-0577-460d-b536-459a3740ebea", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Resources/deployments/dpA7864962\",\"name\":\"dpA7864962\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T09:59:25.8217029Z\",\"duration\":\"PT47.897056S\",\"correlationId\":\"ce0dc18b-32b3-49fb-9315-c097613618fb\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4f505888/providers/Microsoft.Resources/deployments/dpA4f505888?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7864962/providers/Microsoft.Resources/deployments/dpA7864962?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "9dced0b1-e859-4974-bb93-7ebce32a1171", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:12 GMT", - "content-length" : "3021", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11965", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9c130b43-fca9-4ac9-92a8-05d2f3d4a857", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092513Z:9c130b43-fca9-4ac9-92a8-05d2f3d4a857", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9c130b43-fca9-4ac9-92a8-05d2f3d4a857", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Resources/deployments/dpA4f505888\",\"name\":\"dpA4f505888\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T09:24:42.0890796Z\",\"duration\":\"PT35.482187S\",\"correlationId\":\"ab0f34ae-90f8-41e9-b337-0fbc144d060a\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4f505888/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}" - } + "Date" : "Tue, 11 Aug 2020 09:59:45 GMT", + "x-ms-correlation-request-id" : "30d7a203-eb99-4668-84f6-234fa89e9ff6", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095945Z:30d7a203-eb99-4668-84f6-234fa89e9ff6", + "Expires" : "-1", + "Content-Length" : "3010", + "x-ms-request-id" : "30d7a203-eb99-4668-84f6-234fa89e9ff6", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Resources/deployments/dpA7864962\",\"name\":\"dpA7864962\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T09:59:25.8217029Z\",\"duration\":\"PT47.897056S\",\"correlationId\":\"ce0dc18b-32b3-49fb-9315-c097613618fb\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg7864962/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dpA4f505888/whatIf?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Resources/deployments/dpA7864962/whatIf?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "7e224440-75f0-4072-b160-22604b577f65", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:14 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", - "retry-after" : "0", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d1b58e00-5119-402b-ab4f-bbe6f7a99e50", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092515Z:d1b58e00-5119-402b-ab4f-bbe6f7a99e50", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLURQQTRGNTA1ODg4LUQxQjU4RTAwOjJENTExOToyRDQwMkI6MkRBQjRGOjJEQkJFNkY3QTk5RTUwIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "d1b58e00-5119-402b-ab4f-bbe6f7a99e50", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:47 GMT", + "x-ms-correlation-request-id" : "598e6d36-e5f0-42b2-9013-9eccc775a3f2", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095947Z:598e6d36-e5f0-42b2-9013-9eccc775a3f2", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "598e6d36-e5f0-42b2-9013-9eccc775a3f2", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLURQQTc4NjQ5NjItNTk4RTZEMzY6MkRFNUYwOjJENDJCMjoyRDkwMTM6MkQ5RUNDQzc3NUEzRjIiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLURQQTRGNTA1ODg4LUQxQjU4RTAwOjJENTExOToyRDQwMkI6MkRBQjRGOjJEQkJFNkY3QTk5RTUwIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItLURQQTc4NjQ5NjItNTk4RTZEMzY6MkRFNUYwOjJENDJCMjoyRDkwMTM6MkQ5RUNDQzc3NUEzRjIiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "04dafca5-2f3a-4588-940e-f1e78f610679" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:31 GMT", - "content-length" : "50", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11955", + "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "743aaebb-1fc0-46f3-8766-010d02dbebcc", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092532Z:743aaebb-1fc0-46f3-8766-010d02dbebcc", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "743aaebb-1fc0-46f3-8766-010d02dbebcc", - "Body" : "{\"status\":\"Succeeded\",\"properties\":{\"changes\":[]}}" - } + "Date" : "Tue, 11 Aug 2020 10:00:02 GMT", + "x-ms-correlation-request-id" : "2cd6220e-0309-4d92-8422-a80f180ea426", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100002Z:2cd6220e-0309-4d92-8422-a80f180ea426", + "Expires" : "-1", + "Content-Length" : "50", + "x-ms-request-id" : "2cd6220e-0309-4d92-8422-a80f180ea426", + "Body" : "{\"status\":\"Succeeded\",\"properties\":{\"changes\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4f505888/providers/Microsoft.Network//virtualnetworks/VNet1?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7864962/providers/Microsoft.Network//virtualnetworks/VNet1?api-version=2015-06-15", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "168986e6-6aa9-4581-93c5-9c470d874c31", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:32 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "0", - "expires" : "-1", "x-ms-ratelimit-remaining-subscription-deletes" : "14998", - "retry-after" : "0", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "73ec8269-e202-41bb-80fa-357ab2d2e935", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1550aebe-a966-4cf0-acd8-083b17899ddb", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092533Z:73ec8269-e202-41bb-80fa-357ab2d2e935", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/4d69d716-e957-4d10-b56e-2720c67b2707?api-version=2015-06-15", - "cache-control" : "no-cache", - "x-ms-request-id" : "4d69d716-e957-4d10-b56e-2720c67b2707", - "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4d69d716-e957-4d10-b56e-2720c67b2707?api-version=2015-06-15" - } + "Date" : "Tue, 11 Aug 2020 10:00:03 GMT", + "x-ms-correlation-request-id" : "f31fd8b8-f37c-493d-8eae-6f97a138c494", + "x-ms-arm-service-request-id" : "f4a49a0d-20a7-4381-bb9e-858e968570a7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100004Z:f31fd8b8-f37c-493d-8eae-6f97a138c494", + "Expires" : "-1", + "Content-Length" : "0", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/17931487-2718-4049-8dde-e1a08207ecfe?api-version=2015-06-15", + "x-ms-request-id" : "17931487-2718-4049-8dde-e1a08207ecfe", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/17931487-2718-4049-8dde-e1a08207ecfe?api-version=2015-06-15" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4d69d716-e957-4d10-b56e-2720c67b2707?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/17931487-2718-4049-8dde-e1a08207ecfe?api-version=2015-06-15", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "335d3785-c2e2-440f-b361-423006bfcd17" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:43 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11978", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "94578b00-358c-4cbf-957d-b094a747abe9", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "c3fed5d4-1a90-4483-a9e4-7e23f9ad0fb3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092543Z:94578b00-358c-4cbf-957d-b094a747abe9", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "330511fc-cb64-41b7-ba76-189deee0ae03", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Tue, 11 Aug 2020 10:00:14 GMT", + "x-ms-correlation-request-id" : "d7cf1377-67e5-49f4-8ad4-359036b4bd25", + "x-ms-arm-service-request-id" : "14892e87-0c9c-4085-a2a1-fea710636800", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100015Z:d7cf1377-67e5-49f4-8ad4-359036b4bd25", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "6331a163-b9c8-4995-817b-516f9270bf3f", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/4d69d716-e957-4d10-b56e-2720c67b2707?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/17931487-2718-4049-8dde-e1a08207ecfe?api-version=2015-06-15", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e4af90f6-ed57-4f9b-9cb0-94dd543d2b31" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:44 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11951", + "Azure-AsyncNotification" : "Enabled", + "x-ms-ratelimit-remaining-subscription-reads" : "11989", "StatusCode" : "204", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "73ec8269-e202-41bb-80fa-357ab2d2e935", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "1550aebe-a966-4cf0-acd8-083b17899ddb", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092544Z:03447ec5-6b00-4cd2-a441-718896e53828", - "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/4d69d716-e957-4d10-b56e-2720c67b2707?api-version=2015-06-15", - "cache-control" : "no-cache", - "x-ms-request-id" : "4d69d716-e957-4d10-b56e-2720c67b2707", + "Date" : "Tue, 11 Aug 2020 10:00:15 GMT", + "x-ms-correlation-request-id" : "f31fd8b8-f37c-493d-8eae-6f97a138c494", + "x-ms-arm-service-request-id" : "f4a49a0d-20a7-4381-bb9e-858e968570a7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100015Z:d272e253-8622-42b8-a87f-ed5918255f7f", + "Expires" : "-1", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/17931487-2718-4049-8dde-e1a08207ecfe?api-version=2015-06-15", + "x-ms-request-id" : "17931487-2718-4049-8dde-e1a08207ecfe", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/4d69d716-e957-4d10-b56e-2720c67b2707?api-version=2015-06-15" - } + "Content-Type" : "application/json; charset=utf-8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/17931487-2718-4049-8dde-e1a08207ecfe?api-version=2015-06-15" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4f505888?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg7864962?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e550f98a-f858-49fa-ad71-cb0a77ee0958", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:46 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14990", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "71c8e7ba-9d5f-4ee8-adb0-d15a424beef7", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092546Z:71c8e7ba-9d5f-4ee8-adb0-d15a424beef7", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzRGNTA1ODg4LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "71c8e7ba-9d5f-4ee8-adb0-d15a424beef7", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 10:00:18 GMT", + "x-ms-correlation-request-id" : "af40d3d2-174a-48d6-acdb-96bd12232584", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100019Z:af40d3d2-174a-48d6-acdb-96bd12232584", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "af40d3d2-174a-48d6-acdb-96bd12232584", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzc4NjQ5NjItU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2020-06-01" + }, + "Exception" : null } ], - "variables" : [ "4f505888" ] + "variables" : [ "7864962" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canUnregisterAndRegisterProvider.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canUnregisterAndRegisterProvider.json index a58ec5809617..084c15413149 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canUnregisterAndRegisterProvider.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canUnregisterAndRegisterProvider.json @@ -4,481 +4,703 @@ "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5b227c7f-c604-455f-b3c5-58074f2de930", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:03 GMT", - "content-length" : "953319", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4199fb92-87ea-4b6e-be4c-f4d21977b6e7", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092403Z:4199fb92-87ea-4b6e-be4c-f4d21977b6e7", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4199fb92-87ea-4b6e-be4c-f4d21977b6e7", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"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\",\"Central US\",\"Canada Central\",\"Canada East\",\"UK South\",\"West US\",\"West US 2\",\"Australia East\",\"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\",\"Germany North\",\"Switzerland North\",\"Switzerland West\",\"Germany West Central\",\"UAE North\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"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 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\",\"Germany North\",\"Germany West Central\",\"Switzerland North\",\"Switzerland West\",\"UAE North\",\"UAE Central\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-08-31\",\"2016-03-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operations\",\"locations\":[\"France Central\",\"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 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\",\"Germany North\",\"Germany West Central\",\"Switzerland North\",\"Switzerland West\",\"UAE North\",\"UAE Central\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\"],\"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\",\"Central US\",\"Canada East\",\"Canada Central\",\"UK South\",\"UK West\",\"West Central US\",\"West US\",\"West US 2\",\"Australia East\",\"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\",\"Germany North\",\"Germany West Central\",\"Switzerland North\",\"Switzerland West\",\"UAE North\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-preview\",\"2015-05-01-preview\",\"2015-01-01\",\"2014-04-01-preview\",\"2014-04-01\",\"2014-01-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/serviceObjectives\",\"locations\":[\"Australia Central\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"Norway East\",\"South Africa North\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-preview\",\"2015-09-01-preview\",\"2015-05-01-preview\",\"2015-05-01\",\"2014-04-01-preview\",\"2014-04-01\",\"2014-01-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/jobAccounts\",\"locations\":[\"Australia Central\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"Norway East\",\"South Africa North\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-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, 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-preview\",\"2015-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\",\"2019-06-01\",\"2018-06-30\",\"2018-01-15\",\"2017-05-15-preview\",\"2015-10-31\",\"2015-01-01-preview\"],\"defaultApiVersion\":\"2018-06-30\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"automationAccounts/runbooks\",\"locations\":[\"Japan East\",\"East US 2\",\"West Europe\",\"South Africa North\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\"],\"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\":[\"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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"automationAccounts/privateEndpointConnections\",\"locations\":[\"Japan East\",\"East US 2\",\"West Europe\",\"South Africa North\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"automationAccounts/privateEndpointConnectionProxies\",\"locations\":[\"Japan East\",\"East US 2\",\"West Europe\",\"South Africa North\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"Redis/privateLinkResources\",\"locations\":[\"Australia Southeast\",\"Switzerland North\",\"Germany West Central\"],\"apiVersions\":[\"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\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"West Europe\",\"West US\",\"East US 2\"],\"apiVersions\":[\"2020-04-01-preview\"],\"defaultApiVersion\":\"2020-04-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2020-04-01-preview\"}],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-07-01\",\"2018-03-01\",\"2017-10-01\",\"2017-02-01\",\"2016-04-01\",\"2015-08-01\",\"2015-03-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\":\"2018-11-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"publicIPAddresses\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkInterfaces\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"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\":\"2019-02-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateEndpointRedirectMaps\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"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\":\"2019-07-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationSecurityGroups\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"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\":\"2018-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\":\"2018-04-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"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\":\"2018-07-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"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\":\"2018-10-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkWatchers/flowLogs\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2019-07-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2018-01-01\",\"2017-11-01\",\"2017-10-01\",\"2017-09-01\"],\"defaultApiVersion\":\"2017-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"virtualNetworkGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-03-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"localNetworkGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-03-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2018-12-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationGatewayWebApplicationFirewallPolicies\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"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\":\"2018-12-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"2018-05-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2018-01-01\",\"2017-11-01\",\"2017-10-01\",\"2017-09-01\",\"2017-08-01\",\"2017-06-01\",\"2017-04-01\",\"2017-03-01\",\"2016-12-01\",\"2016-11-01\",\"2016-10-01\",\"2016-09-01\",\"2016-08-01\",\"2016-07-01\",\"2016-06-01\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\",\"2014-12-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"dnszones\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-04-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-04-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2016-04-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dnsOperationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnsOperationStatuses\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"getDnsResourceReference\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"internalNotify\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/A\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/AAAA\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/CNAME\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/PTR\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/MX\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/TXT\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/SRV\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/SOA\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/NS\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/CAA\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/recordsets\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/all\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateDnsZones/virtualNetworkLinks\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateDnsOperationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsOperationStatuses\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZonesInternal\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/A\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/AAAA\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/CNAME\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/PTR\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/MX\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/TXT\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/SRV\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/SOA\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/all\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"trafficmanagerprofiles\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-05-01\",\"2017-03-01\",\"2015-11-01\",\"2015-04-28-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"trafficmanagerprofiles/heatMaps\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-09-01-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"checkTrafficManagerNameAvailability\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-05-01\",\"2017-03-01\",\"2015-11-01\",\"2015-04-28-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"trafficManagerUserMetricsKeys\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2017-09-01-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"trafficManagerGeographicHierarchies\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-05-01\",\"2017-03-01\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"expressRouteCircuits\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"expressRouteServiceProviders\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2016-12-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"bgpServiceCommunities\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"2019-08-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-11-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-11-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"p2sVpnGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"UAE North\",\"South Africa North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2019-08-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"expressRouteGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2018-08-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"ipGroups\",\"locations\":[\"UAE North\",\"Australia Central 2\",\"UAE Central\",\"Germany North\",\"Central India\",\"Korea South\",\"Switzerland North\",\"Switzerland West\",\"Japan West\",\"France South\",\"South Africa West\",\"West India\",\"Canada East\",\"South India\",\"Germany West Central\",\"Norway East\",\"Norway West\",\"South Africa North\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"Brazil South\",\"Japan East\",\"UK West\",\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"South Central US\",\"Australia East\",\"Australia Central\",\"Australia Southeast\",\"UK South\",\"East US 2\",\"West US 2\",\"North Central US\",\"Canada Central\",\"France Central\",\"West Central US\",\"Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"2019-08-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/nfvOperations\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"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-05-01\",\"2020-04-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\":\"2018-04-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"azureFirewallFqdnTags\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2018-08-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2018-08-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"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\":\"2018-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"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\":\"2018-05-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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-05-01\",\"2020-01-01\",\"2019-08-01\",\"2019-05-01\",\"2019-04-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"None\"},{\"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-04-01\",\"2019-10-01\",\"2019-03-01\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"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\":\"2018-10-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"virtualRouters\",\"locations\":[\"UAE North\",\"Australia Central 2\",\"UAE Central\",\"Germany North\",\"Central India\",\"Korea South\",\"Switzerland North\",\"Switzerland West\",\"Japan West\",\"France South\",\"South Africa West\",\"West India\",\"Canada East\",\"South India\",\"Germany West Central\",\"Norway East\",\"Norway West\",\"South Africa North\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"Brazil South\",\"Japan East\",\"UK West\",\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"West Central US\",\"South Central US\",\"Australia East\",\"Australia Central\",\"Australia Southeast\",\"UK South\",\"East US 2\",\"West US 2\",\"North Central US\",\"Canada Central\",\"France Central\",\"Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"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\":\"2019-07-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkVirtualAppliances\",\"locations\":[\"UAE North\",\"Australia Central 2\",\"UAE Central\",\"Germany North\",\"Central India\",\"Korea South\",\"Switzerland North\",\"Switzerland West\",\"Japan West\",\"France South\",\"South Africa West\",\"West India\",\"Canada East\",\"South India\",\"Germany West Central\",\"Norway East\",\"Norway West\",\"South Africa North\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"Brazil South\",\"Japan East\",\"UK West\",\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"West Central US\",\"South Central US\",\"Australia East\",\"Australia Central\",\"Australia Southeast\",\"UK South\",\"East US 2\",\"West US 2\",\"North Central US\",\"Canada Central\",\"France Central\",\"Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\"],\"defaultApiVersion\":\"2019-12-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"ipAllocations\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/commitInternalAzureNetworkManagerConfiguration\",\"locations\":[\"West Central US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2019-12-01\",\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"networkVirtualApplianceSkus\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\"],\"defaultApiVersion\":\"2020-03-01\",\"capabilities\":\"None\"},{\"resourceType\":\"networkWatchers/lenses\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"2018-01-01\",\"2017-11-01\",\"2017-10-01\",\"2017-09-01\"],\"defaultApiVersion\":\"2017-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"frontdoorOperationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"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-04-01\",\"capabilities\":\"None\"},{\"resourceType\":\"frontdoors\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\",\"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-05-01\",\"2020-04-01\",\"2020-01-01\",\"2019-08-01\",\"2019-05-01\",\"2019-04-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"frontdoors/frontendEndpoints\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\",\"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-05-01\",\"2020-04-01\",\"2020-01-01\",\"2019-08-01\",\"2019-05-01\",\"2019-04-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"frontdoorWebApplicationFirewallPolicies\",\"locations\":[\"East US 2 EUAP\",\"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-04-01\",\"2019-10-01\",\"2019-03-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkExperimentProfiles\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\",\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West 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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-10-30-preview\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"virtualMachineScaleSets/extensions\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"Central US\",\"North Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"Australia Central\",\"Brazil South\",\"South India\",\"Central India\",\"West India\",\"Canada Central\",\"Canada East\",\"West US 2\",\"West Central US\",\"UK South\",\"UK West\",\"Korea Central\",\"Korea South\",\"France Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-10-30-preview\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"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-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\"],\"defaultApiVersion\":\"2019-12-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2014-04-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-15-preview\"],\"defaultApiVersion\":\"2017-10-15-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"sharedVMImages/versions\",\"locations\":[\"West Central US\",\"South Central US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US\",\"East US\",\"Canada Central\",\"North Europe\",\"North Central US\",\"Brazil South\",\"UK West\",\"West India\",\"East Asia\",\"Australia East\",\"Japan East\",\"Korea South\",\"West US 2\",\"Canada East\",\"UK South\",\"Central India\",\"South India\",\"Australia Southeast\",\"Japan West\",\"Korea Central\",\"France Central\",\"Central US\",\"Australia Central\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-15-preview\"],\"defaultApiVersion\":\"2017-10-15-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/artifactPublishers\",\"locations\":[\"West Central US\",\"South Central US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US\",\"East US\",\"Canada Central\",\"North Europe\",\"North Central US\",\"Brazil South\",\"UK West\",\"West India\",\"East Asia\",\"Australia East\",\"Japan East\",\"Korea South\",\"West US 2\",\"Canada East\",\"UK South\",\"Central India\",\"South India\",\"Australia Southeast\",\"Japan West\",\"Korea Central\",\"France Central\",\"Central US\",\"Australia Central\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-15-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/capsoperations\",\"locations\":[\"West Central US\",\"South Central US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US\",\"East US\",\"Canada Central\",\"North Europe\",\"North Central US\",\"Brazil South\",\"UK West\",\"West India\",\"East Asia\",\"Australia East\",\"Japan East\",\"Korea South\",\"West US 2\",\"Canada East\",\"UK South\",\"Central India\",\"South India\",\"Australia Southeast\",\"Japan West\",\"Korea Central\",\"France Central\",\"Central US\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-06-01\"],\"defaultApiVersion\":\"2018-06-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"disks\",\"locations\":[\"Southeast Asia\",\"East US 2\",\"Central US\",\"West Europe\",\"East US\",\"North Central US\",\"South Central US\",\"West US\",\"North Europe\",\"East Asia\",\"Brazil South\",\"West US 2\",\"West Central US\",\"UK West\",\"UK South\",\"Japan East\",\"Japan West\",\"Canada Central\",\"Canada East\",\"Central India\",\"South India\",\"Australia East\",\"Australia Southeast\",\"Korea Central\",\"Korea South\",\"West India\",\"France Central\",\"South Africa North\",\"UAE North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"2018-06-01\",\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West 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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"2018-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/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2019-11-01\",\"2019-07-01\"],\"defaultApiVersion\":\"2019-07-01\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/vsmoperations\",\"locations\":[\"East US\",\"West Central US\",\"South Central US\",\"North Europe\",\"Australia East\",\"Central US\",\"North Central US\",\"Southeast Asia\",\"West US\",\"East US 2\",\"West Europe\",\"West India\",\"Australia Central\",\"Australia Central 2\",\"UK West\",\"Brazil South\",\"East Asia\",\"South India\",\"Australia Southeast\",\"France South\",\"West US 2\",\"Japan West\",\"France Central\",\"Central India\",\"Korea South\",\"Korea Central\",\"Japan East\",\"Canada East\",\"Canada Central\",\"South Africa North\",\"UAE North\",\"South Africa West\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-03-30\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-03-30\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-12-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"images\",\"locations\":[\"Southeast Asia\",\"East US 2\",\"Central US\",\"West Europe\",\"East US\",\"North Central US\",\"South Central US\",\"West US\",\"North Europe\",\"East Asia\",\"Brazil South\",\"West US 2\",\"West Central US\",\"UK West\",\"UK South\",\"Japan East\",\"Japan West\",\"Canada Central\",\"Canada East\",\"Central India\",\"South India\",\"Australia East\",\"Australia Southeast\",\"Korea Central\",\"Korea South\",\"West India\",\"France Central\",\"South Africa North\",\"UAE North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\"],\"defaultApiVersion\":\"2018-10-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West 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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\"],\"defaultApiVersion\":\"2018-10-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\",\"Australia Southeast\",\"Australia Central 2\",\"Germany West Central\",\"Switzerland West\",\"UAE Central\",\"UK West\"],\"apiVersions\":[\"2018-05-01-preview\",\"2015-05-01\",\"2014-12-01-preview\",\"2014-08-01\",\"2014-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"components/query\",\"locations\":[],\"apiVersions\":[\"2018-04-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"components/metadata\",\"locations\":[],\"apiVersions\":[\"2018-04-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"components/metrics\",\"locations\":[\"East US\",\"South Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"UK South\",\"Central India\",\"Canada Central\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"East US 2\",\"East Asia\",\"West US\",\"Central US\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"apiVersions\":[\"2018-04-20\",\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"components/events\",\"locations\":[\"East US\",\"South Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"UK South\",\"Central India\",\"Canada Central\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"East US 2\",\"East Asia\",\"West US\",\"Central US\",\"South Africa North\",\"North Central US\"],\"apiVersions\":[\"2018-04-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"webtests\",\"locations\":[\"East US\",\"South Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"UK South\",\"Central India\",\"Canada Central\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"Central US\",\"East US 2\",\"East Asia\",\"West US\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\",\"Australia Central 2\",\"Germany West Central\",\"Switzerland West\",\"UAE Central\",\"UK West\"],\"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\":[\"West Central US\",\"East US\",\"West Europe\",\"Central India\",\"Canada Central\",\"Australia Southeast\",\"Japan East\",\"Southeast Asia\",\"UK South\",\"South Central US\",\"North Europe\",\"West US 2\",\"Australia Central\",\"Australia East\",\"Korea Central\",\"France Central\",\"Central US\",\"East US 2\",\"East Asia\",\"West US\",\"North Central US\",\"South Africa North\",\"Brazil South\",\"UK West\",\"Switzerland North\",\"Switzerland West\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-03-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2015-04-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"eventtypes\",\"locations\":[],\"apiVersions\":[\"2017-03-01-preview\",\"2016-09-01-preview\",\"2015-04-01\",\"2014-11-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-01\"}],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"locations\",\"locations\":[\"East US\"],\"apiVersions\":[\"2015-04-01\",\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[],\"apiVersions\":[\"2015-04-01\",\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"vmInsightsOnboardingStatuses\",\"locations\":[],\"apiVersions\":[\"2018-11-27-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2015-04-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"diagnosticSettings\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"North Central US\",\"South Central US\",\"East US 2\",\"Central US\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"UK South\",\"UK West\",\"South India\",\"Central India\",\"West India\",\"Canada East\",\"Canada Central\",\"West Central US\",\"West US 2\",\"Korea South\",\"Korea Central\",\"Australia Central\",\"Australia Central 2\",\"France Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"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\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"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\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"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\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"apiVersions\":[\"2020-02-12\",\"2018-06-17-preview\",\"2018-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workbooktemplates\",\"locations\":[\"West Europe\",\"South Central US\",\"East US\",\"North Europe\",\"Southeast Asia\",\"West US 2\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"Central US\",\"East US 2\",\"East Asia\",\"West US\",\"Canada Central\",\"Central India\",\"UK South\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"apiVersions\":[\"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\",\"Australia Southeast\"],\"apiVersions\":[\"2020-02-12\",\"2018-06-17-preview\",\"2018-06-15-preview\",\"2018-06-01-preview\",\"2016-06-15-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"logs\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"Central US\",\"North Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"South India\",\"Central India\",\"West India\",\"Canada Central\",\"Canada East\",\"West US 2\",\"West Central US\",\"UK South\",\"UK West\",\"Korea Central\",\"Korea South\",\"France Central\",\"France South\",\"Australia Central\",\"South Africa North\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"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\"},{\"resourceType\":\"dataCollectionRules\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-01-preview\"],\"defaultApiVersion\":\"2019-11-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dataCollectionRuleAssociations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-01-preview\"],\"defaultApiVersion\":\"2019-11-01-preview\",\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2017-04-26-preview\",\"2017-03-15-preview\",\"2017-03-03-preview\",\"2017-01-01-preview\",\"2015-11-01-preview\",\"2015-03-20\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"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\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2019-08-01-preview\",\"2015-11-01-preview\"],\"defaultApiVersion\":\"2015-11-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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2015-11-01-preview\"],\"defaultApiVersion\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2019-08-01-preview\"],\"defaultApiVersion\":\"2019-08-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"storageInsightConfigs\",\"locations\":[],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2019-08-01-preview\",\"2015-11-01-preview\"],\"defaultApiVersion\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\",\"2015-11-01-preview\",\"2014-11-10\"],\"defaultApiVersion\":\"2015-11-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SignalRService\",\"namespace\":\"Microsoft.SignalRService\",\"authorizations\":[{\"applicationId\":\"cdad765c-f191-43ba-b9f5-7aef392f811d\",\"roleDefinitionId\":\"346b504e-4aec-45d1-be25-a6e10f3cb4fe\"}],\"resourceTypes\":[{\"resourceType\":\"SignalR\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatuses\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"West US\",\"East US\",\"East US 2\",\"West US 2\",\"Central US\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"SignalR/eventGridFilters\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/clusters\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/fileservers\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/experiments\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/experiments/jobs\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"West Central US\",\"Southeast Asia\",\"South Central US\",\"West US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"clusters\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"jobs\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"fileservers\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.AlertsManagement\",\"namespace\":\"Microsoft.AlertsManagement\",\"authorizations\":[{\"applicationId\":\"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\"roleDefinitionId\":\"b1309299-720d-4159-9897-6158a61aee41\"}],\"resourceTypes\":[{\"resourceType\":\"alerts\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-05-preview\",\"2018-11-02-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"alertsList\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-11-02-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"alertsSummaryList\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-11-02-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"alertsMetaData\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-05-preview\",\"2019-03-01-preview\",\"2019-03-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-05-05-preview\",\"2018-05-05\",\"2017-11-15-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"2020-05-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-09-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"2017-05-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-03-01-preview\",\"2020-03-01\",\"2019-08-01\",\"2019-04-01\",\"2018-12-01\",\"2017-09-01\",\"2017-05-01\",\"2017-01-01\",\"2015-12-01\",\"2015-09-01\",\"2015-07-01\",\"2014-05-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-15\",\"2020-03-31\",\"2019-12-31\",\"2019-06-15-preview\",\"2019-04-15\",\"2018-04-02\",\"2017-10-12\",\"2017-04-02\",\"2016-10-02\",\"2016-04-02\",\"2015-06-01\"],\"defaultApiVersion\":\"2017-10-12\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"profiles/endpoints\",\"locations\":[\"global\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Central US\",\"South India\",\"Southeast Asia\",\"West Europe\",\"West India\",\"West US\",\"West Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-15\",\"2020-03-31\",\"2019-12-31\",\"2019-06-15-preview\",\"2019-04-15\",\"2018-04-02\",\"2017-10-12\",\"2017-04-02\",\"2016-10-02\",\"2016-04-02\",\"2015-06-01\"],\"defaultApiVersion\":\"2017-10-12\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"profiles/endpoints/origins\",\"locations\":[\"global\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Central US\",\"South India\",\"Southeast Asia\",\"West Europe\",\"West India\",\"West US\",\"West Central US\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-15\",\"2020-03-31\",\"2019-12-31\"],\"defaultApiVersion\":\"2019-12-31\",\"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-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-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-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-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/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-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-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-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-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-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-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-04-15\",\"2019-06-15-preview\"],\"defaultApiVersion\":\"2019-06-15-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"CdnWebApplicationFirewallManagedRuleSets\",\"locations\":[],\"apiVersions\":[\"2020-04-15\",\"2019-06-15-preview\"],\"defaultApiVersion\":\"2019-06-15-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2017-04-18\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-12-01-preview\",\"2017-12-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"serversv2\",\"locations\":[\"East US 2\",\"East US\",\"North Central US\",\"Canada Central\",\"Australia East\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"North Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-03-29-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"serverGroups\",\"locations\":[\"East US 2\",\"East US\",\"North Central US\",\"Canada Central\",\"Australia East\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"North Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-03-29-privatepreview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"singleServers\",\"locations\":[\"West US 2\",\"North Central US\",\"East US\",\"East US 2\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-14-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\",\"2015-03-01-preview\"],\"defaultApiVersion\":\"2015-03-01-preview\",\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeAnalytics\",\"namespace\":\"Microsoft.DataLakeAnalytics\",\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\"],\"apiVersions\":[\"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\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/storageAccounts\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/storageAccounts/containers\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\"],\"apiVersions\":[\"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\":[\"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\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-11-01-preview\",\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization\",\"namespace\":\"Microsoft.Authorization\",\"authorizations\":[{\"applicationId\":\"de926fbf-e23b-41f9-ae15-c943a9cfa630\"}],\"resourceTypes\":[{\"resourceType\":\"roleAssignments\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"databaseAccounts\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationsStatus\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"restorableDatabaseAccounts\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore\",\"namespace\":\"Microsoft.DataLakeStore\",\"authorization\":{\"applicationId\":\"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\"roleDefinitionId\":\"17eb9cca-f08a-4499-b2d3-852d175f614f\"},\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"defaultApiVersion\":\"2016-11-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"accounts/firewallRules\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/eventGridFilters\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/capability\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/deleteVirtualNetworkOrSubnets\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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-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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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-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-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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"partnerRegistrations\",\"locations\":[\"Global\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-09-01\",\"2018-02-14-preview\",\"2018-02-14\"],\"defaultApiVersion\":\"2019-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"managedHSMs\",\"locations\":[\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"defaultApiVersion\":\"2020-04-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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 Central US\",\"France Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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 Central US\",\"France Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-30\",\"2015-08-31-PREVIEW\"],\"capabilities\":\"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 Central US\",\"France Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-30\",\"2015-08-31-PREVIEW\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\"],\"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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2020-02-02\",\"2019-06-15\",\"2019-05-13-preview\",\"2019-05-13\",\"2018-12-20-preview\",\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-07-10\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-10\"}],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Search\",\"namespace\":\"Microsoft.Search\",\"authorization\":{\"applicationId\":\"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\"roleDefinitionId\":\"20FA3191-87CF-4C3D-9510-74CCB594A310\"},\"resourceTypes\":[{\"resourceType\":\"searchServices\",\"locations\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"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-03-13\",\"2019-10-01-Preview\",\"2015-08-19\"],\"capabilities\":\"None\"},{\"resourceType\":\"resourceHealthMetadata\",\"locations\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-03-13\",\"2019-10-01-Preview\",\"2015-08-19\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-13\",\"2019-10-01-Preview\",\"2015-08-19\",\"2015-02-28\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\"],\"capabilities\":\"None\"},{\"resourceType\":\"secureScores/secureScoreControls\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"secureScoreControls\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"secureScoreControlDefinitions\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"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\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-01-01\",\"2017-08-01-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"deviceSecurityGroups\",\"locations\":[\"North Europe\",\"West Europe\",\"UK South\",\"UK West\",\"France Central\",\"France South\",\"West Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2017-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2017-08-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\"],\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"],\"apiVersions\":[\"2019-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-11-01-preview\",\"2019-10-01\",\"2019-02-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"configurationStores/eventGridFilters\",\"locations\":[\"West Central US\",\"Central US\",\"West US\",\"East US\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-11-01-preview\",\"2019-10-01\",\"2019-02-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2018-07-01-preview\",\"2017-07-01\",\"2016-10-01\",\"2016-06-01\",\"2015-08-01-preview\",\"2015-02-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/workflows\",\"locations\":[\"North Central US\",\"Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"West US\",\"East US\",\"East US 2\",\"Japan West\",\"Japan East\",\"Brazil South\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2018-07-01-preview\",\"2016-06-01\",\"2015-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"integrationServiceEnvironments\",\"locations\":[\"North Central US\",\"Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"West US\",\"East US\",\"East US 2\",\"Japan West\",\"Japan East\",\"Australia East\",\"Australia Southeast\",\"South India\",\"Central India\",\"Canada Central\",\"West US 2\",\"UK South\",\"UK West\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\",\"2019-05-01\",\"2018-07-01-preview\",\"2018-03-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"integrationServiceEnvironments/managedApis\",\"locations\":[\"North Central US\",\"Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"West US\",\"East US\",\"East US 2\",\"Japan West\",\"Japan East\",\"Australia East\",\"Australia Southeast\",\"South India\",\"Central India\",\"Canada Central\",\"West US 2\",\"West Central US\",\"UK South\",\"UK West\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\",\"2019-05-01\",\"2018-07-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"hostingEnvironments\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-04-01-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"isolatedEnvironments\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-07-01-preview\",\"2018-03-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL\",\"namespace\":\"Microsoft.DBforMySQL\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-12-01-preview\",\"2017-12-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/recoverableServers\",\"locations\":[\"Australia Central\",\"Australia Central 2\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"Central India\",\"East Asia\",\"East US 2\",\"East US\",\"France Central\",\"France South\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Norway East\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppPlatform\",\"namespace\":\"Microsoft.AppPlatform\",\"authorizations\":[{\"applicationId\":\"03b39d0f-4213-4864-a245-b1476ec03169\"},{\"applicationId\":\"b61cc489-e138-4a69-8bf3-c2c5855c8784\",\"roleDefinitionId\":\"462ddd96-910a-44f5-adfa-644d99942778\"},{\"applicationId\":\"e8de9221-a19c-4c81-b814-fd37c6caf9d2\"}],\"resourceTypes\":[{\"resourceType\":\"Spring\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"Spring/apps\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatus\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"},{\"resourceType\":\"configurationProfileAssignments\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-30-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"autoManagedVmConfigurationProfiles\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-30-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"autoManagedAccounts\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-30-preview\"],\"defaultApiVersion\":\"2018-06-30-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"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\":[\"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\":[\"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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"UAE North\"],\"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\",\"UAE North\"],\"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\",\"UAE North\"],\"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\",\"UAE North\"],\"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\",\"UAE North\"],\"apiVersions\":[\"2020-01-01\",\"2017-06-01\",\"2017-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-03-01-preview\",\"2020-03-01\"],\"defaultApiVersion\":\"2020-03-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"tenants\",\"locations\":[\"West US\"],\"apiVersions\":[\"2017-04-01\",\"2017-03-01\",\"2016-09-01\",\"2016-08-01\",\"2016-07-01\",\"2016-06-01\",\"2016-03-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\"],\"defaultApiVersion\":\"2017-04-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"West US\"],\"apiVersions\":[\"2017-04-01\",\"2017-03-01\",\"2016-09-01\",\"2016-08-01\",\"2016-07-01\",\"2016-06-01\",\"2016-03-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"diagnosticSettings\",\"locations\":[],\"apiVersions\":[\"2017-04-01-preview\",\"2017-04-01\"],\"defaultApiVersion\":\"2017-04-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"diagnosticSettingsCategories\",\"locations\":[],\"apiVersions\":[\"2017-04-01-preview\",\"2017-04-01\"],\"defaultApiVersion\":\"2017-04-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-08-01-beta\",\"2017-08-01\",\"2017-07-14\",\"2016-05-16\"],\"defaultApiVersion\":\"2017-08-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-08-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2\",\"West Central US\",\"West US 2\"],\"apiVersions\":[\"2017-08-01-beta\",\"2017-08-01\",\"2017-07-14\",\"2016-05-16\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-08-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ApiManagement\",\"namespace\":\"Microsoft.ApiManagement\",\"authorization\":{\"applicationId\":\"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\"roleDefinitionId\":\"e263b525-2e60-4418-b655-420bae0b172e\"},\"resourceTypes\":[{\"resourceType\":\"service\",\"locations\":[\"Canada East\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\":[],\"apiVersions\":[\"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\":\"reportFeedback\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"defaultProviders\",\"locations\":[\"East US 2\",\"Central US\",\"UK South\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/defaultProvider\",\"locations\":[\"East US 2\",\"Central US\",\"UK South\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AVS\",\"namespace\":\"Microsoft.AVS\",\"authorizations\":[{\"allowedThirdPartyExtensions\":[{\"name\":\"VMCP\"}]}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkTrialAvailability\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkQuotaAvailability\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"privateClouds\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateClouds/clusters\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"privateClouds/authorizations\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"privateClouds/hcxEnterpriseSites\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AzureActiveDirectory\",\"namespace\":\"Microsoft.AzureActiveDirectory\",\"resourceTypes\":[{\"resourceType\":\"b2cDirectories\",\"locations\":[\"Global\",\"United States\",\"Europe\",\"Asia Pacific\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-01-01-privatepreview\",\"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\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-01-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Global\",\"United States\",\"Europe\",\"Asia Pacific\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-01-01-privatepreview\",\"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\"],\"apiVersions\":[\"2020-05-01-preview\",\"2016-02-10-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-10-preview\"],\"defaultApiVersion\":\"2019-05-10-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Canada Central\",\"France Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South 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\",\"East US 2 EUAP\"],\"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 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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-10-preview\"],\"defaultApiVersion\":\"2019-05-10-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"dataControllers\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"postgresInstances\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sqlManagedInstances\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sqlServerInstances\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/billingProfiles/createBillingRoleAssignment\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment\",\"locations\":[],\"apiVersions\":[\"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-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-05-01\",\"2019-10-01-preview\",\"2018-11-01-preview\",\"2018-06-30\",\"2018-05-31\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/operationResults\",\"locations\":[],\"apiVersions\":[\"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-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-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-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-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-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\":[\"2019-10-01-preview\",\"2018-06-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/departments/billingRoleDefinitions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/departments/billingRoleAssignments\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/departments/billingPermissions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\",\"2018-06-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts/billingRoleDefinitions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts/billingRoleAssignments\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts/billingPermissions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"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/billingSubscriptions\",\"locations\":[],\"apiVersions\":[\"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-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-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\":[\"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\":\"validateAddress\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2019-10-01-preview\",\"2018-11-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.BingMaps\",\"namespace\":\"Microsoft.BingMaps\",\"resourceTypes\":[{\"resourceType\":\"mapApis\",\"locations\":[\"West US\"],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"None\"},{\"resourceType\":\"listCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"None\"},{\"resourceType\":\"updateCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"watchers\",\"locations\":[\"East US\",\"West Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"defaultApiVersion\":\"2019-06-01-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"blockchainMembers\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/watcherOperationResults\",\"locations\":[\"East US\",\"West Europe\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/blockchainMemberOperationResults\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/listConsortiums\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"cordaMembers\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"defaultApiVersion\":\"2018-06-01-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.Blueprint\",\"namespace\":\"Microsoft.Blueprint\",\"authorizations\":[{\"applicationId\":\"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\"roleDefinitionId\":\"cb180127-cf6d-4672-9e75-e29a487f9658\"}],\"resourceTypes\":[{\"resourceType\":\"blueprints\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"blueprints/artifacts\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprints/versions\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprints/versions/artifacts\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprintAssignments\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"SystemAssignedResourceIdentity, SupportsExtension\"},{\"resourceType\":\"blueprintAssignments/operations\",\"locations\":[],\"apiVersions\":[\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprintAssignments/assignmentOperations\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.BotService\",\"namespace\":\"Microsoft.BotService\",\"authorization\":{\"applicationId\":\"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\"roleDefinitionId\":\"71213c26-43ed-41d8-9905-3c12971517a3\"},\"resourceTypes\":[{\"resourceType\":\"botServices\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"botServices/channels\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"botServices/connections\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"listAuthServiceProviders\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Capacity\",\"namespace\":\"Microsoft.Capacity\",\"authorization\":{\"applicationId\":\"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\"roleDefinitionId\":\"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"},\"resourceTypes\":[{\"resourceType\":\"resourceProviders\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"2019-04-01-beta\",\"2019-04-01\",\"2018-06-01-beta\",\"2018-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"exchange\",\"locations\":[],\"apiVersions\":[\"2019-04-01-beta\",\"2019-04-01\",\"2018-06-01-beta\",\"2018-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"reservationOrders/calculateRefund\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\":[\"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\":[\"2019-04-01-beta\",\"2019-04-01\",\"2018-06-01-beta\",\"2018-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"validateReservationOrder\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ChangeAnalysis\",\"namespace\":\"Microsoft.ChangeAnalysis\",\"authorizations\":[{\"applicationId\":\"2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8\",\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[],\"capabilities\":\"None\"},{\"resourceType\":\"moveSubscriptionResources\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"validateSubscriptionMoveAvailability\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationStatuses\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operatingSystems\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operatingSystemFamilies\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2015-06-15\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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)\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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)\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\",\"2014-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"gatewaySupportedDevices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\"],\"defaultApiVersion\":\"2015-06-01\",\"capabilities\":\"SupportsLocation\"},{\"resourceType\":\"capabilities\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"expressRouteCrossConnections\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"expressRouteCrossConnections/peerings\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\",\"2014-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkStorageAccountAvailability\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/services/metricDefinitions\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/services/metrics\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/metricDefinitions\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/metrics\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"capabilities\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/blobServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/tableServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/fileServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/queueServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"disks\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"images\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[],\"capabilities\":\"None\"},{\"resourceType\":\"osImages\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"osPlatformImages\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2016-04-01-beta\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\",\"2014-04-01\",\"2014-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-07-10-privatepreview\",\"2020-07-10-beta\",\"2020-07-10-alpha\",\"2020-06-16-privatepreview\",\"2020-06-16-beta\",\"2020-06-16-alpha\",\"2020-06-16\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2020-07-10-privatepreview\",\"2020-07-10-beta\",\"2020-07-10-alpha\",\"2020-06-16-privatepreview\",\"2020-06-16-beta\",\"2020-06-16-alpha\",\"2020-06-16\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.ConnectedCache\",\"namespace\":\"Microsoft.ConnectedCache\",\"authorizations\":[],\"resourceTypes\":[{\"resourceType\":\"CacheNodes\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-12-04-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.CostManagement\",\"namespace\":\"Microsoft.CostManagement\",\"authorizations\":[{\"applicationId\":\"3184af01-7a88-49e0-8b55-8ecdce0aa950\"}],\"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\":\"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-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\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-02-28-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"requests\",\"locations\":[],\"apiVersions\":[\"2018-02-28-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"associations\",\"locations\":[\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2019-09-01\",\"2018-01-01\"],\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2019-09-01\",\"2018-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2019-09-01\",\"2018-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataBoxEdge\",\"namespace\":\"Microsoft.DataBoxEdge\",\"authorizations\":[{\"applicationId\":\"2368d027-f996-4edb-bf48-928f98f2ab8c\"}],\"resourceTypes\":[{\"resourceType\":\"DataBoxEdgeDevices\",\"locations\":[\"East US\",\"West Europe\",\"Southeast Asia\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"DataBoxEdgeDevices/checkNameAvailability\",\"locations\":[\"East US\",\"West Europe\",\"Southeast Asia\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"2020-07-01-preview\",\"2020-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"France Central\",\"UAE North\"],\"apiVersions\":[\"2018-04-01\"],\"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\"],\"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\"],\"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\",\"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\"],\"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\",\"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\",\"France Central\",\"UAE North\"],\"apiVersions\":[\"2018-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataCatalog\",\"namespace\":\"Microsoft.DataCatalog\",\"authorization\":{\"applicationId\":\"213f5f78-fb30-46c7-9e98-91c720a1c026\",\"roleDefinitionId\":\"D55E2225-A6AB-481C-A5BE-1B7687C293FA\"},\"resourceTypes\":[{\"resourceType\":\"catalogs\",\"locations\":[\"East US\",\"West US\",\"Australia East\",\"West Europe\",\"North Europe\",\"Southeast Asia\",\"West Central US\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"West Europe\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"West Europe\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/jobs\",\"locations\":[\"East US\",\"West US\",\"Australia East\",\"West Europe\",\"North Europe\",\"Southeast Asia\",\"West Central US\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataCollaboration\",\"namespace\":\"Microsoft.DataCollaboration\",\"authorization\":{\"applicationId\":\"2cc451ba-a8ec-496f-bdff-591f5ae2876c\",\"roleDefinitionId\":\"fdf757e9-19df-4152-a1ae-5e719161cd12\"},\"resourceTypes\":[{\"resourceType\":\"listinvitations\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consumerInvitations/reject\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consumerInvitations\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataFactory\",\"namespace\":\"Microsoft.DataFactory\",\"authorizations\":[{\"applicationId\":\"0947a342-ab4a-43be-93b3-b8243fc161e5\",\"roleDefinitionId\":\"f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da\"},{\"applicationId\":\"5d13f7d7-0567-429c-9880-320e9555e5fc\",\"roleDefinitionId\":\"956a8f20-9168-4c71-8e27-3c0460ac39a4\"}],\"resourceTypes\":[{\"resourceType\":\"dataFactories\",\"locations\":[\"West US\",\"North Europe\",\"East US\",\"West Central US\"],\"apiVersions\":[\"2015-10-01\",\"2015-09-01\",\"2015-08-01\",\"2015-07-01-preview\",\"2015-05-01-preview\",\"2015-01-01-preview\",\"2014-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"factories\",\"locations\":[\"East US\",\"East US 2\",\"Central US\",\"South Central US\",\"Japan East\",\"Canada Central\",\"Australia East\",\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01\",\"2017-09-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"factories/integrationRuntimes\",\"locations\":[\"East US\",\"East US 2\",\"West US 2\",\"West US\",\"Central US\",\"South Central US\",\"Japan East\",\"Central India\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Australia East\",\"Canada Central\",\"West Central US\",\"North Europe\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"East Asia\",\"North Central US\",\"South Africa North\",\"Australia Southeast\",\"East US 2 EUAP\"],\"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\",\"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\",\"East US 2 EUAP\"],\"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\",\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01\"],\"defaultApiVersion\":\"2018-06-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection\",\"namespace\":\"Microsoft.DataProtection\",\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"BackupVaults\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"ResourceOperationGateKeepers\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatus\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataShare\",\"namespace\":\"Microsoft.DataShare\",\"authorization\":{\"applicationId\":\"799f1985-1517-4fe1-af2b-ba3d87d4996b\",\"roleDefinitionId\":\"0146496b-e06f-439a-83be-49fac884edf5\"},\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"accounts/shares\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/datasets\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/synchronizationSettings\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/invitations\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/providersharesubscriptions\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions/datasetmappings\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions/triggers\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions/consumerSourceDataSets\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"listinvitations\",\"locations\":[\"East US 2\",\"East US\",\"Australia East\",\"Southeast Asia\",\"West US 2\",\"North Europe\",\"UK South\",\"West Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"East US 2\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\",\"2018-11-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West Central US\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/rejectInvitation\",\"locations\":[\"East US 2\",\"East US\",\"Australia East\",\"West US 2\",\"North Europe\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West Central US\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consumerInvitations\",\"locations\":[\"East US 2\",\"East US\",\"Australia East\",\"West US 2\",\"North Europe\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West Central US\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-11-01\",\"2018-11-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\",\"2018-06-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/recoverableServers\",\"locations\":[\"Australia Central\",\"Australia Central 2\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"Central India\",\"East Asia\",\"East US 2\",\"East US\",\"France Central\",\"France South\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Norway East\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"servers/keys\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-01-preview\",\"2018-09-01-preview\"],\"defaultApiVersion\":\"2018-09-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-09-01-preview\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2019-11-01-preview\",\"2018-09-01-preview\"],\"defaultApiVersion\":\"2018-09-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-09-01-preview\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"global\"],\"apiVersions\":[\"2019-11-01-preview\",\"2018-09-01-preview\"],\"defaultApiVersion\":\"2018-09-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-09-01-preview\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationgroups\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationgroups/applications\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"applicationgroups/desktops\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"applicationgroups/startmenuitems\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"hostpools\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"hostpools/sessionhosts\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"hostpools/sessionhosts/usersessions\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"hostpools/usersessions\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-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-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-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-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"2018-01-22\",\"2017-07-01\",\"2017-01-19\",\"2016-02-03\",\"2015-08-15-preview\"],\"defaultApiVersion\":\"2020-01-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-04-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"IotHubs/eventGridFilters\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Central US\",\"East US 2\",\"Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"UK South\",\"UK West\",\"South India\",\"Central India\",\"Canada Central\",\"Canada East\",\"Brazil South\",\"South Central US\",\"Korea South\",\"Korea Central\",\"France Central\",\"North Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-03-01\",\"2020-01-01\",\"2018-01-22\",\"2017-11-15\",\"2017-08-21-preview\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"IotHubs/securitySettings\",\"locations\":[\"West US\",\"North Europe\",\"East Asia\",\"East US\",\"West Europe\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"West US 2\",\"West Central US\",\"East US 2\",\"Central US\",\"UK South\",\"UK West\",\"South India\",\"Central India\",\"Canada Central\",\"Canada East\",\"Brazil South\",\"South Central US\",\"Korea South\",\"Korea Central\",\"France Central\",\"North Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"ElasticPools\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-07-01-preview\",\"2019-03-22-preview\",\"2018-12-01-preview\",\"2018-01-22-preview\",\"2017-09-25-preview\",\"2017-07-01\"],\"defaultApiVersion\":\"2018-01-22-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"ElasticPools/IotHubTenants\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-07-01-preview\",\"2019-03-22-preview\",\"2018-01-22-preview\",\"2017-09-25-preview\",\"2017-07-01\"],\"defaultApiVersion\":\"2018-01-22-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DevOps\",\"namespace\":\"Microsoft.DevOps\",\"authorization\":{\"applicationId\":\"499b84ac-1321-427f-aa17-267ca6975798\",\"roleDefinitionId\":\"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"},\"resourceTypes\":[{\"resourceType\":\"pipelines\",\"locations\":[\"East Asia\",\"Southeast Asia\",\"Australia East\",\"Brazil South\",\"Canada Central\",\"Japan East\",\"Japan West\",\"North Europe\",\"West Europe\",\"West India\",\"Central India\",\"South India\",\"Central US\",\"East US\",\"East US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"UK South\",\"West US\",\"West US 2\"],\"apiVersions\":[\"2019-07-01-preview\"],\"defaultApiVersion\":\"2019-07-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DevSpaces\",\"namespace\":\"Microsoft.DevSpaces\",\"resourceTypes\":[{\"resourceType\":\"controllers\",\"locations\":[\"East US\",\"Canada East\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"controllers/listConnectionDetails\",\"locations\":[\"East US\",\"Canada East\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US\",\"Canada East\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"East US\",\"Canada East\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"East US\",\"Canada East\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkContainerHostMapping\",\"locations\":[\"East US\",\"Canada East\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DigitalTwins\",\"namespace\":\"Microsoft.DigitalTwins\",\"authorizations\":[{\"applicationId\":\"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"},{\"applicationId\":\"c115998b-3d59-49b4-b55b-042a9ba1dbfe\",\"roleDefinitionId\":\"07af60d1-cd6d-4ad4-9b56-ece6c78a3fe1\"}],\"resourceTypes\":[{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"digitalTwinsInstances\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"digitalTwinsInstances/operationResults\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"digitalTwinsInstances/endpoints\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"West Central US\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2018-12-03\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptionFeatureRegistrations\",\"locations\":[],\"apiVersions\":[\"2020-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2015-12-01\",\"2014-08-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Japan West\",\"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\":[\"2017-11-03-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\"],\"apiVersions\":[\"2019-09-16\",\"2018-08-20-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-09-16\",\"2018-08-20-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-03-30\",\"2019-09-16\",\"2018-08-20-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HybridCompute\",\"namespace\":\"Microsoft.HybridCompute\",\"authorizations\":[{\"applicationId\":\"8c420feb-03df-47cc-8a05-55df0cf3064b\",\"roleDefinitionId\":\"83eeb1c6-47f8-4da2-bbc3-42a7ac767360\"}],\"resourceTypes\":[{\"resourceType\":\"machines\",\"locations\":[\"West US 2\",\"West Europe\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\",\"2019-03-18-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"machines/extensions\",\"locations\":[\"West Europe\",\"West US 2\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[\"West Europe\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatus\",\"locations\":[\"West Europe\",\"West US 2\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"West Europe\",\"West US 2\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\",\"2019-03-18-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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/00000000-0000-0000-0000-000000000000/providers/Microsoft.HybridNetwork\",\"namespace\":\"Microsoft.HybridNetwork\",\"authorizations\":[{\"applicationId\":\"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\"roleDefinitionId\":\"b193432e-9b7e-4885-b2c0-052afdceace3\"}],\"resourceTypes\":[{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"East US 2 EUAP\",\"West Central US\"],\"apiVersions\":[\"2020-01-01-preview\",\"2019-10-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Hydra\",\"namespace\":\"Microsoft.Hydra\",\"authorizations\":[{\"applicationId\":\"37ae09d4-a310-41e1-803d-8e85cec4bf23\",\"roleDefinitionId\":\"37ae09d4-a310-41e1-803d-8e85cec4bf23\"}],\"resourceTypes\":[{\"resourceType\":\"locations\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-08-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-08-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-11-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.IoTSpaces\",\"namespace\":\"Microsoft.IoTSpaces\",\"authorizations\":[{\"applicationId\":\"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"}],\"resourceTypes\":[{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"North Europe\",\"West Europe\",\"Australia East\",\"West US 2\",\"East US\"],\"apiVersions\":[\"2017-10-01-preview\"],\"defaultApiVersion\":\"2017-10-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"Graph\",\"locations\":[\"North Europe\",\"West Europe\",\"Australia East\",\"West US 2\",\"East US\"],\"apiVersions\":[\"2017-10-01-preview\"],\"defaultApiVersion\":\"2017-10-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2017-10-01-preview\"],\"defaultApiVersion\":\"2017-10-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kubernetes\",\"namespace\":\"Microsoft.Kubernetes\",\"authorizations\":[{\"applicationId\":\"64b12d6e-6549-484c-8cc6-6281839ba394\",\"roleDefinitionId\":\"1d1d44cf-68a1-4def-a2b6-cd7efc3515af\"}],\"resourceTypes\":[{\"resourceType\":\"connectedClusters\",\"locations\":[\"East US\",\"West Europe\"],\"apiVersions\":[\"2020-01-01-preview\",\"2019-11-01-preview\",\"2019-09-01-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatuses\",\"locations\":[\"East US 2 EUAP\",\"West Europe\",\"East US\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\",\"2019-11-01-preview\",\"2019-09-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"sourceControlConfigurations\",\"locations\":[\"East US\",\"West Europe\"],\"apiVersions\":[\"2019-11-01-preview\"],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"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-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\":\"2019-05-15\",\"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\"]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"clusters/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\",\"France South\",\"Germany West Central\",\"Japan East\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/attacheddatabaseconfigurations\",\"locations\":[\"Australia Central\",\"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\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/principalassignments\",\"locations\":[\"Australia Central\",\"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\",\"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-06-14\",\"2020-02-15\",\"2019-11-09\"],\"defaultApiVersion\":\"2019-11-09\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/databases/eventhubconnections\",\"locations\":[\"Australia Central\",\"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\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/databases/dataconnections\",\"locations\":[\"Australia Central\",\"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\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/databases/principalassignments\",\"locations\":[\"Australia Central\",\"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\",\"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-06-14\",\"2020-02-15\",\"2019-11-09\"],\"defaultApiVersion\":\"2019-11-09\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/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\",\"France South\",\"Germany West Central\",\"Japan East\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/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\",\"France South\",\"Germany West Central\",\"Japan East\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\":\"2019-05-15\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-01-01-preview\",\"2018-10-15\",\"2017-12-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2017-01-01\",\"2016-05-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"Canada Central\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/computes\",\"locations\":[\"North Central US\",\"Canada Central\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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/eventGridFilters\",\"locations\":[\"North Central US\",\"Canada Central\",\"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\",\"East US 2 EUAP\",\"West India\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"operations\",\"locations\":[\"East US 2\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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/usages\",\"locations\":[\"North Central US\",\"Canada Central\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-04-01\",\"2018-10-01\",\"2018-06-01-preview\",\"2017-04-26\",\"2017-01-01\",\"2016-01-01\"],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ManagedServices\",\"namespace\":\"Microsoft.ManagedServices\",\"authorization\":{\"applicationId\":\"66c6d0d1-f2e7-4a18-97a9-ed10f3347016\",\"roleDefinitionId\":\"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2\"},\"resourceTypes\":[{\"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\":\"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\":\"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/00000000-0000-0000-0000-000000000000/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-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-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-05-01\",\"2020-02-01\",\"2018-03-01-beta\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"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-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-05-01\",\"2020-02-01\",\"2019-11-01\",\"2018-03-01-beta\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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-05-01\",\"2020-02-01\",\"2019-11-01\",\"2018-03-01-preview\",\"2018-03-01-beta\"],\"capabilities\":\"None\"},{\"resourceType\":\"startTenantBackfill\",\"locations\":[],\"apiVersions\":[\"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/00000000-0000-0000-0000-000000000000/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\"],\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Marketplace\",\"namespace\":\"Microsoft.Marketplace\",\"authorizations\":[{\"applicationId\":\"a0e1e353-1a3e-42cf-a8ea-3a9746eec58c\"},{\"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\":\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering\",\"namespace\":\"Microsoft.MarketplaceOrdering\",\"resourceTypes\":[{\"resourceType\":\"agreements\",\"locations\":[\"South Central US\",\"West US\"],\"apiVersions\":[\"2015-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2015-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"offertypes\",\"locations\":[\"South Central US\",\"West US\"],\"apiVersions\":[\"2015-06-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"2018-07-01\"],\"defaultApiVersion\":\"2018-07-01\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"2018-07-01\",\"2018-06-01-preview\",\"2018-03-30-preview\"],\"defaultApiVersion\":\"2018-07-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2019-06-01\",\"2018-09-01-preview\"],\"capabilities\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-10-01\",\"2019-05-01\",\"2018-06-30-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"West Central US\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-02-02\",\"2017-11-11-preview\",\"2017-09-25-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"moveCollections\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\",\"North Europe\",\"South Central US\",\"Southeast Asia\",\"UK South\",\"West Europe\",\"West US 2\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-06-preview\",\"2019-12-02-preview\",\"2019-02-28-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\",\"North Europe\",\"West Europe\",\"South Central US\",\"UK South\",\"Southeast Asia\"],\"apiVersions\":[\"2020-05-01\",\"2019-12-02-preview\",\"2019-02-28-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"remoteRenderingAccounts\",\"locations\":[\"East US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US 2\"],\"apiVersions\":[\"2020-04-06-preview\",\"2019-12-02-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp\",\"namespace\":\"Microsoft.NetApp\",\"authorizations\":[{\"applicationId\":\"12fb057d-b751-47cd-857c-f2934bb677b4\",\"roleDefinitionId\":\"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East US\",\"East US 2\",\"Germany North\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"North Europe\",\"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)\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\"},{\"resourceType\":\"locations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"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-15-preview\",\"2019-07-01\",\"2019-06-01\",\"2019-05-01\",\"2017-08-15\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"2017-04-01\",\"2016-03-01\",\"2014-09-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-01\",\"2020-01-01-preview\",\"2019-05-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"Southeast Asia\"],\"apiVersions\":[\"2020-01-01\",\"2019-06-06\",\"2018-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-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-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-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-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-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-04-01\",\"2020-01-01-preview\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"None\"},{\"resourceType\":\"peeringServiceLocations\",\"locations\":[],\"apiVersions\":[\"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-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-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-04-01\",\"2020-01-01-preview\",\"2019-09-01-preview\",\"2019-08-01-preview\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2019-01-01-preview\",\"2018-10-01-preview\",\"2015-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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/00000000-0000-0000-0000-000000000000/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/operationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-06-01\"],\"defaultApiVersion\":\"2020-06-01\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2016-01-29\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.PowerBIDedicated\",\"namespace\":\"Microsoft.PowerBIDedicated\",\"authorization\":{\"applicationId\":\"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\"roleDefinitionId\":\"490d5987-bcf6-4be6-b6b2-056a78cb693a\"},\"resourceTypes\":[{\"resourceType\":\"capacities\",\"locations\":[\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"UAE North\",\"UAE Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"UAE North\",\"UAE Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"UAE North\",\"UAE Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"UAE North\",\"UAE Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2\"],\"apiVersions\":[\"2018-09-01-preview\",\"2017-10-01\",\"2017-01-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.PowerPlatform\",\"namespace\":\"Microsoft.PowerPlatform\",\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ProjectBabylon\",\"namespace\":\"Microsoft.ProjectBabylon\",\"authorizations\":[{\"applicationId\":\"73c2949e-da2d-457a-9607-fcc665198967\",\"roleDefinitionId\":\"1BC09725-0C9B-4F57-A3D0-FCCF4EB40120\"}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"defaultApiVersion\":\"2019-10-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ProviderHub\",\"namespace\":\"Microsoft.ProviderHub\",\"resourceTypes\":[{\"resourceType\":\"providerRegistrations\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationStatuses\",\"locations\":[],\"apiVersions\":[\"2019-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"providerRegistrations/resourceTypeRegistrations\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"providerRegistrations/defaultRollouts\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"rollouts\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"availableAccounts\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\",\"2018-11-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Quantum\",\"namespace\":\"Microsoft.Quantum\",\"authorizations\":[{\"applicationId\":\"a77d91dc-971b-4cf7-90c8-f183194249bc\",\"roleDefinitionId\":\"915bd376-2da8-411d-9906-895a54086a66\"}],\"resourceTypes\":[{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Locations\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Locations/OperationStatuses\",\"locations\":[\"West US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Workspaces\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-04-preview\"],\"defaultApiVersion\":\"2019-11-04-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/offerings\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"East US\",\"East US 2\",\"France Central\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Central US\",\"Southeast Asia\",\"Switzerland North\",\"UK South\",\"UK West\",\"West Europe\",\"West US 2\",\"West US\"],\"apiVersions\":[\"2020-04-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationsstatus\",\"locations\":[\"Australia East\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"East US\",\"East US 2\",\"France Central\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Central US\",\"Southeast Asia\",\"Switzerland North\",\"UK South\",\"UK West\",\"West Europe\",\"West US 2\",\"West US\"],\"apiVersions\":[\"2020-04-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"OpenShiftClusters\",\"locations\":[\"Australia East\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"East US\",\"East US 2\",\"France Central\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Central US\",\"Southeast Asia\",\"Switzerland North\",\"UK South\",\"UK West\",\"West Europe\",\"West US 2\",\"West US\"],\"apiVersions\":[\"2020-04-30\"],\"defaultApiVersion\":\"2020-04-30\",\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-04-30\",\"2019-12-31-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"East US 2 EUAP\"],\"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\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"namespaces/hybridconnections/authorizationrules\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"namespaces/wcfrelays\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"namespaces/wcfrelays/authorizationrules\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-04-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\"],\"defaultApiVersion\":\"2017-04-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-04-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-04-01-preview\",\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"resourceChanges\",\"locations\":[\"East US\"],\"apiVersions\":[\"2020-04-01-preview\",\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"resourceChangeDetails\",\"locations\":[\"East US\"],\"apiVersions\":[\"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/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"SupportsLocation\"},{\"resourceType\":\"subscriptions/resourceGroups\",\"locations\":[\"Central US\",\"East Asia\",\"Southeast Asia\",\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"North Europe\",\"West Europe\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia Southeast\",\"Australia East\",\"West India\",\"South India\",\"Central India\",\"Canada Central\",\"Canada East\",\"UK South\",\"UK West\",\"Korea Central\",\"Korea South\",\"France Central\",\"South Africa North\",\"UAE North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"subscriptions/resourcegroups/resources\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions/locations\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2016-06-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions/tagnames\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions/tagNames/tagValues\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"deployments\",\"locations\":[],\"apiVersions\":[\"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-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\":\"deploymentScripts\",\"locations\":[\"East Asia\",\"Southeast Asia\",\"Australia East\",\"Brazil South\",\"Canada Central\",\"East US 2\",\"East US\",\"Central US\",\"North Central US\",\"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\",\"Canada East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Canada East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Canada East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-03-01\",\"2016-01-01\",\"2014-08-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"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\":[\"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\":\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole\",\"namespace\":\"Microsoft.SerialConsole\",\"resourceTypes\":[{\"resourceType\":\"consoleServices\",\"locations\":[],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consoleServices\",\"locations\":[\"West US 2\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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-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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2018-09-01-preview\",\"2018-07-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networks\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"South Central US\",\"Central US\",\"France Central\",\"West Europe\",\"North Europe\",\"UK South\",\"UK West\",\"Australia East\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"West India\",\"Brazil South\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"2018-09-01-preview\",\"2018-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServicesHub\",\"namespace\":\"Microsoft.ServicesHub\",\"authorizations\":[],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-08-15-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"2019-07-01\",\"2018-09-01-preview\",\"2018-06-01\",\"2018-03-01\",\"2018-02-01\",\"2017-12-01\",\"2017-09-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-03-01-preview\"],\"defaultApiVersion\":\"2017-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"Locations/registerSqlVmCandidate\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-03-01-preview\"],\"defaultApiVersion\":\"2017-03-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\":[],\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"2020-03-01\"],\"defaultApiVersion\":\"2020-03-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"2016-10-01\",\"2016-06-01\",\"2015-03-15\",\"2014-09-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"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\":\"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\"],\"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\"],\"apiVersions\":[\"2019-06-01\",\"2018-11-01\",\"2017-04-01-preview\",\"2016-03-01\",\"2015-11-01\",\"2015-10-01\",\"2015-09-01\",\"2015-08-01-preview\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"2019-10-01-preview\",\"2019-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"rename\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-10-01-preview\",\"2019-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"enable\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-10-01-preview\",\"2019-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"Central US\"],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/bigDataPools\",\"locations\":[\"West US 2\",\"East US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"West Central US\",\"South Central US\",\"East US 2\",\"UK South\",\"West US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/sqlPools\",\"locations\":[\"West US 2\",\"East US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"West Central US\",\"South Central US\",\"East US 2\",\"UK South\",\"West US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"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\",\"EAST US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\"],\"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\":[\"France Central\",\"South Central Us\",\"East US 2\",\"West US\",\"East US\",\"East US 2 EUAP\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"Australia Southeast\",\"East Asia\",\"UK West\",\"UK South\",\"West US 2\",\"Central US\",\"West Central US\",\"North Central US\"],\"apiVersions\":[\"2017-02-28-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Token\",\"namespace\":\"Microsoft.Token\",\"authorizations\":[{\"applicationId\":\"fe053c5f-3692-4f14-aef2-ee34fc081cae\"}],\"resourceTypes\":[{\"resourceType\":\"stores\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"stores/accessPolicies\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"stores/services\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"stores/services/tokens\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-14\",\"2019-05-01-preview\",\"2019-02-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VMware\",\"namespace\":\"Microsoft.VMware\",\"authorizations\":[{\"applicationId\":\"ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7\",\"roleDefinitionId\":\"dd032bd9-65cc-4171-b688-c612566422ae\"}],\"resourceTypes\":[{\"resourceType\":\"Locations\",\"locations\":[],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Locations/OperationStatuses\",\"locations\":[\"East US\",\"West US\",\"East US 2 EUAP\",\"West Europe\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"ArcZones\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VCenters\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"ResourcePools\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VirtualNetworks\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VirtualMachineTemplates\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VirtualMachines\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VMwareCloudSimple\",\"namespace\":\"Microsoft.VMwareCloudSimple\",\"authorizations\":[{\"applicationId\":\"d96199e7-4674-4bbf-a1c6-ddf93682f5ee\",\"roleDefinitionId\":\"533012ca-a3e7-44e4-93b4-3143f8b9409d\",\"allowedThirdPartyExtensions\":[{\"name\":\"CloudSimpleExtension\"}]}],\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dedicatedCloudNodes\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dedicatedCloudServices\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/availabilities\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds/virtualNetworks\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds/virtualMachineTemplates\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds/resourcePools\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VnfManager\",\"namespace\":\"Microsoft.VnfManager\",\"authorizations\":[{\"applicationId\":\"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\"roleDefinitionId\":\"c8d69fc0-f0ed-43b3-bf1d-4dfdaacc6d2d\"}],\"resourceTypes\":[{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"East US\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"East US\",\"North Europe\",\"East Asia\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"devices\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"vnfs\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"vendors/vnfs\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-05-26-privatepreview\",\"2020-05-26-preview\",\"2020-05-26-beta\",\"2020-05-26-alpha\",\"2019-07-01-privatepreview\",\"2019-07-01-preview\",\"2019-07-01-beta\",\"2019-07-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2020-05-26-privatepreview\",\"2020-05-26-preview\",\"2020-05-26-beta\",\"2020-05-26-alpha\",\"2019-07-01-privatepreview\",\"2019-07-01-preview\",\"2019-07-01-beta\",\"2019-07-01-alpha\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.WindowsIoT\",\"namespace\":\"Microsoft.WindowsIoT\",\"resourceTypes\":[{\"resourceType\":\"DeviceServices\",\"locations\":[\"West US\",\"East US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01\",\"2018-02-16-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"West US\",\"East US\",\"West Central US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01\",\"2018-02-16-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.WorkloadBuilder\",\"namespace\":\"Microsoft.WorkloadBuilder\",\"authorizations\":[{\"applicationId\":\"63c2c773-89fe-4164-a02f-b8c7fc1772ae\",\"roleDefinitionId\":\"322358fa-ea51-4f6c-b9d6-3be64015f074\"}],\"resourceTypes\":[{\"resourceType\":\"Locations\",\"locations\":[],\"apiVersions\":[\"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\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workloads\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workloads/versions/artifacts\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workloads/versions\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workloads/instances\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.WorkloadMonitor\",\"namespace\":\"Microsoft.WorkloadMonitor\",\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"componentsSummary\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"monitorInstancesSummary\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"monitorInstances\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"components\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"monitors\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"notificationSettings\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Sendgrid.Email\",\"namespace\":\"Sendgrid.Email\",\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"France South\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"UAE Central\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\"],\"apiVersions\":[\"2015-01-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"France South\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"UAE Central\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\"],\"apiVersions\":[\"2015-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/stackify.retrace\",\"namespace\":\"stackify.retrace\",\"resourceTypes\":[{\"resourceType\":\"services\",\"locations\":[\"West US\"],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"listCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"updateCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Wandisco.Fusion\",\"namespace\":\"Wandisco.Fusion\",\"authorizations\":[{\"applicationId\":\"37b36496-3f4f-443a-a406-5e0a0535f6a3\",\"roleDefinitionId\":\"b10cdc1f-fd21-4fe9-bae7-7e2e25a91a21\"}],\"resourceTypes\":[{\"resourceType\":\"Locations\",\"locations\":[\"East US\"],\"apiVersions\":[\"2019-10-01\",\"2019-09-01-preview\"],\"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\":[\"2019-10-01\",\"2019-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2019-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ProjectArcadia\",\"namespace\":\"Microsoft.ProjectArcadia\",\"authorizations\":[{\"applicationId\":\"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b\",\"roleDefinitionId\":\"a53b114a-452b-4d20-bcd6-c51c3c8c5878\"},{\"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\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/sparkComputes\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/sqlComputes\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/operationStatus\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/operationResults\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"EAST US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"EAST US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SecurityDetonation\",\"namespace\":\"Microsoft.SecurityDetonation\",\"authorizations\":[{\"applicationId\":\"29820072-374d-49b8-945a-3941d7e9b468\",\"roleDefinitionId\":\"4ddf1807-30b0-464a-9d16-a8822daf866b\"}],\"resourceTypes\":[{\"resourceType\":\"chambers\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"}]}" - } + "Date" : "Tue, 11 Aug 2020 09:58:37 GMT", + "x-ms-correlation-request-id" : "1eaba28f-963f-4889-8b3c-cf6917a30974", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095837Z:1eaba28f-963f-4889-8b3c-cf6917a30974", + "Expires" : "-1", + "Content-Length" : "964783", + "x-ms-request-id" : "1eaba28f-963f-4889-8b3c-cf6917a30974", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"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\",\"Central US\",\"Canada Central\",\"Canada East\",\"UK South\",\"West US\",\"West US 2\",\"Australia East\",\"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\",\"Germany North\",\"Switzerland North\",\"Switzerland West\",\"Germany West Central\",\"UAE North\",\"UAE Central\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"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 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\",\"Germany North\",\"Germany West Central\",\"Switzerland North\",\"Switzerland West\",\"UAE North\",\"UAE Central\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-08-31\",\"2016-03-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operations\",\"locations\":[\"France Central\",\"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 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\",\"Germany North\",\"Germany West Central\",\"Switzerland North\",\"Switzerland West\",\"UAE North\",\"UAE Central\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US\",\"Canada East\",\"Canada Central\",\"UK South\",\"UK West\",\"West Central US\",\"West US\",\"West US 2\",\"Australia East\",\"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\",\"Germany North\",\"Germany West Central\",\"Switzerland North\",\"Switzerland West\",\"UAE North\",\"UAE Central\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-preview\",\"2015-05-01-preview\",\"2015-01-01\",\"2014-04-01-preview\",\"2014-04-01\",\"2014-01-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/serviceObjectives\",\"locations\":[\"Australia Central\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"Norway East\",\"South Africa North\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-preview\",\"2015-09-01-preview\",\"2015-05-01-preview\",\"2015-05-01\",\"2014-04-01-preview\",\"2014-04-01\",\"2014-01-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/jobAccounts\",\"locations\":[\"Australia Central\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"Norway East\",\"South Africa North\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-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, 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-preview\",\"2015-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\",\"2019-06-01\",\"2018-06-30\",\"2018-01-15\",\"2017-05-15-preview\",\"2015-10-31\",\"2015-01-01-preview\"],\"defaultApiVersion\":\"2018-06-30\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"automationAccounts/runbooks\",\"locations\":[\"Japan East\",\"East US 2\",\"West Europe\",\"South Africa North\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\"],\"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\":[\"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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"automationAccounts/privateEndpointConnections\",\"locations\":[\"Japan East\",\"East US 2\",\"West Europe\",\"South Africa North\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"automationAccounts/privateEndpointConnectionProxies\",\"locations\":[\"Japan East\",\"East US 2\",\"West Europe\",\"South Africa North\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"Redis/privateLinkResources\",\"locations\":[\"Australia Southeast\",\"Switzerland North\",\"Germany West Central\"],\"apiVersions\":[\"2020-06-01\",\"2019-07-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"West Europe\",\"West US\",\"East US 2\",\"West US 2\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"defaultApiVersion\":\"2020-04-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2020-04-01-preview\"}],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-07-01\",\"2018-03-01\",\"2017-10-01\",\"2017-02-01\",\"2016-04-01\",\"2015-08-01\",\"2015-03-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\":\"2018-11-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"publicIPAddresses\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkInterfaces\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"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\":\"2019-02-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateEndpointRedirectMaps\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"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\":\"2019-07-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationSecurityGroups\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"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\":\"2018-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\":\"2018-04-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"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\":\"2018-07-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"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\":\"2018-10-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkWatchers/flowLogs\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2019-07-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2018-01-01\",\"2017-11-01\",\"2017-10-01\",\"2017-09-01\"],\"defaultApiVersion\":\"2017-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"virtualNetworkGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-03-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"localNetworkGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-03-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2018-12-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationGatewayWebApplicationFirewallPolicies\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"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\":\"2018-12-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"2018-05-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2018-01-01\",\"2017-11-01\",\"2017-10-01\",\"2017-09-01\",\"2017-08-01\",\"2017-06-01\",\"2017-04-01\",\"2017-03-01\",\"2016-12-01\",\"2016-11-01\",\"2016-10-01\",\"2016-09-01\",\"2016-08-01\",\"2016-07-01\",\"2016-06-01\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\",\"2014-12-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"dnszones\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-04-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-04-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2016-04-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dnsOperationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnsOperationStatuses\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"getDnsResourceReference\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"internalNotify\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/A\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/AAAA\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/CNAME\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/PTR\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/MX\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/TXT\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/SRV\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/SOA\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/NS\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/CAA\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/recordsets\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/all\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateDnsZones/virtualNetworkLinks\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateDnsOperationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsOperationStatuses\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZonesInternal\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/A\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/AAAA\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/CNAME\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/PTR\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/MX\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/TXT\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/SRV\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/SOA\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/all\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"trafficmanagerprofiles\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-05-01\",\"2017-03-01\",\"2015-11-01\",\"2015-04-28-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"trafficmanagerprofiles/heatMaps\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-09-01-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"checkTrafficManagerNameAvailability\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-05-01\",\"2017-03-01\",\"2015-11-01\",\"2015-04-28-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"trafficManagerUserMetricsKeys\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2017-09-01-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"trafficManagerGeographicHierarchies\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-05-01\",\"2017-03-01\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"expressRouteCircuits\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"expressRouteServiceProviders\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2016-12-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"bgpServiceCommunities\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"2019-08-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-11-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-11-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"p2sVpnGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"UAE North\",\"South Africa North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2019-08-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"expressRouteGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2018-08-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"ipGroups\",\"locations\":[\"UAE North\",\"Australia Central 2\",\"UAE Central\",\"Germany North\",\"Central India\",\"Korea South\",\"Switzerland North\",\"Switzerland West\",\"Japan West\",\"France South\",\"South Africa West\",\"West India\",\"Canada East\",\"South India\",\"Germany West Central\",\"Norway East\",\"Norway West\",\"South Africa North\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"Brazil South\",\"Japan East\",\"UK West\",\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"South Central US\",\"Australia East\",\"Australia Central\",\"Australia Southeast\",\"UK South\",\"East US 2\",\"West US 2\",\"North Central US\",\"Canada Central\",\"France Central\",\"West Central US\",\"Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"2019-08-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/nfvOperations\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"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-05-01\",\"2020-04-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\":\"2018-04-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"azureFirewallFqdnTags\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2018-08-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2018-08-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"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\":\"2018-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"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\":\"2018-05-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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-05-01\",\"2020-01-01\",\"2019-08-01\",\"2019-05-01\",\"2019-04-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"None\"},{\"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-04-01\",\"2019-10-01\",\"2019-03-01\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"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\":\"2018-10-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"virtualRouters\",\"locations\":[\"UAE North\",\"Australia Central 2\",\"UAE Central\",\"Germany North\",\"Central India\",\"Korea South\",\"Switzerland North\",\"Switzerland West\",\"Japan West\",\"France South\",\"South Africa West\",\"West India\",\"Canada East\",\"South India\",\"Germany West Central\",\"Norway East\",\"Norway West\",\"South Africa North\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"Brazil South\",\"Japan East\",\"UK West\",\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"West Central US\",\"South Central US\",\"Australia East\",\"Australia Central\",\"Australia Southeast\",\"UK South\",\"East US 2\",\"West US 2\",\"North Central US\",\"Canada Central\",\"France Central\",\"Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"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\":\"2019-07-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkVirtualAppliances\",\"locations\":[\"UAE North\",\"Australia Central 2\",\"UAE Central\",\"Germany North\",\"Central India\",\"Korea South\",\"Switzerland North\",\"Switzerland West\",\"Japan West\",\"France South\",\"South Africa West\",\"West India\",\"Canada East\",\"South India\",\"Germany West Central\",\"Norway East\",\"Norway West\",\"South Africa North\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"Brazil South\",\"Japan East\",\"UK West\",\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"West Central US\",\"South Central US\",\"Australia East\",\"Australia Central\",\"Australia Southeast\",\"UK South\",\"East US 2\",\"West US 2\",\"North Central US\",\"Canada Central\",\"France Central\",\"Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\"],\"defaultApiVersion\":\"2019-12-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"ipAllocations\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/commitInternalAzureNetworkManagerConfiguration\",\"locations\":[\"West Central US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2019-12-01\",\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"networkVirtualApplianceSkus\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\"],\"defaultApiVersion\":\"2020-03-01\",\"capabilities\":\"None\"},{\"resourceType\":\"networkWatchers/lenses\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"2018-01-01\",\"2017-11-01\",\"2017-10-01\",\"2017-09-01\"],\"defaultApiVersion\":\"2017-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"frontdoorOperationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"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-04-01\",\"capabilities\":\"None\"},{\"resourceType\":\"frontdoors\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\",\"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-05-01\",\"2020-04-01\",\"2020-01-01\",\"2019-08-01\",\"2019-05-01\",\"2019-04-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"frontdoors/frontendEndpoints\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\",\"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-05-01\",\"2020-04-01\",\"2020-01-01\",\"2019-08-01\",\"2019-05-01\",\"2019-04-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"frontdoorWebApplicationFirewallPolicies\",\"locations\":[\"East US 2 EUAP\",\"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-04-01\",\"2019-10-01\",\"2019-03-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkExperimentProfiles\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\",\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-10-30-preview\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"virtualMachineScaleSets/extensions\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"Central US\",\"North Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"Australia Central\",\"Brazil South\",\"South India\",\"Central India\",\"West India\",\"Canada Central\",\"Canada East\",\"West US 2\",\"West Central US\",\"UK South\",\"UK West\",\"Korea Central\",\"Korea South\",\"France Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-10-30-preview\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"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-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\"],\"defaultApiVersion\":\"2019-12-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2014-04-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-15-preview\"],\"defaultApiVersion\":\"2017-10-15-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"sharedVMImages/versions\",\"locations\":[\"West Central US\",\"South Central US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US\",\"East US\",\"Canada Central\",\"North Europe\",\"North Central US\",\"Brazil South\",\"UK West\",\"West India\",\"East Asia\",\"Australia East\",\"Japan East\",\"Korea South\",\"West US 2\",\"Canada East\",\"UK South\",\"Central India\",\"South India\",\"Australia Southeast\",\"Japan West\",\"Korea Central\",\"France Central\",\"Central US\",\"Australia Central\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-15-preview\"],\"defaultApiVersion\":\"2017-10-15-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/artifactPublishers\",\"locations\":[\"West Central US\",\"South Central US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US\",\"East US\",\"Canada Central\",\"North Europe\",\"North Central US\",\"Brazil South\",\"UK West\",\"West India\",\"East Asia\",\"Australia East\",\"Japan East\",\"Korea South\",\"West US 2\",\"Canada East\",\"UK South\",\"Central India\",\"South India\",\"Australia Southeast\",\"Japan West\",\"Korea Central\",\"France Central\",\"Central US\",\"Australia Central\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-15-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/capsoperations\",\"locations\":[\"West Central US\",\"South Central US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US\",\"East US\",\"Canada Central\",\"North Europe\",\"North Central US\",\"Brazil South\",\"UK West\",\"West India\",\"East Asia\",\"Australia East\",\"Japan East\",\"Korea South\",\"West US 2\",\"Canada East\",\"UK South\",\"Central India\",\"South India\",\"Australia Southeast\",\"Japan West\",\"Korea Central\",\"France Central\",\"Central US\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-30\",\"2020-05-01\",\"2019-11-01\",\"2019-07-01\"],\"defaultApiVersion\":\"2020-06-30\",\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"diskAccesses\",\"locations\":[\"Southeast Asia\",\"East US 2\",\"Central US\",\"West Europe\",\"East US\",\"North Central US\",\"South Central US\",\"West US\",\"North Europe\",\"East Asia\",\"Brazil South\",\"West US 2\",\"West Central US\",\"UK West\",\"UK South\",\"Japan East\",\"Japan West\",\"Canada Central\",\"Canada East\",\"Central India\",\"South India\",\"Australia East\",\"Australia Southeast\",\"Korea Central\",\"Korea South\",\"West India\",\"France Central\",\"South Africa North\",\"UAE North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\"],\"defaultApiVersion\":\"2018-10-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\"],\"defaultApiVersion\":\"2018-10-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\",\"Australia Southeast\"],\"apiVersions\":[\"2018-05-01-preview\",\"2015-05-01\",\"2014-12-01-preview\",\"2014-08-01\",\"2014-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"components/query\",\"locations\":[],\"apiVersions\":[\"2018-04-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"components/metadata\",\"locations\":[],\"apiVersions\":[\"2018-04-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"components/metrics\",\"locations\":[\"East US\",\"South Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"UK South\",\"Central India\",\"Canada Central\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"East US 2\",\"East Asia\",\"West US\",\"Central US\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"apiVersions\":[\"2018-04-20\",\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"components/events\",\"locations\":[\"East US\",\"South Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"UK South\",\"Central India\",\"Canada Central\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"East US 2\",\"East Asia\",\"West US\",\"Central US\",\"South Africa North\",\"North Central US\"],\"apiVersions\":[\"2018-04-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"webtests\",\"locations\":[\"East US\",\"South Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"UK South\",\"Central India\",\"Canada Central\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"Central US\",\"East US 2\",\"East Asia\",\"West US\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"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\":[\"West Central US\",\"East US\",\"West Europe\",\"Central India\",\"Canada Central\",\"Australia Southeast\",\"Japan East\",\"Southeast Asia\",\"UK South\",\"South Central US\",\"North Europe\",\"West US 2\",\"Australia Central\",\"Australia East\",\"Korea Central\",\"France Central\",\"Central US\",\"East US 2\",\"East Asia\",\"West US\",\"North Central US\",\"South Africa North\",\"Brazil South\",\"UK West\",\"Switzerland North\",\"Switzerland West\",\"UAE Central\",\"Germany West Central\",\"Australia Central 2\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-03-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2015-04-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"eventtypes\",\"locations\":[],\"apiVersions\":[\"2017-03-01-preview\",\"2016-09-01-preview\",\"2015-04-01\",\"2014-11-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-01\"}],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"locations\",\"locations\":[\"East US\"],\"apiVersions\":[\"2015-04-01\",\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[],\"apiVersions\":[\"2015-04-01\",\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"vmInsightsOnboardingStatuses\",\"locations\":[],\"apiVersions\":[\"2018-11-27-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2015-04-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"diagnosticSettings\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"North Central US\",\"South Central US\",\"East US 2\",\"Central US\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"UK South\",\"UK West\",\"South India\",\"Central India\",\"West India\",\"Canada East\",\"Canada Central\",\"West Central US\",\"West US 2\",\"Korea South\",\"Korea Central\",\"Australia Central\",\"Australia Central 2\",\"France Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"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\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"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\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"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\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"apiVersions\":[\"2020-02-12\",\"2018-06-17-preview\",\"2018-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workbooktemplates\",\"locations\":[\"West Europe\",\"South Central US\",\"East US\",\"North Europe\",\"Southeast Asia\",\"West US 2\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"Central US\",\"East US 2\",\"East Asia\",\"West US\",\"Canada Central\",\"Central India\",\"UK South\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"apiVersions\":[\"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\",\"Australia Southeast\"],\"apiVersions\":[\"2020-02-12\",\"2018-06-17-preview\",\"2018-06-15-preview\",\"2018-06-01-preview\",\"2016-06-15-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"logs\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"Central US\",\"North Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"South India\",\"Central India\",\"West India\",\"Canada Central\",\"Canada East\",\"West US 2\",\"West Central US\",\"UK South\",\"UK West\",\"Korea Central\",\"Korea South\",\"France Central\",\"France South\",\"Australia Central\",\"South Africa North\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"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\"},{\"resourceType\":\"dataCollectionRules\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-01-preview\"],\"defaultApiVersion\":\"2019-11-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dataCollectionRuleAssociations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-01-preview\"],\"defaultApiVersion\":\"2019-11-01-preview\",\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2017-04-26-preview\",\"2017-03-15-preview\",\"2017-03-03-preview\",\"2017-01-01-preview\",\"2015-11-01-preview\",\"2015-03-20\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"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\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2019-08-01-preview\",\"2015-11-01-preview\"],\"defaultApiVersion\":\"2015-11-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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2015-11-01-preview\"],\"defaultApiVersion\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2019-08-01-preview\"],\"defaultApiVersion\":\"2019-08-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"storageInsightConfigs\",\"locations\":[],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2019-08-01-preview\",\"2015-11-01-preview\"],\"defaultApiVersion\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\",\"2015-11-01-preview\",\"2014-11-10\"],\"defaultApiVersion\":\"2015-11-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SignalRService\",\"namespace\":\"Microsoft.SignalRService\",\"authorizations\":[{\"applicationId\":\"cdad765c-f191-43ba-b9f5-7aef392f811d\",\"roleDefinitionId\":\"346b504e-4aec-45d1-be25-a6e10f3cb4fe\"}],\"resourceTypes\":[{\"resourceType\":\"SignalR\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatuses\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"West US\",\"East US\",\"East US 2\",\"West US 2\",\"Central US\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"SignalR/eventGridFilters\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/clusters\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/fileservers\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/experiments\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/experiments/jobs\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"West Central US\",\"Southeast Asia\",\"South Central US\",\"West US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"clusters\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"jobs\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"fileservers\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.AlertsManagement\",\"namespace\":\"Microsoft.AlertsManagement\",\"authorizations\":[{\"applicationId\":\"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\"roleDefinitionId\":\"b1309299-720d-4159-9897-6158a61aee41\"}],\"resourceTypes\":[{\"resourceType\":\"alerts\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-05-preview\",\"2018-11-02-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"alertsList\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-11-02-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"alertsSummaryList\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-11-02-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"alertsMetaData\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-05-preview\",\"2019-03-01-preview\",\"2019-03-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-05-05-preview\",\"2018-05-05\",\"2017-11-15-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"2020-05-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-09-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"2017-05-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-03-01-preview\",\"2020-03-01\",\"2019-08-01\",\"2019-04-01\",\"2018-12-01\",\"2017-09-01\",\"2017-05-01\",\"2017-01-01\",\"2015-12-01\",\"2015-09-01\",\"2015-07-01\",\"2014-05-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-15\",\"2020-03-31\",\"2019-12-31\",\"2019-06-15-preview\",\"2019-04-15\",\"2018-04-02\",\"2017-10-12\",\"2017-04-02\",\"2016-10-02\",\"2016-04-02\",\"2015-06-01\"],\"defaultApiVersion\":\"2017-10-12\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"profiles/endpoints\",\"locations\":[\"global\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Central US\",\"South India\",\"Southeast Asia\",\"West Europe\",\"West India\",\"West US\",\"West Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-15\",\"2020-03-31\",\"2019-12-31\",\"2019-06-15-preview\",\"2019-04-15\",\"2018-04-02\",\"2017-10-12\",\"2017-04-02\",\"2016-10-02\",\"2016-04-02\",\"2015-06-01\"],\"defaultApiVersion\":\"2017-10-12\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"profiles/endpoints/origins\",\"locations\":[\"global\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Central US\",\"South India\",\"Southeast Asia\",\"West Europe\",\"West India\",\"West US\",\"West Central US\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-15\",\"2020-03-31\",\"2019-12-31\"],\"defaultApiVersion\":\"2019-12-31\",\"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-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-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-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-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/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-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-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-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-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-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-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-04-15\",\"2019-06-15-preview\"],\"defaultApiVersion\":\"2019-06-15-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"CdnWebApplicationFirewallManagedRuleSets\",\"locations\":[],\"apiVersions\":[\"2020-04-15\",\"2019-06-15-preview\"],\"defaultApiVersion\":\"2019-06-15-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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 West\",\"Switzerland North\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2017-04-18\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-12-01-preview\",\"2017-12-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"serversv2\",\"locations\":[\"East US 2\",\"East US\",\"North Central US\",\"Canada Central\",\"Australia East\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"North Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-03-29-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"serverGroups\",\"locations\":[\"East US 2\",\"East US\",\"North Central US\",\"Canada Central\",\"Australia East\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"North Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-03-29-privatepreview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"flexibleServers\",\"locations\":[\"West US 2\",\"North Central US\",\"East US\",\"East US 2\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-14-privatepreview\"],\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]}],\"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 India\",\"Central US\",\"East Asia\",\"East US 2\",\"East US\",\"France Central\",\"France South\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Norway East\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\",\"2015-03-01-preview\"],\"defaultApiVersion\":\"2015-03-01-preview\",\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeAnalytics\",\"namespace\":\"Microsoft.DataLakeAnalytics\",\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\"],\"apiVersions\":[\"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\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/storageAccounts\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/storageAccounts/containers\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\"],\"apiVersions\":[\"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\":[\"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\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-11-01-preview\",\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization\",\"namespace\":\"Microsoft.Authorization\",\"authorizations\":[{\"applicationId\":\"de926fbf-e23b-41f9-ae15-c943a9cfa630\"}],\"resourceTypes\":[{\"resourceType\":\"roleAssignments\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"databaseAccounts\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\",\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\",\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\",\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\",\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationsStatus\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\",\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\",\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"restorableDatabaseAccounts\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore\",\"namespace\":\"Microsoft.DataLakeStore\",\"authorization\":{\"applicationId\":\"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\"roleDefinitionId\":\"17eb9cca-f08a-4499-b2d3-852d175f614f\"},\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"defaultApiVersion\":\"2016-11-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"accounts/firewallRules\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/eventGridFilters\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/capability\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/deleteVirtualNetworkOrSubnets\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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-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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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-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-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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"partnerRegistrations\",\"locations\":[\"Global\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-09-01\",\"2018-02-14-preview\",\"2018-02-14\"],\"defaultApiVersion\":\"2019-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"managedHSMs\",\"locations\":[\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"defaultApiVersion\":\"2020-04-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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 Central US\",\"France Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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 Central US\",\"France Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-30\",\"2015-08-31-PREVIEW\"],\"capabilities\":\"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 Central US\",\"France Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-30\",\"2015-08-31-PREVIEW\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\"],\"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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2020-02-02\",\"2019-06-15\",\"2019-05-13-preview\",\"2019-05-13\",\"2018-12-20-preview\",\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-07-10\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-10\"}],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Search\",\"namespace\":\"Microsoft.Search\",\"authorization\":{\"applicationId\":\"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\"roleDefinitionId\":\"20FA3191-87CF-4C3D-9510-74CCB594A310\"},\"resourceTypes\":[{\"resourceType\":\"searchServices\",\"locations\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"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-03-13\",\"2019-10-01-Preview\",\"2015-08-19\"],\"capabilities\":\"None\"},{\"resourceType\":\"resourceHealthMetadata\",\"locations\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-03-13\",\"2019-10-01-Preview\",\"2015-08-19\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-13\",\"2019-10-01-Preview\",\"2015-08-19\",\"2015-02-28\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\"],\"capabilities\":\"None\"},{\"resourceType\":\"secureScores/secureScoreControls\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"secureScoreControls\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"secureScoreControlDefinitions\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"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\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-01-01\",\"2017-08-01-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"deviceSecurityGroups\",\"locations\":[\"North Europe\",\"West Europe\",\"UK South\",\"UK West\",\"France Central\",\"France South\",\"West Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2017-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2017-08-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\"],\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\"],\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"],\"apiVersions\":[\"2019-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-11-01-preview\",\"2019-10-01\",\"2019-02-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"configurationStores/eventGridFilters\",\"locations\":[\"West Central US\",\"Central US\",\"West US\",\"East US\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-11-01-preview\",\"2019-10-01\",\"2019-02-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2018-07-01-preview\",\"2017-07-01\",\"2016-10-01\",\"2016-06-01\",\"2015-08-01-preview\",\"2015-02-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/workflows\",\"locations\":[\"North Central US\",\"Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"West US\",\"East US\",\"East US 2\",\"Japan West\",\"Japan East\",\"Brazil South\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2018-07-01-preview\",\"2016-06-01\",\"2015-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"integrationServiceEnvironments\",\"locations\":[\"North Central US\",\"Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"West US\",\"East US\",\"East US 2\",\"Japan West\",\"Japan East\",\"Australia East\",\"Australia Southeast\",\"South India\",\"Central India\",\"Canada Central\",\"West US 2\",\"UK South\",\"UK West\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\",\"2019-05-01\",\"2018-07-01-preview\",\"2018-03-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"integrationServiceEnvironments/managedApis\",\"locations\":[\"North Central US\",\"Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"West US\",\"East US\",\"East US 2\",\"Japan West\",\"Japan East\",\"Australia East\",\"Australia Southeast\",\"South India\",\"Central India\",\"Canada Central\",\"West US 2\",\"West Central US\",\"UK South\",\"UK West\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\",\"2019-05-01\",\"2018-07-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"hostingEnvironments\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-04-01-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"isolatedEnvironments\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-07-01-preview\",\"2018-03-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL\",\"namespace\":\"Microsoft.DBforMySQL\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-12-01-preview\",\"2017-12-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/recoverableServers\",\"locations\":[\"Australia Central\",\"Australia Central 2\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"Central India\",\"East Asia\",\"East US 2\",\"East US\",\"France Central\",\"France South\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Norway East\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppPlatform\",\"namespace\":\"Microsoft.AppPlatform\",\"authorizations\":[{\"applicationId\":\"03b39d0f-4213-4864-a245-b1476ec03169\"},{\"applicationId\":\"b61cc489-e138-4a69-8bf3-c2c5855c8784\",\"roleDefinitionId\":\"462ddd96-910a-44f5-adfa-644d99942778\"},{\"applicationId\":\"e8de9221-a19c-4c81-b814-fd37c6caf9d2\"}],\"resourceTypes\":[{\"resourceType\":\"Spring\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\",\"Central US\",\"East US 2\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"Spring/apps\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\",\"Central US\",\"East US 2\"],\"apiVersions\":[\"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\",\"East US 2\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\",\"Central US\",\"East US 2\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\",\"Central US\",\"East US 2\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatus\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\",\"Central US\",\"East US 2\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"},{\"resourceType\":\"configurationProfileAssignments\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-30-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"autoManagedVmConfigurationProfiles\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-30-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"autoManagedAccounts\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-30-preview\"],\"defaultApiVersion\":\"2018-06-30-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"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\":[\"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\":[\"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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-03-01\",\"2014-09-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"checkNamespaceAvailability\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Central US\",\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"East Asia\",\"Southeast Asia\",\"Brazil South\",\"Japan East\",\"Japan West\",\"North Europe\",\"West Europe\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"UK West\",\"UK South\",\"Germany West Central\",\"Australia Central\",\"Australia Central 2\"],\"apiVersions\":[\"2017-04-01\",\"2016-03-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Central US\",\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"East Asia\",\"Southeast Asia\",\"Brazil South\",\"Japan East\",\"Japan West\",\"North Europe\",\"West Europe\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"UK West\",\"UK South\",\"Germany West Central\",\"Australia Central\",\"Australia Central 2\"],\"apiVersions\":[\"2017-04-01\",\"2016-03-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Central US\",\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"East Asia\",\"Southeast Asia\",\"Brazil South\",\"Japan East\",\"Japan West\",\"North Europe\",\"West Europe\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"UK West\",\"UK South\",\"Germany West Central\",\"Australia Central\",\"Australia Central 2\"],\"apiVersions\":[\"2017-04-01\",\"2016-03-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Central US\",\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"East Asia\",\"Southeast Asia\",\"Brazil South\",\"Japan East\",\"Japan West\",\"North Europe\",\"West Europe\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"UK West\",\"UK South\",\"Germany West Central\",\"Australia Central\",\"Australia Central 2\"],\"apiVersions\":[\"2017-04-01\",\"2016-03-01\",\"2014-09-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"UAE North\"],\"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\",\"UAE North\"],\"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\",\"UAE North\"],\"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\",\"UAE North\"],\"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\",\"UAE North\"],\"apiVersions\":[\"2020-01-01\",\"2017-06-01\",\"2017-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-03-01-preview\",\"2020-03-01\"],\"defaultApiVersion\":\"2020-03-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"tenants\",\"locations\":[\"West US\"],\"apiVersions\":[\"2017-04-01\",\"2017-03-01\",\"2016-09-01\",\"2016-08-01\",\"2016-07-01\",\"2016-06-01\",\"2016-03-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\"],\"defaultApiVersion\":\"2017-04-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"West US\"],\"apiVersions\":[\"2017-04-01\",\"2017-03-01\",\"2016-09-01\",\"2016-08-01\",\"2016-07-01\",\"2016-06-01\",\"2016-03-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"diagnosticSettings\",\"locations\":[],\"apiVersions\":[\"2017-04-01-preview\",\"2017-04-01\"],\"defaultApiVersion\":\"2017-04-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"diagnosticSettingsCategories\",\"locations\":[],\"apiVersions\":[\"2017-04-01-preview\",\"2017-04-01\"],\"defaultApiVersion\":\"2017-04-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-08-01-beta\",\"2017-08-01\",\"2017-07-14\",\"2016-05-16\"],\"defaultApiVersion\":\"2017-08-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-08-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2\",\"West Central US\",\"West US 2\"],\"apiVersions\":[\"2017-08-01-beta\",\"2017-08-01\",\"2017-07-14\",\"2016-05-16\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-08-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ApiManagement\",\"namespace\":\"Microsoft.ApiManagement\",\"authorization\":{\"applicationId\":\"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\"roleDefinitionId\":\"e263b525-2e60-4418-b655-420bae0b172e\"},\"resourceTypes\":[{\"resourceType\":\"service\",\"locations\":[\"Canada East\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\":[],\"apiVersions\":[\"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\":\"reportFeedback\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Canada Central\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"defaultProviders\",\"locations\":[\"East US 2\",\"Central US\",\"UK South\",\"Canada Central\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/defaultProvider\",\"locations\":[\"East US 2\",\"Central US\",\"UK South\",\"Canada Central\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Automanage\",\"namespace\":\"Microsoft.Automanage\",\"authorizations\":[{\"applicationId\":\"9ae330ab-d710-466b-851c-c828e7340846\"}],\"resourceTypes\":[{\"resourceType\":\"configurationProfileAssignments\",\"locations\":[\"Central US\",\"East US 2\",\"East US\",\"North Central US\",\"South Central US\",\"West US 2\",\"West Central US\",\"West US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-30-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AVS\",\"namespace\":\"Microsoft.AVS\",\"authorizations\":[{\"allowedThirdPartyExtensions\":[{\"name\":\"VMCP\"}]}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkTrialAvailability\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkQuotaAvailability\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"privateClouds\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateClouds/clusters\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"privateClouds/authorizations\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"privateClouds/hcxEnterpriseSites\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AzureActiveDirectory\",\"namespace\":\"Microsoft.AzureActiveDirectory\",\"resourceTypes\":[{\"resourceType\":\"b2cDirectories\",\"locations\":[\"Global\",\"United States\",\"Europe\",\"Asia Pacific\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-01-01-privatepreview\",\"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\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-01-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Global\",\"United States\",\"Europe\",\"Asia Pacific\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-01-01-privatepreview\",\"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\"],\"apiVersions\":[\"2020-05-01-preview\",\"2016-02-10-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-10-preview\"],\"defaultApiVersion\":\"2019-05-10-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Canada Central\",\"France Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South 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\",\"East US 2 EUAP\"],\"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 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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-10-preview\"],\"defaultApiVersion\":\"2019-05-10-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"dataControllers\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"postgresInstances\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sqlManagedInstances\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sqlServerInstances\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/billingProfiles/createBillingRoleAssignment\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment\",\"locations\":[],\"apiVersions\":[\"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-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-05-01\",\"2019-10-01-preview\",\"2018-11-01-preview\",\"2018-06-30\",\"2018-05-31\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/operationResults\",\"locations\":[],\"apiVersions\":[\"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-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-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-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-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-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\":[\"2019-10-01-preview\",\"2018-06-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/departments/billingRoleDefinitions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/departments/billingRoleAssignments\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/departments/billingPermissions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\",\"2018-06-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts/billingRoleDefinitions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts/billingRoleAssignments\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts/billingPermissions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"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/billingSubscriptions\",\"locations\":[],\"apiVersions\":[\"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-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-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\":[\"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/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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.BingMaps\",\"namespace\":\"Microsoft.BingMaps\",\"resourceTypes\":[{\"resourceType\":\"mapApis\",\"locations\":[\"West US\"],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"None\"},{\"resourceType\":\"listCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"None\"},{\"resourceType\":\"updateCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"watchers\",\"locations\":[\"East US\",\"West Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"defaultApiVersion\":\"2019-06-01-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"blockchainMembers\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/watcherOperationResults\",\"locations\":[\"East US\",\"West Europe\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/blockchainMemberOperationResults\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/listConsortiums\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"cordaMembers\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"defaultApiVersion\":\"2018-06-01-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.Blueprint\",\"namespace\":\"Microsoft.Blueprint\",\"authorizations\":[{\"applicationId\":\"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\"roleDefinitionId\":\"cb180127-cf6d-4672-9e75-e29a487f9658\"}],\"resourceTypes\":[{\"resourceType\":\"blueprints\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"blueprints/artifacts\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprints/versions\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprints/versions/artifacts\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprintAssignments\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"SystemAssignedResourceIdentity, SupportsExtension\"},{\"resourceType\":\"blueprintAssignments/operations\",\"locations\":[],\"apiVersions\":[\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprintAssignments/assignmentOperations\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.BotService\",\"namespace\":\"Microsoft.BotService\",\"authorization\":{\"applicationId\":\"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\"roleDefinitionId\":\"71213c26-43ed-41d8-9905-3c12971517a3\"},\"resourceTypes\":[{\"resourceType\":\"botServices\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"botServices/channels\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"botServices/connections\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"listAuthServiceProviders\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Capacity\",\"namespace\":\"Microsoft.Capacity\",\"authorization\":{\"applicationId\":\"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\"roleDefinitionId\":\"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"},\"resourceTypes\":[{\"resourceType\":\"resourceProviders\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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-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/revisions\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"2019-04-01-beta\",\"2019-04-01\",\"2018-06-01-beta\",\"2018-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"exchange\",\"locations\":[],\"apiVersions\":[\"2019-04-01-beta\",\"2019-04-01\",\"2018-06-01-beta\",\"2018-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"reservationOrders/calculateRefund\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\":[\"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\":[\"2019-04-01-beta\",\"2019-04-01\",\"2018-06-01-beta\",\"2018-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"validateReservationOrder\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ChangeAnalysis\",\"namespace\":\"Microsoft.ChangeAnalysis\",\"authorizations\":[{\"applicationId\":\"2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8\",\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[],\"capabilities\":\"None\"},{\"resourceType\":\"moveSubscriptionResources\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"validateSubscriptionMoveAvailability\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationStatuses\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operatingSystems\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operatingSystemFamilies\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2015-06-15\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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)\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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)\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\",\"2014-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"gatewaySupportedDevices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\"],\"defaultApiVersion\":\"2015-06-01\",\"capabilities\":\"SupportsLocation\"},{\"resourceType\":\"capabilities\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"expressRouteCrossConnections\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"expressRouteCrossConnections/peerings\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\",\"2014-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkStorageAccountAvailability\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/services/metricDefinitions\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/services/metrics\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/metricDefinitions\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/metrics\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"capabilities\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/blobServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/tableServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/fileServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/queueServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"disks\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"images\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[],\"capabilities\":\"None\"},{\"resourceType\":\"osImages\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"osPlatformImages\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2016-04-01-beta\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\",\"2014-04-01\",\"2014-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-07-10-privatepreview\",\"2020-07-10-beta\",\"2020-07-10-alpha\",\"2020-06-16-privatepreview\",\"2020-06-16-beta\",\"2020-06-16-alpha\",\"2020-06-16\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2020-07-10-privatepreview\",\"2020-07-10-beta\",\"2020-07-10-alpha\",\"2020-06-16-privatepreview\",\"2020-06-16-beta\",\"2020-06-16-alpha\",\"2020-06-16\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.ConnectedCache\",\"namespace\":\"Microsoft.ConnectedCache\",\"authorizations\":[],\"resourceTypes\":[{\"resourceType\":\"CacheNodes\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-12-04-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.CostManagement\",\"namespace\":\"Microsoft.CostManagement\",\"authorizations\":[{\"applicationId\":\"3184af01-7a88-49e0-8b55-8ecdce0aa950\"}],\"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\":\"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-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-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\":\"Insights\",\"locations\":[],\"apiVersions\":[\"2020-08-01-preview\"],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-02-28-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"requests\",\"locations\":[],\"apiVersions\":[\"2018-02-28-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"associations\",\"locations\":[\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2019-09-01\",\"2018-01-01\"],\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2019-09-01\",\"2018-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2019-09-01\",\"2018-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataBoxEdge\",\"namespace\":\"Microsoft.DataBoxEdge\",\"authorizations\":[{\"applicationId\":\"2368d027-f996-4edb-bf48-928f98f2ab8c\"},{\"applicationId\":\"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\"roleDefinitionId\":\"f9b194f9-6969-48fc-b432-a189d291bcf0\"}],\"resourceTypes\":[{\"resourceType\":\"DataBoxEdgeDevices\",\"locations\":[\"East US\",\"West Europe\",\"Southeast Asia\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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-06-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"DataBoxEdgeDevices/checkNameAvailability\",\"locations\":[\"East US\",\"West Europe\",\"Southeast Asia\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"2020-07-01-preview\",\"2020-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"France Central\",\"UAE North\"],\"apiVersions\":[\"2018-04-01\"],\"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\"],\"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\"],\"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\",\"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\"],\"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\",\"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\",\"France Central\",\"UAE North\"],\"apiVersions\":[\"2018-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataCatalog\",\"namespace\":\"Microsoft.DataCatalog\",\"authorization\":{\"applicationId\":\"213f5f78-fb30-46c7-9e98-91c720a1c026\",\"roleDefinitionId\":\"D55E2225-A6AB-481C-A5BE-1B7687C293FA\"},\"resourceTypes\":[{\"resourceType\":\"catalogs\",\"locations\":[\"East US\",\"West US\",\"Australia East\",\"West Europe\",\"North Europe\",\"Southeast Asia\",\"West Central US\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"West Europe\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"West Europe\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/jobs\",\"locations\":[\"East US\",\"West US\",\"Australia East\",\"West Europe\",\"North Europe\",\"Southeast Asia\",\"West Central US\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataCollaboration\",\"namespace\":\"Microsoft.DataCollaboration\",\"authorization\":{\"applicationId\":\"2cc451ba-a8ec-496f-bdff-591f5ae2876c\",\"roleDefinitionId\":\"fdf757e9-19df-4152-a1ae-5e719161cd12\"},\"resourceTypes\":[{\"resourceType\":\"listinvitations\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consumerInvitations/reject\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consumerInvitations\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataFactory\",\"namespace\":\"Microsoft.DataFactory\",\"authorizations\":[{\"applicationId\":\"0947a342-ab4a-43be-93b3-b8243fc161e5\",\"roleDefinitionId\":\"f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da\"},{\"applicationId\":\"5d13f7d7-0567-429c-9880-320e9555e5fc\",\"roleDefinitionId\":\"956a8f20-9168-4c71-8e27-3c0460ac39a4\"}],\"resourceTypes\":[{\"resourceType\":\"dataFactories\",\"locations\":[\"West US\",\"North Europe\",\"East US\",\"West Central US\"],\"apiVersions\":[\"2015-10-01\",\"2015-09-01\",\"2015-08-01\",\"2015-07-01-preview\",\"2015-05-01-preview\",\"2015-01-01-preview\",\"2014-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"factories\",\"locations\":[\"East US\",\"East US 2\",\"Central US\",\"South Central US\",\"Japan East\",\"Canada Central\",\"Australia East\",\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01\",\"2017-09-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"factories/integrationRuntimes\",\"locations\":[\"East US\",\"East US 2\",\"West US 2\",\"West US\",\"Central US\",\"South Central US\",\"Japan East\",\"Central India\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Australia East\",\"Canada Central\",\"West Central US\",\"North Europe\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"East Asia\",\"North Central US\",\"South Africa North\",\"Australia Southeast\",\"East US 2 EUAP\"],\"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\",\"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\",\"East US 2 EUAP\"],\"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\",\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01\"],\"defaultApiVersion\":\"2018-06-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection\",\"namespace\":\"Microsoft.DataProtection\",\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"BackupVaults\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"ResourceOperationGateKeepers\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatus\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataShare\",\"namespace\":\"Microsoft.DataShare\",\"authorization\":{\"applicationId\":\"799f1985-1517-4fe1-af2b-ba3d87d4996b\",\"roleDefinitionId\":\"0146496b-e06f-439a-83be-49fac884edf5\"},\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"accounts/shares\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/datasets\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/synchronizationSettings\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/invitations\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/providersharesubscriptions\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions/datasetmappings\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions/triggers\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions/consumerSourceDataSets\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"listinvitations\",\"locations\":[\"East US 2\",\"East US\",\"Australia East\",\"Southeast Asia\",\"West US 2\",\"North Europe\",\"UK South\",\"Canada Central\",\"West Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"East US 2\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\",\"2018-11-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West Central US\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/rejectInvitation\",\"locations\":[\"East US 2\",\"East US\",\"Australia East\",\"West US 2\",\"North Europe\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West Central US\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consumerInvitations\",\"locations\":[\"East US 2\",\"East US\",\"Australia East\",\"West US 2\",\"North Europe\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West Central US\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-11-01\",\"2018-11-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\",\"2018-06-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/recoverableServers\",\"locations\":[\"Australia Central\",\"Australia Central 2\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"Central India\",\"East Asia\",\"East US 2\",\"East US\",\"France Central\",\"France South\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Norway East\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"servers/keys\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-01-preview\",\"2018-09-01-preview\"],\"defaultApiVersion\":\"2018-09-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-09-01-preview\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2019-11-01-preview\",\"2018-09-01-preview\"],\"defaultApiVersion\":\"2018-09-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-09-01-preview\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"global\"],\"apiVersions\":[\"2019-11-01-preview\",\"2018-09-01-preview\"],\"defaultApiVersion\":\"2018-09-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-09-01-preview\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationgroups\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationgroups/applications\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"applicationgroups/desktops\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"applicationgroups/startmenuitems\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"hostpools\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"hostpools/sessionhosts\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"hostpools/sessionhosts/usersessions\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"hostpools/usersessions\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-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-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-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-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"2018-01-22\",\"2017-07-01\",\"2017-01-19\",\"2016-02-03\",\"2015-08-15-preview\"],\"defaultApiVersion\":\"2020-01-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-04-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"IotHubs/eventGridFilters\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Central US\",\"East US 2\",\"Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"UK South\",\"UK West\",\"South India\",\"Central India\",\"Canada Central\",\"Canada East\",\"Brazil South\",\"South Central US\",\"Korea South\",\"Korea Central\",\"France Central\",\"North Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-03-01\",\"2020-01-01\",\"2018-01-22\",\"2017-11-15\",\"2017-08-21-preview\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"IotHubs/securitySettings\",\"locations\":[\"West US\",\"North Europe\",\"East Asia\",\"East US\",\"West Europe\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"West US 2\",\"West Central US\",\"East US 2\",\"Central US\",\"UK South\",\"UK West\",\"South India\",\"Central India\",\"Canada Central\",\"Canada East\",\"Brazil South\",\"South Central US\",\"Korea South\",\"Korea Central\",\"France Central\",\"North Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"ElasticPools\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-07-01-preview\",\"2019-03-22-preview\",\"2018-12-01-preview\",\"2018-01-22-preview\",\"2017-09-25-preview\",\"2017-07-01\"],\"defaultApiVersion\":\"2018-01-22-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"ElasticPools/IotHubTenants\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-07-01-preview\",\"2019-03-22-preview\",\"2018-01-22-preview\",\"2017-09-25-preview\",\"2017-07-01\"],\"defaultApiVersion\":\"2018-01-22-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DeviceUpdate\",\"namespace\":\"Microsoft.DeviceUpdate\",\"authorizations\":[],\"resourceTypes\":[{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"West US 2\",\"East US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DevOps\",\"namespace\":\"Microsoft.DevOps\",\"authorization\":{\"applicationId\":\"499b84ac-1321-427f-aa17-267ca6975798\",\"roleDefinitionId\":\"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"},\"resourceTypes\":[{\"resourceType\":\"pipelines\",\"locations\":[\"East Asia\",\"Southeast Asia\",\"Australia East\",\"Brazil South\",\"Canada Central\",\"Japan East\",\"Japan West\",\"North Europe\",\"West Europe\",\"West India\",\"Central India\",\"South India\",\"Central US\",\"East US\",\"East US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"UK South\",\"West US\",\"West US 2\"],\"apiVersions\":[\"2019-07-01-preview\"],\"defaultApiVersion\":\"2019-07-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DevSpaces\",\"namespace\":\"Microsoft.DevSpaces\",\"resourceTypes\":[{\"resourceType\":\"controllers\",\"locations\":[\"East US\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"controllers/listConnectionDetails\",\"locations\":[\"East US\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"East US\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"East US\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkContainerHostMapping\",\"locations\":[\"East US\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DigitalTwins\",\"namespace\":\"Microsoft.DigitalTwins\",\"authorizations\":[{\"applicationId\":\"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"},{\"applicationId\":\"c115998b-3d59-49b4-b55b-042a9ba1dbfe\",\"roleDefinitionId\":\"07af60d1-cd6d-4ad4-9b56-ece6c78a3fe1\"}],\"resourceTypes\":[{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"digitalTwinsInstances\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"digitalTwinsInstances/operationResults\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"digitalTwinsInstances/endpoints\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"West Central US\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2018-12-03\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptionFeatureRegistrations\",\"locations\":[],\"apiVersions\":[\"2020-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2015-12-01\",\"2014-08-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Japan West\",\"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\":[\"2017-11-03-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\"],\"apiVersions\":[\"2019-09-16\",\"2018-08-20-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-09-16\",\"2018-08-20-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-03-30\",\"2019-09-16\",\"2018-08-20-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HybridCompute\",\"namespace\":\"Microsoft.HybridCompute\",\"authorizations\":[{\"applicationId\":\"8c420feb-03df-47cc-8a05-55df0cf3064b\",\"roleDefinitionId\":\"83eeb1c6-47f8-4da2-bbc3-42a7ac767360\"}],\"resourceTypes\":[{\"resourceType\":\"machines\",\"locations\":[\"West US 2\",\"West Europe\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\",\"2019-03-18-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"machines/extensions\",\"locations\":[\"West Europe\",\"West US 2\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[\"West Europe\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatus\",\"locations\":[\"West Europe\",\"West US 2\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"West Europe\",\"West US 2\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\",\"2019-03-18-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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/00000000-0000-0000-0000-000000000000/providers/Microsoft.HybridNetwork\",\"namespace\":\"Microsoft.HybridNetwork\",\"authorizations\":[{\"applicationId\":\"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\"roleDefinitionId\":\"b193432e-9b7e-4885-b2c0-052afdceace3\"}],\"resourceTypes\":[{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"East US 2 EUAP\",\"West Central US\"],\"apiVersions\":[\"2020-01-01-preview\",\"2019-10-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Hydra\",\"namespace\":\"Microsoft.Hydra\",\"authorizations\":[{\"applicationId\":\"37ae09d4-a310-41e1-803d-8e85cec4bf23\",\"roleDefinitionId\":\"37ae09d4-a310-41e1-803d-8e85cec4bf23\"}],\"resourceTypes\":[{\"resourceType\":\"locations\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-08-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-08-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-11-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.IoTSpaces\",\"namespace\":\"Microsoft.IoTSpaces\",\"authorizations\":[{\"applicationId\":\"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"}],\"resourceTypes\":[{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"North Europe\",\"West Europe\",\"Australia East\",\"West US 2\",\"East US\"],\"apiVersions\":[\"2017-10-01-preview\"],\"defaultApiVersion\":\"2017-10-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"Graph\",\"locations\":[\"North Europe\",\"West Europe\",\"Australia East\",\"West US 2\",\"East US\"],\"apiVersions\":[\"2017-10-01-preview\"],\"defaultApiVersion\":\"2017-10-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2017-10-01-preview\"],\"defaultApiVersion\":\"2017-10-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"connectedClusters\",\"locations\":[\"East US\",\"West Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\",\"2019-11-01-preview\",\"2019-09-01-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatuses\",\"locations\":[\"East US 2 EUAP\",\"West Europe\",\"East US\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\",\"2019-11-01-preview\",\"2019-09-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"sourceControlConfigurations\",\"locations\":[\"East US\",\"West Europe\"],\"apiVersions\":[\"2019-11-01-preview\"],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"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-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\":\"2019-05-15\",\"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\"]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"clusters/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\",\"France South\",\"Germany West Central\",\"Japan East\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/attacheddatabaseconfigurations\",\"locations\":[\"Australia Central\",\"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\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/principalassignments\",\"locations\":[\"Australia Central\",\"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\",\"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-06-14\",\"2020-02-15\",\"2019-11-09\"],\"defaultApiVersion\":\"2019-11-09\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/databases/eventhubconnections\",\"locations\":[\"Australia Central\",\"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\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/databases/dataconnections\",\"locations\":[\"Australia Central\",\"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\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/databases/principalassignments\",\"locations\":[\"Australia Central\",\"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\",\"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-06-14\",\"2020-02-15\",\"2019-11-09\"],\"defaultApiVersion\":\"2019-11-09\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/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\",\"France South\",\"Germany West Central\",\"Japan East\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/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\",\"France South\",\"Germany West Central\",\"Japan East\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\":\"2019-05-15\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-01-01-preview\",\"2018-10-15\",\"2017-12-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2017-01-01\",\"2016-05-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"Canada Central\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/computes\",\"locations\":[\"North Central US\",\"Canada Central\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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/eventGridFilters\",\"locations\":[\"North Central US\",\"Canada Central\",\"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\",\"East US 2 EUAP\",\"West India\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"operations\",\"locations\":[\"East US 2\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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/usages\",\"locations\":[\"North Central US\",\"Canada Central\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"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\"],\"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\"],\"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\"],\"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\":[\"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\"],\"apiVersions\":[\"2020-07-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ManagedServices\",\"namespace\":\"Microsoft.ManagedServices\",\"authorization\":{\"applicationId\":\"66c6d0d1-f2e7-4a18-97a9-ed10f3347016\",\"roleDefinitionId\":\"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2\"},\"resourceTypes\":[{\"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\":\"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\":\"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/00000000-0000-0000-0000-000000000000/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-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-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-05-01\",\"2020-02-01\",\"2018-03-01-beta\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"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-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-05-01\",\"2020-02-01\",\"2019-11-01\",\"2018-03-01-beta\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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-05-01\",\"2020-02-01\",\"2019-11-01\",\"2018-03-01-preview\",\"2018-03-01-beta\"],\"capabilities\":\"None\"},{\"resourceType\":\"startTenantBackfill\",\"locations\":[],\"apiVersions\":[\"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/00000000-0000-0000-0000-000000000000/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\"],\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Marketplace\",\"namespace\":\"Microsoft.Marketplace\",\"authorizations\":[{\"applicationId\":\"a0e1e353-1a3e-42cf-a8ea-3a9746eec58c\"},{\"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\":\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering\",\"namespace\":\"Microsoft.MarketplaceOrdering\",\"resourceTypes\":[{\"resourceType\":\"agreements\",\"locations\":[\"South Central US\",\"West US\"],\"apiVersions\":[\"2015-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2015-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"offertypes\",\"locations\":[\"South Central US\",\"West US\"],\"apiVersions\":[\"2015-06-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"2018-07-01\"],\"defaultApiVersion\":\"2018-07-01\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"2018-07-01\",\"2018-06-01-preview\",\"2018-03-30-preview\"],\"defaultApiVersion\":\"2018-07-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2019-06-01\",\"2018-09-01-preview\"],\"capabilities\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-10-01\",\"2019-05-01\",\"2018-06-30-preview\"],\"capabilities\":\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-02-02\",\"2017-11-11-preview\",\"2017-09-25-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"moveCollections\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\",\"North Europe\",\"South Central US\",\"Southeast Asia\",\"UK South\",\"West Europe\",\"West US 2\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-06-preview\",\"2019-12-02-preview\",\"2019-02-28-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\",\"North Europe\",\"West Europe\",\"South Central US\",\"UK South\",\"Southeast Asia\"],\"apiVersions\":[\"2020-05-01\",\"2019-12-02-preview\",\"2019-02-28-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"remoteRenderingAccounts\",\"locations\":[\"East US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US 2\"],\"apiVersions\":[\"2020-04-06-preview\",\"2019-12-02-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp\",\"namespace\":\"Microsoft.NetApp\",\"authorizations\":[{\"applicationId\":\"12fb057d-b751-47cd-857c-f2934bb677b4\",\"roleDefinitionId\":\"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East US\",\"East US 2\",\"Germany North\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"North Europe\",\"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)\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\"},{\"resourceType\":\"locations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"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-15-preview\",\"2019-07-01\",\"2019-06-01\",\"2019-05-01\",\"2017-08-15\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-01\",\"2020-01-01-preview\",\"2019-05-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"Southeast Asia\"],\"apiVersions\":[\"2020-01-01\",\"2019-06-06\",\"2018-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-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-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-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-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-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-04-01\",\"2020-01-01-preview\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"None\"},{\"resourceType\":\"peeringServiceLocations\",\"locations\":[],\"apiVersions\":[\"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-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-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-04-01\",\"2020-01-01-preview\",\"2019-09-01-preview\",\"2019-08-01-preview\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2019-01-01-preview\",\"2018-10-01-preview\",\"2015-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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/00000000-0000-0000-0000-000000000000/providers/Microsoft.PowerBI\",\"namespace\":\"Microsoft.PowerBI\",\"authorizations\":[{\"applicationId\":\"00000009-0000-0000-c000-000000000000\",\"roleDefinitionId\":\"d2079c0c-4a98-48b1-b511-eae3fc2003ab\"}],\"resourceTypes\":[{\"resourceType\":\"workspaceCollections\",\"locations\":[\"South Central US\",\"North Central US\",\"East US 2\",\"West US\",\"West Europe\",\"North Europe\",\"Brazil South\",\"Southeast Asia\",\"Australia Southeast\",\"Canada Central\",\"Japan East\",\"UK South\",\"West India\"],\"apiVersions\":[\"2016-01-29\"],\"defaultApiVersion\":\"2016-01-29\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2016-01-29\"],\"defaultApiVersion\":\"2016-01-29\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"South Central US\",\"North Central US\",\"East US 2\",\"West US\",\"West Europe\",\"North Europe\",\"Brazil South\",\"Southeast Asia\",\"Australia Southeast\",\"Canada Central\",\"Japan East\",\"UK South\",\"West India\"],\"apiVersions\":[\"2016-01-29\"],\"defaultApiVersion\":\"2016-01-29\",\"capabilities\":\"None\"},{\"resourceType\":\"privateLinkServicesForPowerBI\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-06-01\"],\"defaultApiVersion\":\"2020-06-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateLinkServicesForPowerBI/operationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-06-01\"],\"defaultApiVersion\":\"2020-06-01\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2016-01-29\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.PowerBIDedicated\",\"namespace\":\"Microsoft.PowerBIDedicated\",\"authorization\":{\"applicationId\":\"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\"roleDefinitionId\":\"490d5987-bcf6-4be6-b6b2-056a78cb693a\"},\"resourceTypes\":[{\"resourceType\":\"capacities\",\"locations\":[\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2\"],\"apiVersions\":[\"2018-09-01-preview\",\"2017-10-01\",\"2017-01-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.PowerPlatform\",\"namespace\":\"Microsoft.PowerPlatform\",\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ProjectBabylon\",\"namespace\":\"Microsoft.ProjectBabylon\",\"authorizations\":[{\"applicationId\":\"73c2949e-da2d-457a-9607-fcc665198967\",\"roleDefinitionId\":\"1BC09725-0C9B-4F57-A3D0-FCCF4EB40120\"}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"defaultApiVersion\":\"2019-10-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ProviderHub\",\"namespace\":\"Microsoft.ProviderHub\",\"resourceTypes\":[{\"resourceType\":\"providerRegistrations\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationStatuses\",\"locations\":[],\"apiVersions\":[\"2019-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"providerRegistrations/resourceTypeRegistrations\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"providerRegistrations/defaultRollouts\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"rollouts\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"availableAccounts\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\",\"2018-11-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Quantum\",\"namespace\":\"Microsoft.Quantum\",\"authorizations\":[{\"applicationId\":\"a77d91dc-971b-4cf7-90c8-f183194249bc\",\"roleDefinitionId\":\"915bd376-2da8-411d-9906-895a54086a66\"}],\"resourceTypes\":[{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Locations\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Locations/OperationStatuses\",\"locations\":[\"West US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Workspaces\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-04-preview\"],\"defaultApiVersion\":\"2019-11-04-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/offerings\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"East US\",\"East US 2\",\"France Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Central US\",\"Southeast Asia\",\"Switzerland North\",\"UK South\",\"UK West\",\"West Europe\",\"West US 2\",\"West US\"],\"apiVersions\":[\"2020-04-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationsstatus\",\"locations\":[\"Australia East\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"East US\",\"East US 2\",\"France Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Central US\",\"Southeast Asia\",\"Switzerland North\",\"UK South\",\"UK West\",\"West Europe\",\"West US 2\",\"West US\"],\"apiVersions\":[\"2020-04-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"OpenShiftClusters\",\"locations\":[\"Australia East\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"East US\",\"East US 2\",\"France Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Central US\",\"Southeast Asia\",\"Switzerland North\",\"UK South\",\"UK West\",\"West Europe\",\"West US 2\",\"West US\"],\"apiVersions\":[\"2020-04-30\"],\"defaultApiVersion\":\"2020-04-30\",\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-04-30\",\"2019-12-31-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"East US 2 EUAP\"],\"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\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"namespaces/hybridconnections/authorizationrules\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"namespaces/wcfrelays\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"namespaces/wcfrelays/authorizationrules\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-04-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\"],\"defaultApiVersion\":\"2017-04-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-04-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-04-01-preview\",\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"resourceChanges\",\"locations\":[\"East US\"],\"apiVersions\":[\"2020-04-01-preview\",\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"resourceChangeDetails\",\"locations\":[\"East US\"],\"apiVersions\":[\"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/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"SupportsLocation\"},{\"resourceType\":\"subscriptions/resourceGroups\",\"locations\":[\"Central US\",\"East Asia\",\"Southeast Asia\",\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"North Europe\",\"West Europe\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia Southeast\",\"Australia East\",\"West India\",\"South India\",\"Central India\",\"Canada Central\",\"Canada East\",\"UK South\",\"UK West\",\"Korea Central\",\"Korea South\",\"France Central\",\"South Africa North\",\"UAE North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"subscriptions/resourcegroups/resources\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions/locations\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2016-06-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions/tagnames\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions/tagNames/tagValues\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"deployments\",\"locations\":[],\"apiVersions\":[\"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-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\":\"deploymentScripts\",\"locations\":[\"East Asia\",\"Southeast Asia\",\"Australia East\",\"Brazil South\",\"Canada Central\",\"East US 2\",\"East US\",\"Central US\",\"North Central US\",\"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\",\"Canada East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Canada East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Canada East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-03-01\",\"2016-01-01\",\"2014-08-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"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\":[\"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\":\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole\",\"namespace\":\"Microsoft.SerialConsole\",\"resourceTypes\":[{\"resourceType\":\"consoleServices\",\"locations\":[],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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-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\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"managedclusters/nodetypes\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/managedClusterOperations\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/managedClusterOperationResults\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2018-09-01-preview\",\"2018-07-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networks\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"South Central US\",\"Central US\",\"France Central\",\"West Europe\",\"North Europe\",\"UK South\",\"UK West\",\"Australia East\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"West India\",\"Brazil South\",\"Japan East\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"2018-09-01-preview\",\"2018-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServicesHub\",\"namespace\":\"Microsoft.ServicesHub\",\"authorizations\":[],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-08-15-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"2019-07-01\",\"2018-09-01-preview\",\"2018-06-01\",\"2018-03-01\",\"2018-02-01\",\"2017-12-01\",\"2017-09-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-03-01-preview\"],\"defaultApiVersion\":\"2017-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"Locations/registerSqlVmCandidate\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-03-01-preview\"],\"defaultApiVersion\":\"2017-03-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\":[],\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"2020-03-01\"],\"defaultApiVersion\":\"2020-03-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"2016-10-01\",\"2016-06-01\",\"2015-03-15\",\"2014-09-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"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\":\"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\"],\"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\"],\"apiVersions\":[\"2019-06-01\",\"2018-11-01\",\"2017-04-01-preview\",\"2016-03-01\",\"2015-11-01\",\"2015-10-01\",\"2015-09-01\",\"2015-08-01-preview\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"2019-10-01-preview\",\"2019-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"rename\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-10-01-preview\",\"2019-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"enable\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-10-01-preview\",\"2019-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"aliases\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"Central US\"],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"acceptChangeTenant\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"changeTenantStatus\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"changeTenantRequest\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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 US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/bigDataPools\",\"locations\":[\"West US 2\",\"East US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"West Central US\",\"South Central US\",\"East US 2\",\"UK South\",\"West US\",\"Australia Southeast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/sqlPools\",\"locations\":[\"West US 2\",\"East US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"West Central US\",\"South Central US\",\"East US 2\",\"UK South\",\"West US\",\"Australia Southeast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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 US 2 EUAP\"],\"apiVersions\":[\"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 US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"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 US 2 EUAP\"],\"apiVersions\":[\"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 US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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 US 2 EUAP\"],\"apiVersions\":[\"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 US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/sqlDatabases\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/sqlDatabaseAzureAsyncOperation\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/sqlDatabaseOperationResults\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/sqlPoolAzureAsyncOperation\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/sqlPoolOperationResults\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\"],\"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\":[\"France Central\",\"South Central Us\",\"East US 2\",\"West US\",\"East US\",\"East US 2 EUAP\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"Australia Southeast\",\"East Asia\",\"UK West\",\"UK South\",\"West US 2\",\"Central US\",\"West Central US\",\"North Central US\"],\"apiVersions\":[\"2017-02-28-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Token\",\"namespace\":\"Microsoft.Token\",\"authorizations\":[{\"applicationId\":\"fe053c5f-3692-4f14-aef2-ee34fc081cae\"}],\"resourceTypes\":[{\"resourceType\":\"stores\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"stores/accessPolicies\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"stores/services\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"stores/services/tokens\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-14\",\"2019-05-01-preview\",\"2019-02-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VMware\",\"namespace\":\"Microsoft.VMware\",\"authorizations\":[{\"applicationId\":\"ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7\",\"roleDefinitionId\":\"dd032bd9-65cc-4171-b688-c612566422ae\"}],\"resourceTypes\":[{\"resourceType\":\"Locations\",\"locations\":[],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Locations/OperationStatuses\",\"locations\":[\"East US\",\"West US\",\"East US 2 EUAP\",\"West Europe\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"ArcZones\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VCenters\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"ResourcePools\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VirtualNetworks\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VirtualMachineTemplates\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VirtualMachines\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VMwareCloudSimple\",\"namespace\":\"Microsoft.VMwareCloudSimple\",\"authorizations\":[{\"applicationId\":\"d96199e7-4674-4bbf-a1c6-ddf93682f5ee\",\"roleDefinitionId\":\"533012ca-a3e7-44e4-93b4-3143f8b9409d\",\"allowedThirdPartyExtensions\":[{\"name\":\"CloudSimpleExtension\"}]}],\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dedicatedCloudNodes\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dedicatedCloudServices\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/availabilities\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds/virtualNetworks\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds/virtualMachineTemplates\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds/resourcePools\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VnfManager\",\"namespace\":\"Microsoft.VnfManager\",\"authorizations\":[{\"applicationId\":\"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\"roleDefinitionId\":\"c8d69fc0-f0ed-43b3-bf1d-4dfdaacc6d2d\"}],\"resourceTypes\":[{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"East US\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"East US\",\"North Europe\",\"East Asia\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"devices\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"vnfs\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"vendors/vnfs\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-05-26-privatepreview\",\"2020-05-26-preview\",\"2020-05-26-beta\",\"2020-05-26-alpha\",\"2019-07-01-privatepreview\",\"2019-07-01-preview\",\"2019-07-01-beta\",\"2019-07-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2020-05-26-privatepreview\",\"2020-05-26-preview\",\"2020-05-26-beta\",\"2020-05-26-alpha\",\"2019-07-01-privatepreview\",\"2019-07-01-preview\",\"2019-07-01-beta\",\"2019-07-01-alpha\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.WindowsIoT\",\"namespace\":\"Microsoft.WindowsIoT\",\"resourceTypes\":[{\"resourceType\":\"DeviceServices\",\"locations\":[\"West US\",\"East US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01\",\"2018-02-16-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"West US\",\"East US\",\"West Central US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01\",\"2018-02-16-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.WorkloadBuilder\",\"namespace\":\"Microsoft.WorkloadBuilder\",\"authorizations\":[{\"applicationId\":\"63c2c773-89fe-4164-a02f-b8c7fc1772ae\",\"roleDefinitionId\":\"322358fa-ea51-4f6c-b9d6-3be64015f074\"}],\"resourceTypes\":[{\"resourceType\":\"Locations\",\"locations\":[],\"apiVersions\":[\"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\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workloads\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workloads/versions/artifacts\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workloads/versions\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workloads/instances\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"2018-08-31-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"componentsSummary\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"monitorInstancesSummary\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"monitorInstances\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"components\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"monitors\",\"locations\":[],\"apiVersions\":[\"2020-01-13-preview\",\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"notificationSettings\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Sendgrid.Email\",\"namespace\":\"Sendgrid.Email\",\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"France South\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"UAE Central\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\"],\"apiVersions\":[\"2015-01-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"France South\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"UAE Central\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\"],\"apiVersions\":[\"2015-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/stackify.retrace\",\"namespace\":\"stackify.retrace\",\"resourceTypes\":[{\"resourceType\":\"services\",\"locations\":[\"West US\"],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"listCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"updateCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Wandisco.Fusion\",\"namespace\":\"Wandisco.Fusion\",\"authorizations\":[{\"applicationId\":\"37b36496-3f4f-443a-a406-5e0a0535f6a3\",\"roleDefinitionId\":\"b10cdc1f-fd21-4fe9-bae7-7e2e25a91a21\"}],\"resourceTypes\":[{\"resourceType\":\"Locations\",\"locations\":[\"East US\"],\"apiVersions\":[\"2019-10-01\",\"2019-09-01-preview\"],\"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\":[\"2019-10-01\",\"2019-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2019-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ProjectArcadia\",\"namespace\":\"Microsoft.ProjectArcadia\",\"authorizations\":[{\"applicationId\":\"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b\",\"roleDefinitionId\":\"a53b114a-452b-4d20-bcd6-c51c3c8c5878\"},{\"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\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/sparkComputes\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/sqlComputes\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/operationStatus\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/operationResults\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"EAST US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"EAST US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SecurityDetonation\",\"namespace\":\"Microsoft.SecurityDetonation\",\"authorizations\":[{\"applicationId\":\"29820072-374d-49b8-945a-3941d7e9b468\",\"roleDefinitionId\":\"4ddf1807-30b0-464a-9d16-a8822daf866b\"}],\"resourceTypes\":[{\"resourceType\":\"chambers\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "07e4a68d-c7fd-44bd-a7e5-11ebcf4c4e50", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:06 GMT", - "content-length" : "953319", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "98492a32-7798-436f-b71d-9d7727502a2f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092407Z:98492a32-7798-436f-b71d-9d7727502a2f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "98492a32-7798-436f-b71d-9d7727502a2f", - "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"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\",\"Central US\",\"Canada Central\",\"Canada East\",\"UK South\",\"West US\",\"West US 2\",\"Australia East\",\"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\",\"Germany North\",\"Switzerland North\",\"Switzerland West\",\"Germany West Central\",\"UAE North\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"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 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\",\"Germany North\",\"Germany West Central\",\"Switzerland North\",\"Switzerland West\",\"UAE North\",\"UAE Central\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-08-31\",\"2016-03-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operations\",\"locations\":[\"France Central\",\"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 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\",\"Germany North\",\"Germany West Central\",\"Switzerland North\",\"Switzerland West\",\"UAE North\",\"UAE Central\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\"],\"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\",\"Central US\",\"Canada East\",\"Canada Central\",\"UK South\",\"UK West\",\"West Central US\",\"West US\",\"West US 2\",\"Australia East\",\"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\",\"Germany North\",\"Germany West Central\",\"Switzerland North\",\"Switzerland West\",\"UAE North\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-preview\",\"2015-05-01-preview\",\"2015-01-01\",\"2014-04-01-preview\",\"2014-04-01\",\"2014-01-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/serviceObjectives\",\"locations\":[\"Australia Central\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"Norway East\",\"South Africa North\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-preview\",\"2015-09-01-preview\",\"2015-05-01-preview\",\"2015-05-01\",\"2014-04-01-preview\",\"2014-04-01\",\"2014-01-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/jobAccounts\",\"locations\":[\"Australia Central\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"Norway East\",\"South Africa North\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-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, 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-preview\",\"2015-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\",\"2019-06-01\",\"2018-06-30\",\"2018-01-15\",\"2017-05-15-preview\",\"2015-10-31\",\"2015-01-01-preview\"],\"defaultApiVersion\":\"2018-06-30\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"automationAccounts/runbooks\",\"locations\":[\"Japan East\",\"East US 2\",\"West Europe\",\"South Africa North\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\"],\"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\":[\"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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"automationAccounts/privateEndpointConnections\",\"locations\":[\"Japan East\",\"East US 2\",\"West Europe\",\"South Africa North\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"automationAccounts/privateEndpointConnectionProxies\",\"locations\":[\"Japan East\",\"East US 2\",\"West Europe\",\"South Africa North\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"Redis/privateLinkResources\",\"locations\":[\"Australia Southeast\",\"Switzerland North\",\"Germany West Central\"],\"apiVersions\":[\"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\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"West Europe\",\"West US\",\"East US 2\"],\"apiVersions\":[\"2020-04-01-preview\"],\"defaultApiVersion\":\"2020-04-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2020-04-01-preview\"}],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-07-01\",\"2018-03-01\",\"2017-10-01\",\"2017-02-01\",\"2016-04-01\",\"2015-08-01\",\"2015-03-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\":\"2018-11-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"publicIPAddresses\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkInterfaces\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"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\":\"2019-02-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateEndpointRedirectMaps\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"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\":\"2019-07-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationSecurityGroups\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"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\":\"2018-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\":\"2018-04-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"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\":\"2018-07-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"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\":\"2018-10-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkWatchers/flowLogs\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2019-07-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2018-01-01\",\"2017-11-01\",\"2017-10-01\",\"2017-09-01\"],\"defaultApiVersion\":\"2017-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"virtualNetworkGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-03-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"localNetworkGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-03-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2018-12-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationGatewayWebApplicationFirewallPolicies\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"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\":\"2018-12-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"2018-05-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2018-01-01\",\"2017-11-01\",\"2017-10-01\",\"2017-09-01\",\"2017-08-01\",\"2017-06-01\",\"2017-04-01\",\"2017-03-01\",\"2016-12-01\",\"2016-11-01\",\"2016-10-01\",\"2016-09-01\",\"2016-08-01\",\"2016-07-01\",\"2016-06-01\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\",\"2014-12-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"dnszones\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-04-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-04-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2016-04-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dnsOperationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnsOperationStatuses\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"getDnsResourceReference\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"internalNotify\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/A\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/AAAA\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/CNAME\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/PTR\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/MX\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/TXT\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/SRV\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/SOA\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/NS\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/CAA\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/recordsets\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/all\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateDnsZones/virtualNetworkLinks\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateDnsOperationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsOperationStatuses\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZonesInternal\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/A\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/AAAA\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/CNAME\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/PTR\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/MX\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/TXT\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/SRV\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/SOA\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/all\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"trafficmanagerprofiles\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-05-01\",\"2017-03-01\",\"2015-11-01\",\"2015-04-28-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"trafficmanagerprofiles/heatMaps\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-09-01-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"checkTrafficManagerNameAvailability\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-05-01\",\"2017-03-01\",\"2015-11-01\",\"2015-04-28-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"trafficManagerUserMetricsKeys\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2017-09-01-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"trafficManagerGeographicHierarchies\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-05-01\",\"2017-03-01\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"expressRouteCircuits\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"expressRouteServiceProviders\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2016-12-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"bgpServiceCommunities\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"2019-08-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-11-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-11-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"p2sVpnGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"UAE North\",\"South Africa North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2019-08-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"expressRouteGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2018-08-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"ipGroups\",\"locations\":[\"UAE North\",\"Australia Central 2\",\"UAE Central\",\"Germany North\",\"Central India\",\"Korea South\",\"Switzerland North\",\"Switzerland West\",\"Japan West\",\"France South\",\"South Africa West\",\"West India\",\"Canada East\",\"South India\",\"Germany West Central\",\"Norway East\",\"Norway West\",\"South Africa North\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"Brazil South\",\"Japan East\",\"UK West\",\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"South Central US\",\"Australia East\",\"Australia Central\",\"Australia Southeast\",\"UK South\",\"East US 2\",\"West US 2\",\"North Central US\",\"Canada Central\",\"France Central\",\"West Central US\",\"Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"2019-08-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/nfvOperations\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"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-05-01\",\"2020-04-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\":\"2018-04-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"azureFirewallFqdnTags\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2018-08-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2018-08-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"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\":\"2018-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"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\":\"2018-05-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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-05-01\",\"2020-01-01\",\"2019-08-01\",\"2019-05-01\",\"2019-04-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"None\"},{\"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-04-01\",\"2019-10-01\",\"2019-03-01\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"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\":\"2018-10-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"virtualRouters\",\"locations\":[\"UAE North\",\"Australia Central 2\",\"UAE Central\",\"Germany North\",\"Central India\",\"Korea South\",\"Switzerland North\",\"Switzerland West\",\"Japan West\",\"France South\",\"South Africa West\",\"West India\",\"Canada East\",\"South India\",\"Germany West Central\",\"Norway East\",\"Norway West\",\"South Africa North\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"Brazil South\",\"Japan East\",\"UK West\",\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"West Central US\",\"South Central US\",\"Australia East\",\"Australia Central\",\"Australia Southeast\",\"UK South\",\"East US 2\",\"West US 2\",\"North Central US\",\"Canada Central\",\"France Central\",\"Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"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\":\"2019-07-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkVirtualAppliances\",\"locations\":[\"UAE North\",\"Australia Central 2\",\"UAE Central\",\"Germany North\",\"Central India\",\"Korea South\",\"Switzerland North\",\"Switzerland West\",\"Japan West\",\"France South\",\"South Africa West\",\"West India\",\"Canada East\",\"South India\",\"Germany West Central\",\"Norway East\",\"Norway West\",\"South Africa North\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"Brazil South\",\"Japan East\",\"UK West\",\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"West Central US\",\"South Central US\",\"Australia East\",\"Australia Central\",\"Australia Southeast\",\"UK South\",\"East US 2\",\"West US 2\",\"North Central US\",\"Canada Central\",\"France Central\",\"Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\"],\"defaultApiVersion\":\"2019-12-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"ipAllocations\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/commitInternalAzureNetworkManagerConfiguration\",\"locations\":[\"West Central US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2019-12-01\",\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"networkVirtualApplianceSkus\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\"],\"defaultApiVersion\":\"2020-03-01\",\"capabilities\":\"None\"},{\"resourceType\":\"networkWatchers/lenses\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"2018-01-01\",\"2017-11-01\",\"2017-10-01\",\"2017-09-01\"],\"defaultApiVersion\":\"2017-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"frontdoorOperationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"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-04-01\",\"capabilities\":\"None\"},{\"resourceType\":\"frontdoors\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\",\"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-05-01\",\"2020-04-01\",\"2020-01-01\",\"2019-08-01\",\"2019-05-01\",\"2019-04-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"frontdoors/frontendEndpoints\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\",\"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-05-01\",\"2020-04-01\",\"2020-01-01\",\"2019-08-01\",\"2019-05-01\",\"2019-04-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"frontdoorWebApplicationFirewallPolicies\",\"locations\":[\"East US 2 EUAP\",\"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-04-01\",\"2019-10-01\",\"2019-03-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkExperimentProfiles\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\",\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West 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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-10-30-preview\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"virtualMachineScaleSets/extensions\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"Central US\",\"North Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"Australia Central\",\"Brazil South\",\"South India\",\"Central India\",\"West India\",\"Canada Central\",\"Canada East\",\"West US 2\",\"West Central US\",\"UK South\",\"UK West\",\"Korea Central\",\"Korea South\",\"France Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-10-30-preview\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"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-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\"],\"defaultApiVersion\":\"2019-12-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2014-04-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-15-preview\"],\"defaultApiVersion\":\"2017-10-15-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"sharedVMImages/versions\",\"locations\":[\"West Central US\",\"South Central US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US\",\"East US\",\"Canada Central\",\"North Europe\",\"North Central US\",\"Brazil South\",\"UK West\",\"West India\",\"East Asia\",\"Australia East\",\"Japan East\",\"Korea South\",\"West US 2\",\"Canada East\",\"UK South\",\"Central India\",\"South India\",\"Australia Southeast\",\"Japan West\",\"Korea Central\",\"France Central\",\"Central US\",\"Australia Central\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-15-preview\"],\"defaultApiVersion\":\"2017-10-15-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/artifactPublishers\",\"locations\":[\"West Central US\",\"South Central US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US\",\"East US\",\"Canada Central\",\"North Europe\",\"North Central US\",\"Brazil South\",\"UK West\",\"West India\",\"East Asia\",\"Australia East\",\"Japan East\",\"Korea South\",\"West US 2\",\"Canada East\",\"UK South\",\"Central India\",\"South India\",\"Australia Southeast\",\"Japan West\",\"Korea Central\",\"France Central\",\"Central US\",\"Australia Central\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-15-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/capsoperations\",\"locations\":[\"West Central US\",\"South Central US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US\",\"East US\",\"Canada Central\",\"North Europe\",\"North Central US\",\"Brazil South\",\"UK West\",\"West India\",\"East Asia\",\"Australia East\",\"Japan East\",\"Korea South\",\"West US 2\",\"Canada East\",\"UK South\",\"Central India\",\"South India\",\"Australia Southeast\",\"Japan West\",\"Korea Central\",\"France Central\",\"Central US\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-06-01\"],\"defaultApiVersion\":\"2018-06-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"disks\",\"locations\":[\"Southeast Asia\",\"East US 2\",\"Central US\",\"West Europe\",\"East US\",\"North Central US\",\"South Central US\",\"West US\",\"North Europe\",\"East Asia\",\"Brazil South\",\"West US 2\",\"West Central US\",\"UK West\",\"UK South\",\"Japan East\",\"Japan West\",\"Canada Central\",\"Canada East\",\"Central India\",\"South India\",\"Australia East\",\"Australia Southeast\",\"Korea Central\",\"Korea South\",\"West India\",\"France Central\",\"South Africa North\",\"UAE North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"2018-06-01\",\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West 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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"2018-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/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2019-11-01\",\"2019-07-01\"],\"defaultApiVersion\":\"2019-07-01\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/vsmoperations\",\"locations\":[\"East US\",\"West Central US\",\"South Central US\",\"North Europe\",\"Australia East\",\"Central US\",\"North Central US\",\"Southeast Asia\",\"West US\",\"East US 2\",\"West Europe\",\"West India\",\"Australia Central\",\"Australia Central 2\",\"UK West\",\"Brazil South\",\"East Asia\",\"South India\",\"Australia Southeast\",\"France South\",\"West US 2\",\"Japan West\",\"France Central\",\"Central India\",\"Korea South\",\"Korea Central\",\"Japan East\",\"Canada East\",\"Canada Central\",\"South Africa North\",\"UAE North\",\"South Africa West\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-03-30\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-03-30\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-12-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"images\",\"locations\":[\"Southeast Asia\",\"East US 2\",\"Central US\",\"West Europe\",\"East US\",\"North Central US\",\"South Central US\",\"West US\",\"North Europe\",\"East Asia\",\"Brazil South\",\"West US 2\",\"West Central US\",\"UK West\",\"UK South\",\"Japan East\",\"Japan West\",\"Canada Central\",\"Canada East\",\"Central India\",\"South India\",\"Australia East\",\"Australia Southeast\",\"Korea Central\",\"Korea South\",\"West India\",\"France Central\",\"South Africa North\",\"UAE North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\"],\"defaultApiVersion\":\"2018-10-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West 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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\"],\"defaultApiVersion\":\"2018-10-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\",\"Australia Southeast\",\"Australia Central 2\",\"Germany West Central\",\"Switzerland West\",\"UAE Central\",\"UK West\"],\"apiVersions\":[\"2018-05-01-preview\",\"2015-05-01\",\"2014-12-01-preview\",\"2014-08-01\",\"2014-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"components/query\",\"locations\":[],\"apiVersions\":[\"2018-04-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"components/metadata\",\"locations\":[],\"apiVersions\":[\"2018-04-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"components/metrics\",\"locations\":[\"East US\",\"South Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"UK South\",\"Central India\",\"Canada Central\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"East US 2\",\"East Asia\",\"West US\",\"Central US\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"apiVersions\":[\"2018-04-20\",\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"components/events\",\"locations\":[\"East US\",\"South Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"UK South\",\"Central India\",\"Canada Central\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"East US 2\",\"East Asia\",\"West US\",\"Central US\",\"South Africa North\",\"North Central US\"],\"apiVersions\":[\"2018-04-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"webtests\",\"locations\":[\"East US\",\"South Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"UK South\",\"Central India\",\"Canada Central\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"Central US\",\"East US 2\",\"East Asia\",\"West US\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\",\"Australia Central 2\",\"Germany West Central\",\"Switzerland West\",\"UAE Central\",\"UK West\"],\"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\":[\"West Central US\",\"East US\",\"West Europe\",\"Central India\",\"Canada Central\",\"Australia Southeast\",\"Japan East\",\"Southeast Asia\",\"UK South\",\"South Central US\",\"North Europe\",\"West US 2\",\"Australia Central\",\"Australia East\",\"Korea Central\",\"France Central\",\"Central US\",\"East US 2\",\"East Asia\",\"West US\",\"North Central US\",\"South Africa North\",\"Brazil South\",\"UK West\",\"Switzerland North\",\"Switzerland West\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-03-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2015-04-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"eventtypes\",\"locations\":[],\"apiVersions\":[\"2017-03-01-preview\",\"2016-09-01-preview\",\"2015-04-01\",\"2014-11-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-01\"}],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"locations\",\"locations\":[\"East US\"],\"apiVersions\":[\"2015-04-01\",\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[],\"apiVersions\":[\"2015-04-01\",\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"vmInsightsOnboardingStatuses\",\"locations\":[],\"apiVersions\":[\"2018-11-27-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2015-04-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"diagnosticSettings\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"North Central US\",\"South Central US\",\"East US 2\",\"Central US\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"UK South\",\"UK West\",\"South India\",\"Central India\",\"West India\",\"Canada East\",\"Canada Central\",\"West Central US\",\"West US 2\",\"Korea South\",\"Korea Central\",\"Australia Central\",\"Australia Central 2\",\"France Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"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\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"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\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"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\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"apiVersions\":[\"2020-02-12\",\"2018-06-17-preview\",\"2018-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workbooktemplates\",\"locations\":[\"West Europe\",\"South Central US\",\"East US\",\"North Europe\",\"Southeast Asia\",\"West US 2\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"Central US\",\"East US 2\",\"East Asia\",\"West US\",\"Canada Central\",\"Central India\",\"UK South\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"apiVersions\":[\"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\",\"Australia Southeast\"],\"apiVersions\":[\"2020-02-12\",\"2018-06-17-preview\",\"2018-06-15-preview\",\"2018-06-01-preview\",\"2016-06-15-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"logs\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"Central US\",\"North Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"South India\",\"Central India\",\"West India\",\"Canada Central\",\"Canada East\",\"West US 2\",\"West Central US\",\"UK South\",\"UK West\",\"Korea Central\",\"Korea South\",\"France Central\",\"France South\",\"Australia Central\",\"South Africa North\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"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\"},{\"resourceType\":\"dataCollectionRules\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-01-preview\"],\"defaultApiVersion\":\"2019-11-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dataCollectionRuleAssociations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-01-preview\"],\"defaultApiVersion\":\"2019-11-01-preview\",\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2017-04-26-preview\",\"2017-03-15-preview\",\"2017-03-03-preview\",\"2017-01-01-preview\",\"2015-11-01-preview\",\"2015-03-20\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"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\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2019-08-01-preview\",\"2015-11-01-preview\"],\"defaultApiVersion\":\"2015-11-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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2015-11-01-preview\"],\"defaultApiVersion\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2019-08-01-preview\"],\"defaultApiVersion\":\"2019-08-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"storageInsightConfigs\",\"locations\":[],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2019-08-01-preview\",\"2015-11-01-preview\"],\"defaultApiVersion\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\",\"2015-11-01-preview\",\"2014-11-10\"],\"defaultApiVersion\":\"2015-11-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SignalRService\",\"namespace\":\"Microsoft.SignalRService\",\"authorizations\":[{\"applicationId\":\"cdad765c-f191-43ba-b9f5-7aef392f811d\",\"roleDefinitionId\":\"346b504e-4aec-45d1-be25-a6e10f3cb4fe\"}],\"resourceTypes\":[{\"resourceType\":\"SignalR\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatuses\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"West US\",\"East US\",\"East US 2\",\"West US 2\",\"Central US\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"SignalR/eventGridFilters\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/clusters\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/fileservers\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/experiments\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/experiments/jobs\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"West Central US\",\"Southeast Asia\",\"South Central US\",\"West US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"clusters\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"jobs\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"fileservers\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.AlertsManagement\",\"namespace\":\"Microsoft.AlertsManagement\",\"authorizations\":[{\"applicationId\":\"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\"roleDefinitionId\":\"b1309299-720d-4159-9897-6158a61aee41\"}],\"resourceTypes\":[{\"resourceType\":\"alerts\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-05-preview\",\"2018-11-02-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"alertsList\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-11-02-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"alertsSummaryList\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-11-02-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"alertsMetaData\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-05-preview\",\"2019-03-01-preview\",\"2019-03-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-05-05-preview\",\"2018-05-05\",\"2017-11-15-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"2020-05-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-09-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"2017-05-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-03-01-preview\",\"2020-03-01\",\"2019-08-01\",\"2019-04-01\",\"2018-12-01\",\"2017-09-01\",\"2017-05-01\",\"2017-01-01\",\"2015-12-01\",\"2015-09-01\",\"2015-07-01\",\"2014-05-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-15\",\"2020-03-31\",\"2019-12-31\",\"2019-06-15-preview\",\"2019-04-15\",\"2018-04-02\",\"2017-10-12\",\"2017-04-02\",\"2016-10-02\",\"2016-04-02\",\"2015-06-01\"],\"defaultApiVersion\":\"2017-10-12\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"profiles/endpoints\",\"locations\":[\"global\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Central US\",\"South India\",\"Southeast Asia\",\"West Europe\",\"West India\",\"West US\",\"West Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-15\",\"2020-03-31\",\"2019-12-31\",\"2019-06-15-preview\",\"2019-04-15\",\"2018-04-02\",\"2017-10-12\",\"2017-04-02\",\"2016-10-02\",\"2016-04-02\",\"2015-06-01\"],\"defaultApiVersion\":\"2017-10-12\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"profiles/endpoints/origins\",\"locations\":[\"global\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Central US\",\"South India\",\"Southeast Asia\",\"West Europe\",\"West India\",\"West US\",\"West Central US\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-15\",\"2020-03-31\",\"2019-12-31\"],\"defaultApiVersion\":\"2019-12-31\",\"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-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-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-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-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/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-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-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-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-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-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-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-04-15\",\"2019-06-15-preview\"],\"defaultApiVersion\":\"2019-06-15-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"CdnWebApplicationFirewallManagedRuleSets\",\"locations\":[],\"apiVersions\":[\"2020-04-15\",\"2019-06-15-preview\"],\"defaultApiVersion\":\"2019-06-15-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2017-04-18\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-12-01-preview\",\"2017-12-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"serversv2\",\"locations\":[\"East US 2\",\"East US\",\"North Central US\",\"Canada Central\",\"Australia East\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"North Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-03-29-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"serverGroups\",\"locations\":[\"East US 2\",\"East US\",\"North Central US\",\"Canada Central\",\"Australia East\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"North Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-03-29-privatepreview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"singleServers\",\"locations\":[\"West US 2\",\"North Central US\",\"East US\",\"East US 2\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-14-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\",\"2015-03-01-preview\"],\"defaultApiVersion\":\"2015-03-01-preview\",\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeAnalytics\",\"namespace\":\"Microsoft.DataLakeAnalytics\",\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\"],\"apiVersions\":[\"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\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/storageAccounts\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/storageAccounts/containers\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\"],\"apiVersions\":[\"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\":[\"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\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-11-01-preview\",\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization\",\"namespace\":\"Microsoft.Authorization\",\"authorizations\":[{\"applicationId\":\"de926fbf-e23b-41f9-ae15-c943a9cfa630\"}],\"resourceTypes\":[{\"resourceType\":\"roleAssignments\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"databaseAccounts\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationsStatus\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"restorableDatabaseAccounts\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore\",\"namespace\":\"Microsoft.DataLakeStore\",\"authorization\":{\"applicationId\":\"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\"roleDefinitionId\":\"17eb9cca-f08a-4499-b2d3-852d175f614f\"},\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"defaultApiVersion\":\"2016-11-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"accounts/firewallRules\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/eventGridFilters\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/capability\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/deleteVirtualNetworkOrSubnets\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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-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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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-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-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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"partnerRegistrations\",\"locations\":[\"Global\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-09-01\",\"2018-02-14-preview\",\"2018-02-14\"],\"defaultApiVersion\":\"2019-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"managedHSMs\",\"locations\":[\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"defaultApiVersion\":\"2020-04-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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 Central US\",\"France Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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 Central US\",\"France Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-30\",\"2015-08-31-PREVIEW\"],\"capabilities\":\"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 Central US\",\"France Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-30\",\"2015-08-31-PREVIEW\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\"],\"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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2020-02-02\",\"2019-06-15\",\"2019-05-13-preview\",\"2019-05-13\",\"2018-12-20-preview\",\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-07-10\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-10\"}],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Search\",\"namespace\":\"Microsoft.Search\",\"authorization\":{\"applicationId\":\"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\"roleDefinitionId\":\"20FA3191-87CF-4C3D-9510-74CCB594A310\"},\"resourceTypes\":[{\"resourceType\":\"searchServices\",\"locations\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"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-03-13\",\"2019-10-01-Preview\",\"2015-08-19\"],\"capabilities\":\"None\"},{\"resourceType\":\"resourceHealthMetadata\",\"locations\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-03-13\",\"2019-10-01-Preview\",\"2015-08-19\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-13\",\"2019-10-01-Preview\",\"2015-08-19\",\"2015-02-28\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\"],\"capabilities\":\"None\"},{\"resourceType\":\"secureScores/secureScoreControls\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"secureScoreControls\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"secureScoreControlDefinitions\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"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\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-01-01\",\"2017-08-01-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"deviceSecurityGroups\",\"locations\":[\"North Europe\",\"West Europe\",\"UK South\",\"UK West\",\"France Central\",\"France South\",\"West Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2017-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2017-08-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\"],\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"],\"apiVersions\":[\"2019-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-11-01-preview\",\"2019-10-01\",\"2019-02-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"configurationStores/eventGridFilters\",\"locations\":[\"West Central US\",\"Central US\",\"West US\",\"East US\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-11-01-preview\",\"2019-10-01\",\"2019-02-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2018-07-01-preview\",\"2017-07-01\",\"2016-10-01\",\"2016-06-01\",\"2015-08-01-preview\",\"2015-02-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/workflows\",\"locations\":[\"North Central US\",\"Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"West US\",\"East US\",\"East US 2\",\"Japan West\",\"Japan East\",\"Brazil South\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2018-07-01-preview\",\"2016-06-01\",\"2015-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"integrationServiceEnvironments\",\"locations\":[\"North Central US\",\"Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"West US\",\"East US\",\"East US 2\",\"Japan West\",\"Japan East\",\"Australia East\",\"Australia Southeast\",\"South India\",\"Central India\",\"Canada Central\",\"West US 2\",\"UK South\",\"UK West\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\",\"2019-05-01\",\"2018-07-01-preview\",\"2018-03-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"integrationServiceEnvironments/managedApis\",\"locations\":[\"North Central US\",\"Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"West US\",\"East US\",\"East US 2\",\"Japan West\",\"Japan East\",\"Australia East\",\"Australia Southeast\",\"South India\",\"Central India\",\"Canada Central\",\"West US 2\",\"West Central US\",\"UK South\",\"UK West\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\",\"2019-05-01\",\"2018-07-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"hostingEnvironments\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-04-01-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"isolatedEnvironments\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-07-01-preview\",\"2018-03-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL\",\"namespace\":\"Microsoft.DBforMySQL\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-12-01-preview\",\"2017-12-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/recoverableServers\",\"locations\":[\"Australia Central\",\"Australia Central 2\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"Central India\",\"East Asia\",\"East US 2\",\"East US\",\"France Central\",\"France South\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Norway East\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppPlatform\",\"namespace\":\"Microsoft.AppPlatform\",\"authorizations\":[{\"applicationId\":\"03b39d0f-4213-4864-a245-b1476ec03169\"},{\"applicationId\":\"b61cc489-e138-4a69-8bf3-c2c5855c8784\",\"roleDefinitionId\":\"462ddd96-910a-44f5-adfa-644d99942778\"},{\"applicationId\":\"e8de9221-a19c-4c81-b814-fd37c6caf9d2\"}],\"resourceTypes\":[{\"resourceType\":\"Spring\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"Spring/apps\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatus\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"},{\"resourceType\":\"configurationProfileAssignments\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-30-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"autoManagedVmConfigurationProfiles\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-30-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"autoManagedAccounts\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-30-preview\"],\"defaultApiVersion\":\"2018-06-30-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"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\":[\"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\":[\"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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"UAE North\"],\"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\",\"UAE North\"],\"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\",\"UAE North\"],\"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\",\"UAE North\"],\"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\",\"UAE North\"],\"apiVersions\":[\"2020-01-01\",\"2017-06-01\",\"2017-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-03-01-preview\",\"2020-03-01\"],\"defaultApiVersion\":\"2020-03-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"tenants\",\"locations\":[\"West US\"],\"apiVersions\":[\"2017-04-01\",\"2017-03-01\",\"2016-09-01\",\"2016-08-01\",\"2016-07-01\",\"2016-06-01\",\"2016-03-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\"],\"defaultApiVersion\":\"2017-04-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"West US\"],\"apiVersions\":[\"2017-04-01\",\"2017-03-01\",\"2016-09-01\",\"2016-08-01\",\"2016-07-01\",\"2016-06-01\",\"2016-03-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"diagnosticSettings\",\"locations\":[],\"apiVersions\":[\"2017-04-01-preview\",\"2017-04-01\"],\"defaultApiVersion\":\"2017-04-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"diagnosticSettingsCategories\",\"locations\":[],\"apiVersions\":[\"2017-04-01-preview\",\"2017-04-01\"],\"defaultApiVersion\":\"2017-04-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-08-01-beta\",\"2017-08-01\",\"2017-07-14\",\"2016-05-16\"],\"defaultApiVersion\":\"2017-08-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-08-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2\",\"West Central US\",\"West US 2\"],\"apiVersions\":[\"2017-08-01-beta\",\"2017-08-01\",\"2017-07-14\",\"2016-05-16\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-08-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ApiManagement\",\"namespace\":\"Microsoft.ApiManagement\",\"authorization\":{\"applicationId\":\"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\"roleDefinitionId\":\"e263b525-2e60-4418-b655-420bae0b172e\"},\"resourceTypes\":[{\"resourceType\":\"service\",\"locations\":[\"Canada East\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\":[],\"apiVersions\":[\"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\":\"reportFeedback\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"defaultProviders\",\"locations\":[\"East US 2\",\"Central US\",\"UK South\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/defaultProvider\",\"locations\":[\"East US 2\",\"Central US\",\"UK South\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AVS\",\"namespace\":\"Microsoft.AVS\",\"authorizations\":[{\"allowedThirdPartyExtensions\":[{\"name\":\"VMCP\"}]}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkTrialAvailability\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkQuotaAvailability\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"privateClouds\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateClouds/clusters\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"privateClouds/authorizations\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"privateClouds/hcxEnterpriseSites\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AzureActiveDirectory\",\"namespace\":\"Microsoft.AzureActiveDirectory\",\"resourceTypes\":[{\"resourceType\":\"b2cDirectories\",\"locations\":[\"Global\",\"United States\",\"Europe\",\"Asia Pacific\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-01-01-privatepreview\",\"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\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-01-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Global\",\"United States\",\"Europe\",\"Asia Pacific\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-01-01-privatepreview\",\"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\"],\"apiVersions\":[\"2020-05-01-preview\",\"2016-02-10-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-10-preview\"],\"defaultApiVersion\":\"2019-05-10-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Canada Central\",\"France Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South 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\",\"East US 2 EUAP\"],\"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 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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-10-preview\"],\"defaultApiVersion\":\"2019-05-10-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"dataControllers\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"postgresInstances\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sqlManagedInstances\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sqlServerInstances\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/billingProfiles/createBillingRoleAssignment\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment\",\"locations\":[],\"apiVersions\":[\"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-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-05-01\",\"2019-10-01-preview\",\"2018-11-01-preview\",\"2018-06-30\",\"2018-05-31\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/operationResults\",\"locations\":[],\"apiVersions\":[\"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-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-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-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-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-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\":[\"2019-10-01-preview\",\"2018-06-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/departments/billingRoleDefinitions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/departments/billingRoleAssignments\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/departments/billingPermissions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\",\"2018-06-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts/billingRoleDefinitions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts/billingRoleAssignments\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts/billingPermissions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"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/billingSubscriptions\",\"locations\":[],\"apiVersions\":[\"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-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-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\":[\"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\":\"validateAddress\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2019-10-01-preview\",\"2018-11-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.BingMaps\",\"namespace\":\"Microsoft.BingMaps\",\"resourceTypes\":[{\"resourceType\":\"mapApis\",\"locations\":[\"West US\"],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"None\"},{\"resourceType\":\"listCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"None\"},{\"resourceType\":\"updateCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"watchers\",\"locations\":[\"East US\",\"West Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"defaultApiVersion\":\"2019-06-01-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"blockchainMembers\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/watcherOperationResults\",\"locations\":[\"East US\",\"West Europe\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/blockchainMemberOperationResults\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/listConsortiums\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"cordaMembers\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"defaultApiVersion\":\"2018-06-01-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.Blueprint\",\"namespace\":\"Microsoft.Blueprint\",\"authorizations\":[{\"applicationId\":\"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\"roleDefinitionId\":\"cb180127-cf6d-4672-9e75-e29a487f9658\"}],\"resourceTypes\":[{\"resourceType\":\"blueprints\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"blueprints/artifacts\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprints/versions\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprints/versions/artifacts\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprintAssignments\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"SystemAssignedResourceIdentity, SupportsExtension\"},{\"resourceType\":\"blueprintAssignments/operations\",\"locations\":[],\"apiVersions\":[\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprintAssignments/assignmentOperations\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.BotService\",\"namespace\":\"Microsoft.BotService\",\"authorization\":{\"applicationId\":\"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\"roleDefinitionId\":\"71213c26-43ed-41d8-9905-3c12971517a3\"},\"resourceTypes\":[{\"resourceType\":\"botServices\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"botServices/channels\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"botServices/connections\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"listAuthServiceProviders\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Capacity\",\"namespace\":\"Microsoft.Capacity\",\"authorization\":{\"applicationId\":\"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\"roleDefinitionId\":\"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"},\"resourceTypes\":[{\"resourceType\":\"resourceProviders\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"2019-04-01-beta\",\"2019-04-01\",\"2018-06-01-beta\",\"2018-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"exchange\",\"locations\":[],\"apiVersions\":[\"2019-04-01-beta\",\"2019-04-01\",\"2018-06-01-beta\",\"2018-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"reservationOrders/calculateRefund\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\":[\"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\":[\"2019-04-01-beta\",\"2019-04-01\",\"2018-06-01-beta\",\"2018-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"validateReservationOrder\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ChangeAnalysis\",\"namespace\":\"Microsoft.ChangeAnalysis\",\"authorizations\":[{\"applicationId\":\"2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8\",\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[],\"capabilities\":\"None\"},{\"resourceType\":\"moveSubscriptionResources\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"validateSubscriptionMoveAvailability\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationStatuses\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operatingSystems\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operatingSystemFamilies\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2015-06-15\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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)\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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)\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\",\"2014-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"gatewaySupportedDevices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\"],\"defaultApiVersion\":\"2015-06-01\",\"capabilities\":\"SupportsLocation\"},{\"resourceType\":\"capabilities\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"expressRouteCrossConnections\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"expressRouteCrossConnections/peerings\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\",\"2014-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkStorageAccountAvailability\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/services/metricDefinitions\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/services/metrics\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/metricDefinitions\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/metrics\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"capabilities\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/blobServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/tableServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/fileServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/queueServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"disks\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"images\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[],\"capabilities\":\"None\"},{\"resourceType\":\"osImages\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"osPlatformImages\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2016-04-01-beta\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\",\"2014-04-01\",\"2014-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-07-10-privatepreview\",\"2020-07-10-beta\",\"2020-07-10-alpha\",\"2020-06-16-privatepreview\",\"2020-06-16-beta\",\"2020-06-16-alpha\",\"2020-06-16\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2020-07-10-privatepreview\",\"2020-07-10-beta\",\"2020-07-10-alpha\",\"2020-06-16-privatepreview\",\"2020-06-16-beta\",\"2020-06-16-alpha\",\"2020-06-16\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.ConnectedCache\",\"namespace\":\"Microsoft.ConnectedCache\",\"authorizations\":[],\"resourceTypes\":[{\"resourceType\":\"CacheNodes\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-12-04-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.CostManagement\",\"namespace\":\"Microsoft.CostManagement\",\"authorizations\":[{\"applicationId\":\"3184af01-7a88-49e0-8b55-8ecdce0aa950\"}],\"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\":\"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-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\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-02-28-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"requests\",\"locations\":[],\"apiVersions\":[\"2018-02-28-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"associations\",\"locations\":[\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2019-09-01\",\"2018-01-01\"],\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2019-09-01\",\"2018-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2019-09-01\",\"2018-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataBoxEdge\",\"namespace\":\"Microsoft.DataBoxEdge\",\"authorizations\":[{\"applicationId\":\"2368d027-f996-4edb-bf48-928f98f2ab8c\"}],\"resourceTypes\":[{\"resourceType\":\"DataBoxEdgeDevices\",\"locations\":[\"East US\",\"West Europe\",\"Southeast Asia\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"DataBoxEdgeDevices/checkNameAvailability\",\"locations\":[\"East US\",\"West Europe\",\"Southeast Asia\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"2020-07-01-preview\",\"2020-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"France Central\",\"UAE North\"],\"apiVersions\":[\"2018-04-01\"],\"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\"],\"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\"],\"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\",\"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\"],\"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\",\"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\",\"France Central\",\"UAE North\"],\"apiVersions\":[\"2018-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataCatalog\",\"namespace\":\"Microsoft.DataCatalog\",\"authorization\":{\"applicationId\":\"213f5f78-fb30-46c7-9e98-91c720a1c026\",\"roleDefinitionId\":\"D55E2225-A6AB-481C-A5BE-1B7687C293FA\"},\"resourceTypes\":[{\"resourceType\":\"catalogs\",\"locations\":[\"East US\",\"West US\",\"Australia East\",\"West Europe\",\"North Europe\",\"Southeast Asia\",\"West Central US\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"West Europe\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"West Europe\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/jobs\",\"locations\":[\"East US\",\"West US\",\"Australia East\",\"West Europe\",\"North Europe\",\"Southeast Asia\",\"West Central US\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataCollaboration\",\"namespace\":\"Microsoft.DataCollaboration\",\"authorization\":{\"applicationId\":\"2cc451ba-a8ec-496f-bdff-591f5ae2876c\",\"roleDefinitionId\":\"fdf757e9-19df-4152-a1ae-5e719161cd12\"},\"resourceTypes\":[{\"resourceType\":\"listinvitations\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consumerInvitations/reject\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consumerInvitations\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataFactory\",\"namespace\":\"Microsoft.DataFactory\",\"authorizations\":[{\"applicationId\":\"0947a342-ab4a-43be-93b3-b8243fc161e5\",\"roleDefinitionId\":\"f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da\"},{\"applicationId\":\"5d13f7d7-0567-429c-9880-320e9555e5fc\",\"roleDefinitionId\":\"956a8f20-9168-4c71-8e27-3c0460ac39a4\"}],\"resourceTypes\":[{\"resourceType\":\"dataFactories\",\"locations\":[\"West US\",\"North Europe\",\"East US\",\"West Central US\"],\"apiVersions\":[\"2015-10-01\",\"2015-09-01\",\"2015-08-01\",\"2015-07-01-preview\",\"2015-05-01-preview\",\"2015-01-01-preview\",\"2014-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"factories\",\"locations\":[\"East US\",\"East US 2\",\"Central US\",\"South Central US\",\"Japan East\",\"Canada Central\",\"Australia East\",\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01\",\"2017-09-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"factories/integrationRuntimes\",\"locations\":[\"East US\",\"East US 2\",\"West US 2\",\"West US\",\"Central US\",\"South Central US\",\"Japan East\",\"Central India\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Australia East\",\"Canada Central\",\"West Central US\",\"North Europe\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"East Asia\",\"North Central US\",\"South Africa North\",\"Australia Southeast\",\"East US 2 EUAP\"],\"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\",\"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\",\"East US 2 EUAP\"],\"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\",\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01\"],\"defaultApiVersion\":\"2018-06-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection\",\"namespace\":\"Microsoft.DataProtection\",\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"BackupVaults\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"ResourceOperationGateKeepers\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatus\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataShare\",\"namespace\":\"Microsoft.DataShare\",\"authorization\":{\"applicationId\":\"799f1985-1517-4fe1-af2b-ba3d87d4996b\",\"roleDefinitionId\":\"0146496b-e06f-439a-83be-49fac884edf5\"},\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"accounts/shares\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/datasets\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/synchronizationSettings\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/invitations\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/providersharesubscriptions\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions/datasetmappings\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions/triggers\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions/consumerSourceDataSets\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"listinvitations\",\"locations\":[\"East US 2\",\"East US\",\"Australia East\",\"Southeast Asia\",\"West US 2\",\"North Europe\",\"UK South\",\"West Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"East US 2\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\",\"2018-11-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West Central US\",\"West US 2\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/rejectInvitation\",\"locations\":[\"East US 2\",\"East US\",\"Australia East\",\"West US 2\",\"North Europe\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West Central US\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consumerInvitations\",\"locations\":[\"East US 2\",\"East US\",\"Australia East\",\"West US 2\",\"North Europe\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West Central US\",\"South Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-11-01\",\"2018-11-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\",\"2018-06-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/recoverableServers\",\"locations\":[\"Australia Central\",\"Australia Central 2\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"Central India\",\"East Asia\",\"East US 2\",\"East US\",\"France Central\",\"France South\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Norway East\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"servers/keys\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-01-preview\",\"2018-09-01-preview\"],\"defaultApiVersion\":\"2018-09-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-09-01-preview\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2019-11-01-preview\",\"2018-09-01-preview\"],\"defaultApiVersion\":\"2018-09-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-09-01-preview\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"global\"],\"apiVersions\":[\"2019-11-01-preview\",\"2018-09-01-preview\"],\"defaultApiVersion\":\"2018-09-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-09-01-preview\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationgroups\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationgroups/applications\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"applicationgroups/desktops\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"applicationgroups/startmenuitems\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"hostpools\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"hostpools/sessionhosts\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"hostpools/sessionhosts/usersessions\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"hostpools/usersessions\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-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-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-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-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"2018-01-22\",\"2017-07-01\",\"2017-01-19\",\"2016-02-03\",\"2015-08-15-preview\"],\"defaultApiVersion\":\"2020-01-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-04-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"IotHubs/eventGridFilters\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Central US\",\"East US 2\",\"Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"UK South\",\"UK West\",\"South India\",\"Central India\",\"Canada Central\",\"Canada East\",\"Brazil South\",\"South Central US\",\"Korea South\",\"Korea Central\",\"France Central\",\"North Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-03-01\",\"2020-01-01\",\"2018-01-22\",\"2017-11-15\",\"2017-08-21-preview\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"IotHubs/securitySettings\",\"locations\":[\"West US\",\"North Europe\",\"East Asia\",\"East US\",\"West Europe\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"West US 2\",\"West Central US\",\"East US 2\",\"Central US\",\"UK South\",\"UK West\",\"South India\",\"Central India\",\"Canada Central\",\"Canada East\",\"Brazil South\",\"South Central US\",\"Korea South\",\"Korea Central\",\"France Central\",\"North Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"ElasticPools\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-07-01-preview\",\"2019-03-22-preview\",\"2018-12-01-preview\",\"2018-01-22-preview\",\"2017-09-25-preview\",\"2017-07-01\"],\"defaultApiVersion\":\"2018-01-22-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"ElasticPools/IotHubTenants\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-07-01-preview\",\"2019-03-22-preview\",\"2018-01-22-preview\",\"2017-09-25-preview\",\"2017-07-01\"],\"defaultApiVersion\":\"2018-01-22-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DevOps\",\"namespace\":\"Microsoft.DevOps\",\"authorization\":{\"applicationId\":\"499b84ac-1321-427f-aa17-267ca6975798\",\"roleDefinitionId\":\"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"},\"resourceTypes\":[{\"resourceType\":\"pipelines\",\"locations\":[\"East Asia\",\"Southeast Asia\",\"Australia East\",\"Brazil South\",\"Canada Central\",\"Japan East\",\"Japan West\",\"North Europe\",\"West Europe\",\"West India\",\"Central India\",\"South India\",\"Central US\",\"East US\",\"East US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"UK South\",\"West US\",\"West US 2\"],\"apiVersions\":[\"2019-07-01-preview\"],\"defaultApiVersion\":\"2019-07-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DevSpaces\",\"namespace\":\"Microsoft.DevSpaces\",\"resourceTypes\":[{\"resourceType\":\"controllers\",\"locations\":[\"East US\",\"Canada East\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"controllers/listConnectionDetails\",\"locations\":[\"East US\",\"Canada East\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US\",\"Canada East\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"East US\",\"Canada East\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"East US\",\"Canada East\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkContainerHostMapping\",\"locations\":[\"East US\",\"Canada East\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DigitalTwins\",\"namespace\":\"Microsoft.DigitalTwins\",\"authorizations\":[{\"applicationId\":\"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"},{\"applicationId\":\"c115998b-3d59-49b4-b55b-042a9ba1dbfe\",\"roleDefinitionId\":\"07af60d1-cd6d-4ad4-9b56-ece6c78a3fe1\"}],\"resourceTypes\":[{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"digitalTwinsInstances\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"digitalTwinsInstances/operationResults\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"digitalTwinsInstances/endpoints\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"West Central US\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2018-12-03\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptionFeatureRegistrations\",\"locations\":[],\"apiVersions\":[\"2020-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2015-12-01\",\"2014-08-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Japan West\",\"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\":[\"2017-11-03-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\"],\"apiVersions\":[\"2019-09-16\",\"2018-08-20-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-09-16\",\"2018-08-20-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-03-30\",\"2019-09-16\",\"2018-08-20-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HybridCompute\",\"namespace\":\"Microsoft.HybridCompute\",\"authorizations\":[{\"applicationId\":\"8c420feb-03df-47cc-8a05-55df0cf3064b\",\"roleDefinitionId\":\"83eeb1c6-47f8-4da2-bbc3-42a7ac767360\"}],\"resourceTypes\":[{\"resourceType\":\"machines\",\"locations\":[\"West US 2\",\"West Europe\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\",\"2019-03-18-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"machines/extensions\",\"locations\":[\"West Europe\",\"West US 2\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[\"West Europe\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatus\",\"locations\":[\"West Europe\",\"West US 2\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"West Europe\",\"West US 2\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\",\"2019-03-18-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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/00000000-0000-0000-0000-000000000000/providers/Microsoft.HybridNetwork\",\"namespace\":\"Microsoft.HybridNetwork\",\"authorizations\":[{\"applicationId\":\"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\"roleDefinitionId\":\"b193432e-9b7e-4885-b2c0-052afdceace3\"}],\"resourceTypes\":[{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"East US 2 EUAP\",\"West Central US\"],\"apiVersions\":[\"2020-01-01-preview\",\"2019-10-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Hydra\",\"namespace\":\"Microsoft.Hydra\",\"authorizations\":[{\"applicationId\":\"37ae09d4-a310-41e1-803d-8e85cec4bf23\",\"roleDefinitionId\":\"37ae09d4-a310-41e1-803d-8e85cec4bf23\"}],\"resourceTypes\":[{\"resourceType\":\"locations\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-08-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-08-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-11-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.IoTSpaces\",\"namespace\":\"Microsoft.IoTSpaces\",\"authorizations\":[{\"applicationId\":\"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"}],\"resourceTypes\":[{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"North Europe\",\"West Europe\",\"Australia East\",\"West US 2\",\"East US\"],\"apiVersions\":[\"2017-10-01-preview\"],\"defaultApiVersion\":\"2017-10-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"Graph\",\"locations\":[\"North Europe\",\"West Europe\",\"Australia East\",\"West US 2\",\"East US\"],\"apiVersions\":[\"2017-10-01-preview\"],\"defaultApiVersion\":\"2017-10-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2017-10-01-preview\"],\"defaultApiVersion\":\"2017-10-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kubernetes\",\"namespace\":\"Microsoft.Kubernetes\",\"authorizations\":[{\"applicationId\":\"64b12d6e-6549-484c-8cc6-6281839ba394\",\"roleDefinitionId\":\"1d1d44cf-68a1-4def-a2b6-cd7efc3515af\"}],\"resourceTypes\":[{\"resourceType\":\"connectedClusters\",\"locations\":[\"East US\",\"West Europe\"],\"apiVersions\":[\"2020-01-01-preview\",\"2019-11-01-preview\",\"2019-09-01-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatuses\",\"locations\":[\"East US 2 EUAP\",\"West Europe\",\"East US\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\",\"2019-11-01-preview\",\"2019-09-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"sourceControlConfigurations\",\"locations\":[\"East US\",\"West Europe\"],\"apiVersions\":[\"2019-11-01-preview\"],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"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-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\":\"2019-05-15\",\"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\"]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"clusters/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\",\"France South\",\"Germany West Central\",\"Japan East\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/attacheddatabaseconfigurations\",\"locations\":[\"Australia Central\",\"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\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/principalassignments\",\"locations\":[\"Australia Central\",\"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\",\"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-06-14\",\"2020-02-15\",\"2019-11-09\"],\"defaultApiVersion\":\"2019-11-09\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/databases/eventhubconnections\",\"locations\":[\"Australia Central\",\"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\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/databases/dataconnections\",\"locations\":[\"Australia Central\",\"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\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/databases/principalassignments\",\"locations\":[\"Australia Central\",\"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\",\"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-06-14\",\"2020-02-15\",\"2019-11-09\"],\"defaultApiVersion\":\"2019-11-09\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/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\",\"France South\",\"Germany West Central\",\"Japan East\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/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\",\"France South\",\"Germany West Central\",\"Japan East\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\":\"2019-05-15\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-01-01-preview\",\"2018-10-15\",\"2017-12-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2017-01-01\",\"2016-05-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"Canada Central\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/computes\",\"locations\":[\"North Central US\",\"Canada Central\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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/eventGridFilters\",\"locations\":[\"North Central US\",\"Canada Central\",\"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\",\"East US 2 EUAP\",\"West India\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"operations\",\"locations\":[\"East US 2\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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/usages\",\"locations\":[\"North Central US\",\"Canada Central\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-04-01\",\"2018-10-01\",\"2018-06-01-preview\",\"2017-04-26\",\"2017-01-01\",\"2016-01-01\"],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ManagedServices\",\"namespace\":\"Microsoft.ManagedServices\",\"authorization\":{\"applicationId\":\"66c6d0d1-f2e7-4a18-97a9-ed10f3347016\",\"roleDefinitionId\":\"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2\"},\"resourceTypes\":[{\"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\":\"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\":\"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/00000000-0000-0000-0000-000000000000/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-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-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-05-01\",\"2020-02-01\",\"2018-03-01-beta\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"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-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-05-01\",\"2020-02-01\",\"2019-11-01\",\"2018-03-01-beta\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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-05-01\",\"2020-02-01\",\"2019-11-01\",\"2018-03-01-preview\",\"2018-03-01-beta\"],\"capabilities\":\"None\"},{\"resourceType\":\"startTenantBackfill\",\"locations\":[],\"apiVersions\":[\"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/00000000-0000-0000-0000-000000000000/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\"],\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Marketplace\",\"namespace\":\"Microsoft.Marketplace\",\"authorizations\":[{\"applicationId\":\"a0e1e353-1a3e-42cf-a8ea-3a9746eec58c\"},{\"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\":\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering\",\"namespace\":\"Microsoft.MarketplaceOrdering\",\"resourceTypes\":[{\"resourceType\":\"agreements\",\"locations\":[\"South Central US\",\"West US\"],\"apiVersions\":[\"2015-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2015-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"offertypes\",\"locations\":[\"South Central US\",\"West US\"],\"apiVersions\":[\"2015-06-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"2018-07-01\"],\"defaultApiVersion\":\"2018-07-01\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"2018-07-01\",\"2018-06-01-preview\",\"2018-03-30-preview\"],\"defaultApiVersion\":\"2018-07-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2019-06-01\",\"2018-09-01-preview\"],\"capabilities\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-10-01\",\"2019-05-01\",\"2018-06-30-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"West Central US\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-02-02\",\"2017-11-11-preview\",\"2017-09-25-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"moveCollections\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\",\"North Europe\",\"South Central US\",\"Southeast Asia\",\"UK South\",\"West Europe\",\"West US 2\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-06-preview\",\"2019-12-02-preview\",\"2019-02-28-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\",\"North Europe\",\"West Europe\",\"South Central US\",\"UK South\",\"Southeast Asia\"],\"apiVersions\":[\"2020-05-01\",\"2019-12-02-preview\",\"2019-02-28-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"remoteRenderingAccounts\",\"locations\":[\"East US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US 2\"],\"apiVersions\":[\"2020-04-06-preview\",\"2019-12-02-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp\",\"namespace\":\"Microsoft.NetApp\",\"authorizations\":[{\"applicationId\":\"12fb057d-b751-47cd-857c-f2934bb677b4\",\"roleDefinitionId\":\"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East US\",\"East US 2\",\"Germany North\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"North Europe\",\"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)\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\"},{\"resourceType\":\"locations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"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-15-preview\",\"2019-07-01\",\"2019-06-01\",\"2019-05-01\",\"2017-08-15\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"2017-04-01\",\"2016-03-01\",\"2014-09-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-01\",\"2020-01-01-preview\",\"2019-05-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"Southeast Asia\"],\"apiVersions\":[\"2020-01-01\",\"2019-06-06\",\"2018-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-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-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-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-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-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-04-01\",\"2020-01-01-preview\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"None\"},{\"resourceType\":\"peeringServiceLocations\",\"locations\":[],\"apiVersions\":[\"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-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-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-04-01\",\"2020-01-01-preview\",\"2019-09-01-preview\",\"2019-08-01-preview\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2019-01-01-preview\",\"2018-10-01-preview\",\"2015-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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/00000000-0000-0000-0000-000000000000/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/operationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-06-01\"],\"defaultApiVersion\":\"2020-06-01\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2016-01-29\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.PowerBIDedicated\",\"namespace\":\"Microsoft.PowerBIDedicated\",\"authorization\":{\"applicationId\":\"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\"roleDefinitionId\":\"490d5987-bcf6-4be6-b6b2-056a78cb693a\"},\"resourceTypes\":[{\"resourceType\":\"capacities\",\"locations\":[\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"UAE North\",\"UAE Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"UAE North\",\"UAE Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"UAE North\",\"UAE Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"UAE North\",\"UAE Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2\"],\"apiVersions\":[\"2018-09-01-preview\",\"2017-10-01\",\"2017-01-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.PowerPlatform\",\"namespace\":\"Microsoft.PowerPlatform\",\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ProjectBabylon\",\"namespace\":\"Microsoft.ProjectBabylon\",\"authorizations\":[{\"applicationId\":\"73c2949e-da2d-457a-9607-fcc665198967\",\"roleDefinitionId\":\"1BC09725-0C9B-4F57-A3D0-FCCF4EB40120\"}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"defaultApiVersion\":\"2019-10-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ProviderHub\",\"namespace\":\"Microsoft.ProviderHub\",\"resourceTypes\":[{\"resourceType\":\"providerRegistrations\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationStatuses\",\"locations\":[],\"apiVersions\":[\"2019-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"providerRegistrations/resourceTypeRegistrations\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"providerRegistrations/defaultRollouts\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"rollouts\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"availableAccounts\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\",\"2018-11-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Quantum\",\"namespace\":\"Microsoft.Quantum\",\"authorizations\":[{\"applicationId\":\"a77d91dc-971b-4cf7-90c8-f183194249bc\",\"roleDefinitionId\":\"915bd376-2da8-411d-9906-895a54086a66\"}],\"resourceTypes\":[{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Locations\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Locations/OperationStatuses\",\"locations\":[\"West US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Workspaces\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-04-preview\"],\"defaultApiVersion\":\"2019-11-04-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/offerings\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"East US\",\"East US 2\",\"France Central\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Central US\",\"Southeast Asia\",\"Switzerland North\",\"UK South\",\"UK West\",\"West Europe\",\"West US 2\",\"West US\"],\"apiVersions\":[\"2020-04-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationsstatus\",\"locations\":[\"Australia East\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"East US\",\"East US 2\",\"France Central\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Central US\",\"Southeast Asia\",\"Switzerland North\",\"UK South\",\"UK West\",\"West Europe\",\"West US 2\",\"West US\"],\"apiVersions\":[\"2020-04-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"OpenShiftClusters\",\"locations\":[\"Australia East\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"East US\",\"East US 2\",\"France Central\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Central US\",\"Southeast Asia\",\"Switzerland North\",\"UK South\",\"UK West\",\"West Europe\",\"West US 2\",\"West US\"],\"apiVersions\":[\"2020-04-30\"],\"defaultApiVersion\":\"2020-04-30\",\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-04-30\",\"2019-12-31-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"East US 2 EUAP\"],\"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\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"namespaces/hybridconnections/authorizationrules\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"namespaces/wcfrelays\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"namespaces/wcfrelays/authorizationrules\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-04-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\"],\"defaultApiVersion\":\"2017-04-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-04-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-04-01-preview\",\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"resourceChanges\",\"locations\":[\"East US\"],\"apiVersions\":[\"2020-04-01-preview\",\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"resourceChangeDetails\",\"locations\":[\"East US\"],\"apiVersions\":[\"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/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"SupportsLocation\"},{\"resourceType\":\"subscriptions/resourceGroups\",\"locations\":[\"Central US\",\"East Asia\",\"Southeast Asia\",\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"North Europe\",\"West Europe\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia Southeast\",\"Australia East\",\"West India\",\"South India\",\"Central India\",\"Canada Central\",\"Canada East\",\"UK South\",\"UK West\",\"Korea Central\",\"Korea South\",\"France Central\",\"South Africa North\",\"UAE North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"subscriptions/resourcegroups/resources\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions/locations\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2016-06-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions/tagnames\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions/tagNames/tagValues\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"deployments\",\"locations\":[],\"apiVersions\":[\"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-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\":\"deploymentScripts\",\"locations\":[\"East Asia\",\"Southeast Asia\",\"Australia East\",\"Brazil South\",\"Canada Central\",\"East US 2\",\"East US\",\"Central US\",\"North Central US\",\"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\",\"Canada East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Canada East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Canada East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-03-01\",\"2016-01-01\",\"2014-08-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"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\":[\"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\":\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole\",\"namespace\":\"Microsoft.SerialConsole\",\"resourceTypes\":[{\"resourceType\":\"consoleServices\",\"locations\":[],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consoleServices\",\"locations\":[\"West US 2\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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-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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2018-09-01-preview\",\"2018-07-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networks\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"South Central US\",\"Central US\",\"France Central\",\"West Europe\",\"North Europe\",\"UK South\",\"UK West\",\"Australia East\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"West India\",\"Brazil South\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"2018-09-01-preview\",\"2018-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServicesHub\",\"namespace\":\"Microsoft.ServicesHub\",\"authorizations\":[],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-08-15-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"2019-07-01\",\"2018-09-01-preview\",\"2018-06-01\",\"2018-03-01\",\"2018-02-01\",\"2017-12-01\",\"2017-09-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-03-01-preview\"],\"defaultApiVersion\":\"2017-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"Locations/registerSqlVmCandidate\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-03-01-preview\"],\"defaultApiVersion\":\"2017-03-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\":[],\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"2020-03-01\"],\"defaultApiVersion\":\"2020-03-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"2016-10-01\",\"2016-06-01\",\"2015-03-15\",\"2014-09-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"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\":\"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\"],\"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\"],\"apiVersions\":[\"2019-06-01\",\"2018-11-01\",\"2017-04-01-preview\",\"2016-03-01\",\"2015-11-01\",\"2015-10-01\",\"2015-09-01\",\"2015-08-01-preview\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"2019-10-01-preview\",\"2019-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"rename\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-10-01-preview\",\"2019-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"enable\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-10-01-preview\",\"2019-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"Central US\"],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/bigDataPools\",\"locations\":[\"West US 2\",\"East US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"West Central US\",\"South Central US\",\"East US 2\",\"UK South\",\"West US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/sqlPools\",\"locations\":[\"West US 2\",\"East US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"West Central US\",\"South Central US\",\"East US 2\",\"UK South\",\"West US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"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\",\"EAST US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\"],\"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\":[\"France Central\",\"South Central Us\",\"East US 2\",\"West US\",\"East US\",\"East US 2 EUAP\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"Australia Southeast\",\"East Asia\",\"UK West\",\"UK South\",\"West US 2\",\"Central US\",\"West Central US\",\"North Central US\"],\"apiVersions\":[\"2017-02-28-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Token\",\"namespace\":\"Microsoft.Token\",\"authorizations\":[{\"applicationId\":\"fe053c5f-3692-4f14-aef2-ee34fc081cae\"}],\"resourceTypes\":[{\"resourceType\":\"stores\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"stores/accessPolicies\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"stores/services\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"stores/services/tokens\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-14\",\"2019-05-01-preview\",\"2019-02-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VMware\",\"namespace\":\"Microsoft.VMware\",\"authorizations\":[{\"applicationId\":\"ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7\",\"roleDefinitionId\":\"dd032bd9-65cc-4171-b688-c612566422ae\"}],\"resourceTypes\":[{\"resourceType\":\"Locations\",\"locations\":[],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Locations/OperationStatuses\",\"locations\":[\"East US\",\"West US\",\"East US 2 EUAP\",\"West Europe\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"ArcZones\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VCenters\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"ResourcePools\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VirtualNetworks\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VirtualMachineTemplates\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VirtualMachines\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VMwareCloudSimple\",\"namespace\":\"Microsoft.VMwareCloudSimple\",\"authorizations\":[{\"applicationId\":\"d96199e7-4674-4bbf-a1c6-ddf93682f5ee\",\"roleDefinitionId\":\"533012ca-a3e7-44e4-93b4-3143f8b9409d\",\"allowedThirdPartyExtensions\":[{\"name\":\"CloudSimpleExtension\"}]}],\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dedicatedCloudNodes\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dedicatedCloudServices\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/availabilities\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds/virtualNetworks\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds/virtualMachineTemplates\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds/resourcePools\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VnfManager\",\"namespace\":\"Microsoft.VnfManager\",\"authorizations\":[{\"applicationId\":\"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\"roleDefinitionId\":\"c8d69fc0-f0ed-43b3-bf1d-4dfdaacc6d2d\"}],\"resourceTypes\":[{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"East US\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"East US\",\"North Europe\",\"East Asia\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"devices\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"vnfs\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"vendors/vnfs\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-05-26-privatepreview\",\"2020-05-26-preview\",\"2020-05-26-beta\",\"2020-05-26-alpha\",\"2019-07-01-privatepreview\",\"2019-07-01-preview\",\"2019-07-01-beta\",\"2019-07-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2020-05-26-privatepreview\",\"2020-05-26-preview\",\"2020-05-26-beta\",\"2020-05-26-alpha\",\"2019-07-01-privatepreview\",\"2019-07-01-preview\",\"2019-07-01-beta\",\"2019-07-01-alpha\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.WindowsIoT\",\"namespace\":\"Microsoft.WindowsIoT\",\"resourceTypes\":[{\"resourceType\":\"DeviceServices\",\"locations\":[\"West US\",\"East US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01\",\"2018-02-16-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"West US\",\"East US\",\"West Central US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01\",\"2018-02-16-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.WorkloadBuilder\",\"namespace\":\"Microsoft.WorkloadBuilder\",\"authorizations\":[{\"applicationId\":\"63c2c773-89fe-4164-a02f-b8c7fc1772ae\",\"roleDefinitionId\":\"322358fa-ea51-4f6c-b9d6-3be64015f074\"}],\"resourceTypes\":[{\"resourceType\":\"Locations\",\"locations\":[],\"apiVersions\":[\"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\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workloads\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workloads/versions/artifacts\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workloads/versions\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workloads/instances\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.WorkloadMonitor\",\"namespace\":\"Microsoft.WorkloadMonitor\",\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"componentsSummary\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"monitorInstancesSummary\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"monitorInstances\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"components\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"monitors\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"notificationSettings\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Sendgrid.Email\",\"namespace\":\"Sendgrid.Email\",\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"France South\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"UAE Central\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\"],\"apiVersions\":[\"2015-01-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"France South\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"UAE Central\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\"],\"apiVersions\":[\"2015-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/stackify.retrace\",\"namespace\":\"stackify.retrace\",\"resourceTypes\":[{\"resourceType\":\"services\",\"locations\":[\"West US\"],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"listCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"updateCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Wandisco.Fusion\",\"namespace\":\"Wandisco.Fusion\",\"authorizations\":[{\"applicationId\":\"37b36496-3f4f-443a-a406-5e0a0535f6a3\",\"roleDefinitionId\":\"b10cdc1f-fd21-4fe9-bae7-7e2e25a91a21\"}],\"resourceTypes\":[{\"resourceType\":\"Locations\",\"locations\":[\"East US\"],\"apiVersions\":[\"2019-10-01\",\"2019-09-01-preview\"],\"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\":[\"2019-10-01\",\"2019-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2019-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ProjectArcadia\",\"namespace\":\"Microsoft.ProjectArcadia\",\"authorizations\":[{\"applicationId\":\"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b\",\"roleDefinitionId\":\"a53b114a-452b-4d20-bcd6-c51c3c8c5878\"},{\"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\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/sparkComputes\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/sqlComputes\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/operationStatus\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/operationResults\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"EAST US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"EAST US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SecurityDetonation\",\"namespace\":\"Microsoft.SecurityDetonation\",\"authorizations\":[{\"applicationId\":\"29820072-374d-49b8-945a-3941d7e9b468\",\"roleDefinitionId\":\"4ddf1807-30b0-464a-9d16-a8822daf866b\"}],\"resourceTypes\":[{\"resourceType\":\"chambers\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"}]}" - } + "Date" : "Tue, 11 Aug 2020 09:58:39 GMT", + "x-ms-correlation-request-id" : "c9c02d53-b415-40e3-b4b1-17286f424073", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095840Z:c9c02d53-b415-40e3-b4b1-17286f424073", + "Expires" : "-1", + "Content-Length" : "964783", + "x-ms-request-id" : "c9c02d53-b415-40e3-b4b1-17286f424073", + "Body" : "{\"value\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"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\",\"Central US\",\"Canada Central\",\"Canada East\",\"UK South\",\"West US\",\"West US 2\",\"Australia East\",\"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\",\"Germany North\",\"Switzerland North\",\"Switzerland West\",\"Germany West Central\",\"UAE North\",\"UAE Central\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"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 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\",\"Germany North\",\"Germany West Central\",\"Switzerland North\",\"Switzerland West\",\"UAE North\",\"UAE Central\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-08-31\",\"2016-03-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operations\",\"locations\":[\"France Central\",\"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 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\",\"Germany North\",\"Germany West Central\",\"Switzerland North\",\"Switzerland West\",\"UAE North\",\"UAE Central\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US\",\"Canada East\",\"Canada Central\",\"UK South\",\"UK West\",\"West Central US\",\"West US\",\"West US 2\",\"Australia East\",\"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\",\"Germany North\",\"Germany West Central\",\"Switzerland North\",\"Switzerland West\",\"UAE North\",\"UAE Central\",\"Norway East\",\"Norway West\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-preview\",\"2015-05-01-preview\",\"2015-01-01\",\"2014-04-01-preview\",\"2014-04-01\",\"2014-01-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/serviceObjectives\",\"locations\":[\"Australia Central\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"Norway East\",\"South Africa North\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-preview\",\"2015-09-01-preview\",\"2015-05-01-preview\",\"2015-05-01\",\"2014-04-01-preview\",\"2014-04-01\",\"2014-01-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/jobAccounts\",\"locations\":[\"Australia Central\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"Norway East\",\"South Africa North\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-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, 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2019-06-01-preview\",\"2018-06-01-preview\",\"2017-10-01-preview\",\"2017-03-01-preview\",\"2015-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\",\"2019-06-01\",\"2018-06-30\",\"2018-01-15\",\"2017-05-15-preview\",\"2015-10-31\",\"2015-01-01-preview\"],\"defaultApiVersion\":\"2018-06-30\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"automationAccounts/runbooks\",\"locations\":[\"Japan East\",\"East US 2\",\"West Europe\",\"South Africa North\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\"],\"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\":[\"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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"automationAccounts/privateEndpointConnections\",\"locations\":[\"Japan East\",\"East US 2\",\"West Europe\",\"South Africa North\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"automationAccounts/privateEndpointConnectionProxies\",\"locations\":[\"Japan East\",\"East US 2\",\"West Europe\",\"South Africa North\",\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-01-13-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"Redis/privateLinkResources\",\"locations\":[\"Australia Southeast\",\"Switzerland North\",\"Germany West Central\"],\"apiVersions\":[\"2020-06-01\",\"2019-07-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"West Europe\",\"West US\",\"East US 2\",\"West US 2\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"defaultApiVersion\":\"2020-04-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2020-04-01-preview\"}],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-07-01\",\"2018-03-01\",\"2017-10-01\",\"2017-02-01\",\"2016-04-01\",\"2015-08-01\",\"2015-03-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\":\"2018-11-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"publicIPAddresses\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkInterfaces\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"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\":\"2019-02-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateEndpointRedirectMaps\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"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\":\"2019-07-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkSecurityGroups\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationSecurityGroups\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"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\":\"2018-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\":\"2018-04-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"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\":\"2018-07-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"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\":\"2018-10-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkWatchers/flowLogs\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2019-07-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2018-01-01\",\"2017-11-01\",\"2017-10-01\",\"2017-09-01\"],\"defaultApiVersion\":\"2017-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"virtualNetworkGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-03-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"localNetworkGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2015-06-15\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-03-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2017-10-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2018-12-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationGatewayWebApplicationFirewallPolicies\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"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\":\"2018-12-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"2018-05-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2018-01-01\",\"2017-11-01\",\"2017-10-01\",\"2017-09-01\",\"2017-08-01\",\"2017-06-01\",\"2017-04-01\",\"2017-03-01\",\"2016-12-01\",\"2016-11-01\",\"2016-10-01\",\"2016-09-01\",\"2016-08-01\",\"2016-07-01\",\"2016-06-01\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\",\"2014-12-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"dnszones\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-04-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-04-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2016-04-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dnsOperationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnsOperationStatuses\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"getDnsResourceReference\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"internalNotify\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/A\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/AAAA\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/CNAME\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/PTR\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/MX\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/TXT\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/SRV\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/SOA\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/NS\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/CAA\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/recordsets\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"dnszones/all\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01-preview\",\"2017-10-01\",\"2017-09-15-preview\",\"2017-09-01\",\"2016-04-01\",\"2015-05-04-preview\"],\"defaultApiVersion\":\"2018-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateDnsZones/virtualNetworkLinks\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateDnsOperationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsOperationStatuses\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZonesInternal\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/A\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/AAAA\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/CNAME\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/PTR\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/MX\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/TXT\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/SRV\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/SOA\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"privateDnsZones/all\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-01-01\",\"2018-09-01\"],\"defaultApiVersion\":\"2018-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"trafficmanagerprofiles\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-05-01\",\"2017-03-01\",\"2015-11-01\",\"2015-04-28-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"trafficmanagerprofiles/heatMaps\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-09-01-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"checkTrafficManagerNameAvailability\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-05-01\",\"2017-03-01\",\"2015-11-01\",\"2015-04-28-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"trafficManagerUserMetricsKeys\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2017-09-01-preview\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"trafficManagerGeographicHierarchies\",\"locations\":[\"global\"],\"apiVersions\":[\"2018-08-01\",\"2018-04-01\",\"2018-03-01\",\"2018-02-01\",\"2017-05-01\",\"2017-03-01\"],\"defaultApiVersion\":\"2018-08-01\",\"capabilities\":\"None\"},{\"resourceType\":\"expressRouteCircuits\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"expressRouteServiceProviders\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2016-12-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"bgpServiceCommunities\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-09-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"2019-08-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-11-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"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\":\"2017-11-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"p2sVpnGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"UAE North\",\"South Africa North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2019-08-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"expressRouteGateways\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2018-08-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"ipGroups\",\"locations\":[\"UAE North\",\"Australia Central 2\",\"UAE Central\",\"Germany North\",\"Central India\",\"Korea South\",\"Switzerland North\",\"Switzerland West\",\"Japan West\",\"France South\",\"South Africa West\",\"West India\",\"Canada East\",\"South India\",\"Germany West Central\",\"Norway East\",\"Norway West\",\"South Africa North\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"Brazil South\",\"Japan East\",\"UK West\",\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"South Central US\",\"Australia East\",\"Australia Central\",\"Australia Southeast\",\"UK South\",\"East US 2\",\"West US 2\",\"North Central US\",\"Canada Central\",\"France Central\",\"West Central US\",\"Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"2019-08-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/nfvOperations\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"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-05-01\",\"2020-04-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"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\":\"2018-04-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"azureFirewallFqdnTags\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2018-08-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"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\":\"2018-08-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"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\":\"2018-02-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"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\":\"2018-05-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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-05-01\",\"2020-01-01\",\"2019-08-01\",\"2019-05-01\",\"2019-04-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"None\"},{\"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-04-01\",\"2019-10-01\",\"2019-03-01\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"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\":\"2018-10-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"virtualRouters\",\"locations\":[\"UAE North\",\"Australia Central 2\",\"UAE Central\",\"Germany North\",\"Central India\",\"Korea South\",\"Switzerland North\",\"Switzerland West\",\"Japan West\",\"France South\",\"South Africa West\",\"West India\",\"Canada East\",\"South India\",\"Germany West Central\",\"Norway East\",\"Norway West\",\"South Africa North\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"Brazil South\",\"Japan East\",\"UK West\",\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"West Central US\",\"South Central US\",\"Australia East\",\"Australia Central\",\"Australia Southeast\",\"UK South\",\"East US 2\",\"West US 2\",\"North Central US\",\"Canada Central\",\"France Central\",\"Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"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\":\"2019-07-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkVirtualAppliances\",\"locations\":[\"UAE North\",\"Australia Central 2\",\"UAE Central\",\"Germany North\",\"Central India\",\"Korea South\",\"Switzerland North\",\"Switzerland West\",\"Japan West\",\"France South\",\"South Africa West\",\"West India\",\"Canada East\",\"South India\",\"Germany West Central\",\"Norway East\",\"Norway West\",\"South Africa North\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"Brazil South\",\"Japan East\",\"UK West\",\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"West Central US\",\"South Central US\",\"Australia East\",\"Australia Central\",\"Australia Southeast\",\"UK South\",\"East US 2\",\"West US 2\",\"North Central US\",\"Canada Central\",\"France Central\",\"Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\"],\"defaultApiVersion\":\"2019-12-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"ipAllocations\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"North Central US\",\"South Central US\",\"Central US\",\"East US 2\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"West US 2\",\"UK West\",\"UK South\",\"Korea Central\",\"Korea South\",\"France Central\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/commitInternalAzureNetworkManagerConfiguration\",\"locations\":[\"West Central US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2019-12-01\",\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"networkVirtualApplianceSkus\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\"],\"defaultApiVersion\":\"2020-03-01\",\"capabilities\":\"None\"},{\"resourceType\":\"networkWatchers/lenses\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-01\",\"2020-03-01\",\"2020-01-01\",\"2019-12-01\",\"2019-11-01\",\"2019-09-01\",\"2019-08-01\",\"2019-07-01\",\"2019-06-01\",\"2019-04-01\",\"2019-02-01\",\"2018-12-01\",\"2018-11-01\",\"2018-10-01\",\"2018-08-01\",\"2018-07-01\",\"2018-06-01\",\"2018-01-01\",\"2017-11-01\",\"2017-10-01\",\"2017-09-01\"],\"defaultApiVersion\":\"2017-09-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"frontdoorOperationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"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-04-01\",\"capabilities\":\"None\"},{\"resourceType\":\"frontdoors\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\",\"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-05-01\",\"2020-04-01\",\"2020-01-01\",\"2019-08-01\",\"2019-05-01\",\"2019-04-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"frontdoors/frontendEndpoints\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\",\"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-05-01\",\"2020-04-01\",\"2020-01-01\",\"2019-08-01\",\"2019-05-01\",\"2019-04-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"None\"},{\"resourceType\":\"frontdoorWebApplicationFirewallPolicies\",\"locations\":[\"East US 2 EUAP\",\"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-04-01\",\"2019-10-01\",\"2019-03-01\",\"2018-08-01\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"networkExperimentProfiles\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\",\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"staticSites\",\"locations\":[\"West US 2\",\"Central US\",\"East US 2\",\"West Europe\",\"East Asia\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-08-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01-preview\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sites/slots\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"2019-08-01\",\"2018-11-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-08-01\",\"2016-03-01\",\"2015-11-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2015-01-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01-preview\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2016-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"runtimes\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\",\"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\",\"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 US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"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\"],\"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\":[\"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\",\"UK South\",\"Southeast Asia\",\"North Europe\",\"Japan East\",\"West Europe\",\"East Asia\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]}],\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"hostingEnvironments/workerPools\",\"locations\":[\"South Central US\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"South Africa North\",\"East Asia\",\"Japan East\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2018-11-01\",\"2018-08-01\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"kubeEnvironments\",\"locations\":[\"North Central US (Stage)\"],\"apiVersions\":[\"2019-08-01\",\"2019-02-01\",\"2019-01-01\",\"2018-11-01\",\"2018-08-01\",\"2018-05-01-preview\",\"2018-02-01\",\"2017-08-01\",\"2016-09-01\",\"2016-03-01\",\"2015-08-01\",\"2015-07-01\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\",\"2015-02-01\",\"2014-11-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-09-01\"},{\"profileVersion\":\"2018-03-01-hybrid\",\"apiVersion\":\"2017-08-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-02-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"deploymentLocations\",\"locations\":[\"Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Korea Central\",\"Korea South\",\"West US\",\"East US\",\"Japan West\",\"Japan East\",\"East Asia\",\"East US 2\",\"North Central US\",\"South Central US\",\"Brazil South\",\"Australia East\",\"Australia Southeast\",\"West India\",\"Central India\",\"South India\",\"Canada Central\",\"Canada East\",\"West Central US\",\"UK West\",\"UK South\",\"West US 2\",\"MSFT West US\",\"MSFT East US\",\"MSFT East Asia\",\"MSFT North Europe\",\"East US 2 (Stage)\",\"Central US (Stage)\",\"North Central US (Stage)\",\"France Central\",\"South Africa North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"],\"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\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\",\"West US\",\"East US\"],\"apiVersions\":[\"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\":[\"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\",\"West Europe\",\"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\",\"Australia Southeast\",\"Korea South\",\"Canada Central\",\"South India\",\"West Central US\",\"East Asia (Stage)\",\"North Central US (Stage)\",\"West US\",\"East US\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-10-30-preview\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"virtualMachineScaleSets/extensions\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"Central US\",\"North Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"Australia Central\",\"Brazil South\",\"South India\",\"Central India\",\"West India\",\"Canada Central\",\"Canada East\",\"West US 2\",\"West Central US\",\"UK South\",\"UK West\",\"Korea Central\",\"Korea South\",\"France Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-10-30-preview\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2016-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"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-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-03-30\",\"2015-06-15\",\"2015-05-01-preview\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\"],\"defaultApiVersion\":\"2019-12-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2014-04-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-15-preview\"],\"defaultApiVersion\":\"2017-10-15-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"sharedVMImages/versions\",\"locations\":[\"West Central US\",\"South Central US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US\",\"East US\",\"Canada Central\",\"North Europe\",\"North Central US\",\"Brazil South\",\"UK West\",\"West India\",\"East Asia\",\"Australia East\",\"Japan East\",\"Korea South\",\"West US 2\",\"Canada East\",\"UK South\",\"Central India\",\"South India\",\"Australia Southeast\",\"Japan West\",\"Korea Central\",\"France Central\",\"Central US\",\"Australia Central\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-15-preview\"],\"defaultApiVersion\":\"2017-10-15-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/artifactPublishers\",\"locations\":[\"West Central US\",\"South Central US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US\",\"East US\",\"Canada Central\",\"North Europe\",\"North Central US\",\"Brazil South\",\"UK West\",\"West India\",\"East Asia\",\"Australia East\",\"Japan East\",\"Korea South\",\"West US 2\",\"Canada East\",\"UK South\",\"Central India\",\"South India\",\"Australia Southeast\",\"Japan West\",\"Korea Central\",\"France Central\",\"Central US\",\"Australia Central\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-15-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/capsoperations\",\"locations\":[\"West Central US\",\"South Central US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US\",\"East US\",\"Canada Central\",\"North Europe\",\"North Central US\",\"Brazil South\",\"UK West\",\"West India\",\"East Asia\",\"Australia East\",\"Japan East\",\"Korea South\",\"West US 2\",\"Canada East\",\"UK South\",\"Central India\",\"South India\",\"Australia Southeast\",\"Japan West\",\"Korea Central\",\"France Central\",\"Central US\",\"Australia Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-30\",\"2020-05-01\",\"2019-11-01\",\"2019-07-01\"],\"defaultApiVersion\":\"2020-06-30\",\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"diskAccesses\",\"locations\":[\"Southeast Asia\",\"East US 2\",\"Central US\",\"West Europe\",\"East US\",\"North Central US\",\"South Central US\",\"West US\",\"North Europe\",\"East Asia\",\"Brazil South\",\"West US 2\",\"West Central US\",\"UK West\",\"UK South\",\"Japan East\",\"Japan West\",\"Canada Central\",\"Canada East\",\"Central India\",\"South India\",\"Australia East\",\"Australia Southeast\",\"Korea Central\",\"Korea South\",\"West India\",\"France Central\",\"South Africa North\",\"UAE North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\",\"2017-03-30\",\"2016-08-30\",\"2016-04-30-preview\"],\"defaultApiVersion\":\"2018-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\",\"2018-06-01\",\"2018-04-01\",\"2017-12-01\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\"],\"defaultApiVersion\":\"2018-10-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-12-01\",\"2019-07-01\",\"2019-03-01\",\"2018-10-01\"],\"defaultApiVersion\":\"2018-10-01\",\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Central US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"Central US EUAP\",\"zones\":[\"2\",\"1\"]},{\"location\":\"France Central\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Southeast Asia\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"North Europe\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"UK South\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Japan East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"Australia East\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"South Africa North\",\"zones\":[]},{\"location\":\"South Central US\",\"zones\":[]},{\"location\":\"Canada Central\",\"zones\":[]},{\"location\":\"Germany West Central\",\"zones\":[]},{\"location\":\"Brazil South\",\"zones\":[]}],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\",\"Australia Southeast\"],\"apiVersions\":[\"2018-05-01-preview\",\"2015-05-01\",\"2014-12-01-preview\",\"2014-08-01\",\"2014-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"components/query\",\"locations\":[],\"apiVersions\":[\"2018-04-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"components/metadata\",\"locations\":[],\"apiVersions\":[\"2018-04-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"components/metrics\",\"locations\":[\"East US\",\"South Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"UK South\",\"Central India\",\"Canada Central\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"East US 2\",\"East Asia\",\"West US\",\"Central US\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"apiVersions\":[\"2018-04-20\",\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"components/events\",\"locations\":[\"East US\",\"South Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"UK South\",\"Central India\",\"Canada Central\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"East US 2\",\"East Asia\",\"West US\",\"Central US\",\"South Africa North\",\"North Central US\"],\"apiVersions\":[\"2018-04-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"webtests\",\"locations\":[\"East US\",\"South Central US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"UK South\",\"Central India\",\"Canada Central\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"Central US\",\"East US 2\",\"East Asia\",\"West US\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"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\":[\"West Central US\",\"East US\",\"West Europe\",\"Central India\",\"Canada Central\",\"Australia Southeast\",\"Japan East\",\"Southeast Asia\",\"UK South\",\"South Central US\",\"North Europe\",\"West US 2\",\"Australia Central\",\"Australia East\",\"Korea Central\",\"France Central\",\"Central US\",\"East US 2\",\"East Asia\",\"West US\",\"North Central US\",\"South Africa North\",\"Brazil South\",\"UK West\",\"Switzerland North\",\"Switzerland West\",\"UAE Central\",\"Germany West Central\",\"Australia Central 2\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-03-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2015-04-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"eventtypes\",\"locations\":[],\"apiVersions\":[\"2017-03-01-preview\",\"2016-09-01-preview\",\"2015-04-01\",\"2014-11-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-01\"}],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"locations\",\"locations\":[\"East US\"],\"apiVersions\":[\"2015-04-01\",\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[],\"apiVersions\":[\"2015-04-01\",\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"vmInsightsOnboardingStatuses\",\"locations\":[],\"apiVersions\":[\"2018-11-27-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2015-04-01\",\"2014-06-01\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"diagnosticSettings\",\"locations\":[\"West US\",\"East US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"North Central US\",\"South Central US\",\"East US 2\",\"Central US\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"UK South\",\"UK West\",\"South India\",\"Central India\",\"West India\",\"Canada East\",\"Canada Central\",\"West Central US\",\"West US 2\",\"Korea South\",\"Korea Central\",\"Australia Central\",\"Australia Central 2\",\"France Central\",\"South Africa North\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"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\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"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\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"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\",\"UAE North\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"apiVersions\":[\"2020-02-12\",\"2018-06-17-preview\",\"2018-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workbooktemplates\",\"locations\":[\"West Europe\",\"South Central US\",\"East US\",\"North Europe\",\"Southeast Asia\",\"West US 2\",\"Japan East\",\"Australia East\",\"Korea Central\",\"France Central\",\"Central US\",\"East US 2\",\"East Asia\",\"West US\",\"Canada Central\",\"Central India\",\"UK South\",\"South Africa North\",\"North Central US\",\"Brazil South\",\"Switzerland North\",\"Australia Southeast\"],\"apiVersions\":[\"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\",\"Australia Southeast\"],\"apiVersions\":[\"2020-02-12\",\"2018-06-17-preview\",\"2018-06-15-preview\",\"2018-06-01-preview\",\"2016-06-15-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"logs\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"Central US\",\"North Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"South India\",\"Central India\",\"West India\",\"Canada Central\",\"Canada East\",\"West US 2\",\"West Central US\",\"UK South\",\"UK West\",\"Korea Central\",\"Korea South\",\"France Central\",\"France South\",\"Australia Central\",\"South Africa North\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":\"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\"},{\"resourceType\":\"dataCollectionRules\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-01-preview\"],\"defaultApiVersion\":\"2019-11-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dataCollectionRuleAssociations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-01-preview\"],\"defaultApiVersion\":\"2019-11-01-preview\",\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2017-04-26-preview\",\"2017-03-15-preview\",\"2017-03-03-preview\",\"2017-01-01-preview\",\"2015-11-01-preview\",\"2015-03-20\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"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\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2019-08-01-preview\",\"2015-11-01-preview\"],\"defaultApiVersion\":\"2015-11-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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2015-11-01-preview\"],\"defaultApiVersion\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2019-08-01-preview\"],\"defaultApiVersion\":\"2019-08-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"storageInsightConfigs\",\"locations\":[],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-03-01-preview\",\"2019-08-01-preview\",\"2015-11-01-preview\"],\"defaultApiVersion\":\"2015-11-01-preview\",\"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\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\",\"2015-11-01-preview\",\"2014-11-10\"],\"defaultApiVersion\":\"2015-11-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SignalRService\",\"namespace\":\"Microsoft.SignalRService\",\"authorizations\":[{\"applicationId\":\"cdad765c-f191-43ba-b9f5-7aef392f811d\",\"roleDefinitionId\":\"346b504e-4aec-45d1-be25-a6e10f3cb4fe\"}],\"resourceTypes\":[{\"resourceType\":\"SignalR\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2020-05-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatuses\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"West US\",\"East US\",\"East US 2\",\"West US 2\",\"Central US\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"},{\"resourceType\":\"SignalR/eventGridFilters\",\"locations\":[\"East US\",\"West US\",\"Southeast Asia\",\"West Europe\",\"West US 2\",\"East US 2\",\"North Europe\",\"Australia East\",\"Canada East\",\"Central US\",\"Japan East\",\"UK South\",\"South Central US\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2018-10-01\",\"2018-03-01-preview\"],\"defaultApiVersion\":\"2018-10-01\",\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/clusters\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/fileservers\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/experiments\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/experiments/jobs\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"West Central US\",\"Southeast Asia\",\"South Central US\",\"West US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"clusters\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"jobs\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"fileservers\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\",\"2017-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[\"East US\",\"West US 2\",\"West Europe\",\"East US 2\",\"North Europe\",\"Australia East\",\"East US 2 EUAP\",\"West Central US\",\"Southeast Asia\",\"South Central US\"],\"apiVersions\":[\"2018-05-01\",\"2018-03-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.AlertsManagement\",\"namespace\":\"Microsoft.AlertsManagement\",\"authorizations\":[{\"applicationId\":\"3af5a1e8-2459-45cb-8683-bcd6cccbcc13\",\"roleDefinitionId\":\"b1309299-720d-4159-9897-6158a61aee41\"}],\"resourceTypes\":[{\"resourceType\":\"alerts\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-05-preview\",\"2018-11-02-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"alertsList\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-11-02-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"alertsSummaryList\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-11-02-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"alertsMetaData\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-05-preview\",\"2019-03-01-preview\",\"2019-03-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-05-05-preview\",\"2018-05-05\",\"2017-11-15-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"2020-05-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-09-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"2017-05-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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2020-03-01-preview\",\"2020-03-01\",\"2019-08-01\",\"2019-04-01\",\"2018-12-01\",\"2017-09-01\",\"2017-05-01\",\"2017-01-01\",\"2015-12-01\",\"2015-09-01\",\"2015-07-01\",\"2014-05-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-15\",\"2020-03-31\",\"2019-12-31\",\"2019-06-15-preview\",\"2019-04-15\",\"2018-04-02\",\"2017-10-12\",\"2017-04-02\",\"2016-10-02\",\"2016-04-02\",\"2015-06-01\"],\"defaultApiVersion\":\"2017-10-12\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"profiles/endpoints\",\"locations\":[\"global\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Central US\",\"South India\",\"Southeast Asia\",\"West Europe\",\"West India\",\"West US\",\"West Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-15\",\"2020-03-31\",\"2019-12-31\",\"2019-06-15-preview\",\"2019-04-15\",\"2018-04-02\",\"2017-10-12\",\"2017-04-02\",\"2016-10-02\",\"2016-04-02\",\"2015-06-01\"],\"defaultApiVersion\":\"2017-10-12\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"profiles/endpoints/origins\",\"locations\":[\"global\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"Japan East\",\"Japan West\",\"North Central US\",\"North Europe\",\"South Central US\",\"South India\",\"Southeast Asia\",\"West Europe\",\"West India\",\"West US\",\"West Central US\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-15\",\"2020-03-31\",\"2019-12-31\"],\"defaultApiVersion\":\"2019-12-31\",\"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-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-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-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-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/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-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-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-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-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-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-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-04-15\",\"2019-06-15-preview\"],\"defaultApiVersion\":\"2019-06-15-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"CdnWebApplicationFirewallManagedRuleSets\",\"locations\":[],\"apiVersions\":[\"2020-04-15\",\"2019-06-15-preview\"],\"defaultApiVersion\":\"2019-06-15-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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 West\",\"Switzerland North\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2017-04-18\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-12-01-preview\",\"2017-12-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"serversv2\",\"locations\":[\"East US 2\",\"East US\",\"North Central US\",\"Canada Central\",\"Australia East\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"North Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-03-29-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"serverGroups\",\"locations\":[\"East US 2\",\"East US\",\"North Central US\",\"Canada Central\",\"Australia East\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"North Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-03-29-privatepreview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"flexibleServers\",\"locations\":[\"West US 2\",\"North Central US\",\"East US\",\"East US 2\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-14-privatepreview\"],\"zoneMappings\":[{\"location\":\"East US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US 2 EUAP\",\"zones\":[\"2\",\"1\",\"3\"]},{\"location\":\"West US 2\",\"zones\":[\"3\",\"2\",\"1\"]},{\"location\":\"East US\",\"zones\":[\"3\",\"2\",\"1\"]}],\"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 India\",\"Central US\",\"East Asia\",\"East US 2\",\"East US\",\"France Central\",\"France South\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Norway East\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\":[\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\",\"2015-03-01-preview\"],\"defaultApiVersion\":\"2015-03-01-preview\",\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\",\"Switzerland North\",\"Switzerland West\",\"South Africa North\",\"Germany West Central\",\"East US 2 EUAP\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeAnalytics\",\"namespace\":\"Microsoft.DataLakeAnalytics\",\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\"],\"apiVersions\":[\"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\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/storageAccounts\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/storageAccounts/containers\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\"],\"apiVersions\":[\"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\":[\"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\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-11-01-preview\",\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Authorization\",\"namespace\":\"Microsoft.Authorization\",\"authorizations\":[{\"applicationId\":\"de926fbf-e23b-41f9-ae15-c943a9cfa630\"}],\"resourceTypes\":[{\"resourceType\":\"roleAssignments\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"databaseAccounts\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\",\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\",\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\",\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\",\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationsStatus\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\",\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\",\"2020-04-01\",\"2020-03-01\",\"2019-12-12\",\"2019-08-01-preview\",\"2019-08-01\",\"2016-03-31\",\"2016-03-19\",\"2015-11-06\",\"2015-04-08\",\"2014-04-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2015-04-08\"}],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"restorableDatabaseAccounts\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataLakeStore\",\"namespace\":\"Microsoft.DataLakeStore\",\"authorization\":{\"applicationId\":\"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\"roleDefinitionId\":\"17eb9cca-f08a-4499-b2d3-852d175f614f\"},\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"defaultApiVersion\":\"2016-11-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"accounts/firewallRules\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/eventGridFilters\",\"locations\":[\"East US 2\",\"North Europe\",\"Central US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/capability\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/deleteVirtualNetworkOrSubnets\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2015-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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-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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"East US 2 (Stage)\",\"Central US EUAP\"],\"apiVersions\":[\"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-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-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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\",\"East US 2 (Stage)\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"partnerRegistrations\",\"locations\":[\"Global\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-09-01\",\"2018-02-14-preview\",\"2018-02-14\"],\"defaultApiVersion\":\"2019-09-01\",\"capabilities\":\"None\"},{\"resourceType\":\"managedHSMs\",\"locations\":[\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"defaultApiVersion\":\"2020-04-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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 Central US\",\"France Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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 Central US\",\"France Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-30\",\"2015-08-31-PREVIEW\"],\"capabilities\":\"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 Central US\",\"France Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-30\",\"2015-08-31-PREVIEW\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\"],\"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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-02-preview\",\"2020-02-02\",\"2019-06-15\",\"2019-05-13-preview\",\"2019-05-13\",\"2018-12-20-preview\",\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-12-20-preview\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-07-10\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-10\"}],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Search\",\"namespace\":\"Microsoft.Search\",\"authorization\":{\"applicationId\":\"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\"roleDefinitionId\":\"20FA3191-87CF-4C3D-9510-74CCB594A310\"},\"resourceTypes\":[{\"resourceType\":\"searchServices\",\"locations\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"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-03-13\",\"2019-10-01-Preview\",\"2015-08-19\"],\"capabilities\":\"None\"},{\"resourceType\":\"resourceHealthMetadata\",\"locations\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-03-13\",\"2019-10-01-Preview\",\"2015-08-19\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-13\",\"2019-10-01-Preview\",\"2015-08-19\",\"2015-02-28\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\"],\"capabilities\":\"None\"},{\"resourceType\":\"secureScores/secureScoreControls\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"secureScoreControls\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"secureScoreControlDefinitions\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"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\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-01-01\",\"2017-08-01-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"deviceSecurityGroups\",\"locations\":[\"North Europe\",\"West Europe\",\"UK South\",\"UK West\",\"France Central\",\"France South\",\"West Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2017-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\",\"2017-08-01-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\"],\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-08-01\"],\"capabilities\":\"None\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"],\"apiVersions\":[\"2019-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-11-01-preview\",\"2019-10-01\",\"2019-02-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"configurationStores/eventGridFilters\",\"locations\":[\"West Central US\",\"Central US\",\"West US\",\"East US\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2019-11-01-preview\",\"2019-10-01\",\"2019-02-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"UK West\",\"West India\",\"Switzerland North\",\"Australia Central 2\",\"Australia East\",\"Brazil South\",\"Canada East\",\"East US 2\",\"France South\",\"Japan West\",\"Korea South\",\"North Central US\",\"South India\",\"Southeast Asia\",\"Switzerland West\",\"UK South\",\"West Europe\",\"West US\",\"West US 2\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2018-10-15-preview\",\"2018-09-15\",\"2017-04-26-preview\",\"2016-05-15\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2018-07-01-preview\",\"2017-07-01\",\"2016-10-01\",\"2016-06-01\",\"2015-08-01-preview\",\"2015-02-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/workflows\",\"locations\":[\"North Central US\",\"Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"West US\",\"East US\",\"East US 2\",\"Japan West\",\"Japan East\",\"Brazil South\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"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\"],\"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\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2018-07-01-preview\",\"2016-06-01\",\"2015-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"integrationServiceEnvironments\",\"locations\":[\"North Central US\",\"Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"West US\",\"East US\",\"East US 2\",\"Japan West\",\"Japan East\",\"Australia East\",\"Australia Southeast\",\"South India\",\"Central India\",\"Canada Central\",\"West US 2\",\"UK South\",\"UK West\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\",\"2019-05-01\",\"2018-07-01-preview\",\"2018-03-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"integrationServiceEnvironments/managedApis\",\"locations\":[\"North Central US\",\"Central US\",\"South Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"West US\",\"East US\",\"East US 2\",\"Japan West\",\"Japan East\",\"Australia East\",\"Australia Southeast\",\"South India\",\"Central India\",\"Canada Central\",\"West US 2\",\"West Central US\",\"UK South\",\"UK West\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\",\"2019-05-01\",\"2018-07-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"hostingEnvironments\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-04-01-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"isolatedEnvironments\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-07-01-preview\",\"2018-03-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DBforMySQL\",\"namespace\":\"Microsoft.DBforMySQL\",\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-12-01-preview\",\"2017-12-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/recoverableServers\",\"locations\":[\"Australia Central\",\"Australia Central 2\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"Central India\",\"East Asia\",\"East US 2\",\"East US\",\"France Central\",\"France South\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Norway East\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AppPlatform\",\"namespace\":\"Microsoft.AppPlatform\",\"authorizations\":[{\"applicationId\":\"03b39d0f-4213-4864-a245-b1476ec03169\"},{\"applicationId\":\"b61cc489-e138-4a69-8bf3-c2c5855c8784\",\"roleDefinitionId\":\"462ddd96-910a-44f5-adfa-644d99942778\"},{\"applicationId\":\"e8de9221-a19c-4c81-b814-fd37c6caf9d2\"}],\"resourceTypes\":[{\"resourceType\":\"Spring\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\",\"Central US\",\"East US 2\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"Spring/apps\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\",\"Central US\",\"East US 2\"],\"apiVersions\":[\"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\",\"East US 2\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\",\"Central US\",\"East US 2\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\",\"Central US\",\"East US 2\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatus\",\"locations\":[\"West Europe\",\"East US\",\"West US 2\",\"Southeast Asia\",\"Central US\",\"East US 2\"],\"apiVersions\":[\"2019-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"},{\"resourceType\":\"configurationProfileAssignments\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-30-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"autoManagedVmConfigurationProfiles\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-30-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"autoManagedAccounts\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-30-preview\"],\"defaultApiVersion\":\"2018-06-30-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"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\":[\"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\":[\"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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-03-01\",\"2014-09-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"checkNamespaceAvailability\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Central US\",\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"East Asia\",\"Southeast Asia\",\"Brazil South\",\"Japan East\",\"Japan West\",\"North Europe\",\"West Europe\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"UK West\",\"UK South\",\"Germany West Central\",\"Australia Central\",\"Australia Central 2\"],\"apiVersions\":[\"2017-04-01\",\"2016-03-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Central US\",\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"East Asia\",\"Southeast Asia\",\"Brazil South\",\"Japan East\",\"Japan West\",\"North Europe\",\"West Europe\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"UK West\",\"UK South\",\"Germany West Central\",\"Australia Central\",\"Australia Central 2\"],\"apiVersions\":[\"2017-04-01\",\"2016-03-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Central US\",\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"East Asia\",\"Southeast Asia\",\"Brazil South\",\"Japan East\",\"Japan West\",\"North Europe\",\"West Europe\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"UK West\",\"UK South\",\"Germany West Central\",\"Australia Central\",\"Australia Central 2\"],\"apiVersions\":[\"2017-04-01\",\"2016-03-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Central US\",\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"East Asia\",\"Southeast Asia\",\"Brazil South\",\"Japan East\",\"Japan West\",\"North Europe\",\"West Europe\",\"Central India\",\"South India\",\"West India\",\"Canada Central\",\"Canada East\",\"UK West\",\"UK South\",\"Germany West Central\",\"Australia Central\",\"Australia Central 2\"],\"apiVersions\":[\"2017-04-01\",\"2016-03-01\",\"2014-09-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"UAE North\"],\"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\",\"UAE North\"],\"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\",\"UAE North\"],\"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\",\"UAE North\"],\"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\",\"UAE North\"],\"apiVersions\":[\"2020-01-01\",\"2017-06-01\",\"2017-01-01\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-03-01-preview\",\"2020-03-01\"],\"defaultApiVersion\":\"2020-03-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"tenants\",\"locations\":[\"West US\"],\"apiVersions\":[\"2017-04-01\",\"2017-03-01\",\"2016-09-01\",\"2016-08-01\",\"2016-07-01\",\"2016-06-01\",\"2016-03-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\"],\"defaultApiVersion\":\"2017-04-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"West US\"],\"apiVersions\":[\"2017-04-01\",\"2017-03-01\",\"2016-09-01\",\"2016-08-01\",\"2016-07-01\",\"2016-06-01\",\"2016-03-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"diagnosticSettings\",\"locations\":[],\"apiVersions\":[\"2017-04-01-preview\",\"2017-04-01\"],\"defaultApiVersion\":\"2017-04-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"diagnosticSettingsCategories\",\"locations\":[],\"apiVersions\":[\"2017-04-01-preview\",\"2017-04-01\"],\"defaultApiVersion\":\"2017-04-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-08-01-beta\",\"2017-08-01\",\"2017-07-14\",\"2016-05-16\"],\"defaultApiVersion\":\"2017-08-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-08-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2\",\"West Central US\",\"West US 2\"],\"apiVersions\":[\"2017-08-01-beta\",\"2017-08-01\",\"2017-07-14\",\"2016-05-16\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-08-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ApiManagement\",\"namespace\":\"Microsoft.ApiManagement\",\"authorization\":{\"applicationId\":\"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\"roleDefinitionId\":\"e263b525-2e60-4418-b655-420bae0b172e\"},\"resourceTypes\":[{\"resourceType\":\"service\",\"locations\":[\"Canada East\",\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\":[],\"apiVersions\":[\"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\":\"reportFeedback\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Canada Central\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"defaultProviders\",\"locations\":[\"East US 2\",\"Central US\",\"UK South\",\"Canada Central\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/defaultProvider\",\"locations\":[\"East US 2\",\"Central US\",\"UK South\",\"Canada Central\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Automanage\",\"namespace\":\"Microsoft.Automanage\",\"authorizations\":[{\"applicationId\":\"9ae330ab-d710-466b-851c-c828e7340846\"}],\"resourceTypes\":[{\"resourceType\":\"configurationProfileAssignments\",\"locations\":[\"Central US\",\"East US 2\",\"East US\",\"North Central US\",\"South Central US\",\"West US 2\",\"West Central US\",\"West US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-30-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AVS\",\"namespace\":\"Microsoft.AVS\",\"authorizations\":[{\"allowedThirdPartyExtensions\":[{\"name\":\"VMCP\"}]}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkTrialAvailability\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkQuotaAvailability\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"privateClouds\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateClouds/clusters\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\",\"2019-08-09-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"privateClouds/authorizations\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\"],\"capabilities\":\"None\"},{\"resourceType\":\"privateClouds/hcxEnterpriseSites\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West Europe\",\"Australia East\"],\"apiVersions\":[\"2020-03-20\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.AzureActiveDirectory\",\"namespace\":\"Microsoft.AzureActiveDirectory\",\"resourceTypes\":[{\"resourceType\":\"b2cDirectories\",\"locations\":[\"Global\",\"United States\",\"Europe\",\"Asia Pacific\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-01-01-privatepreview\",\"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\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-01-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Global\",\"United States\",\"Europe\",\"Asia Pacific\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-01-01-privatepreview\",\"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\"],\"apiVersions\":[\"2020-05-01-preview\",\"2016-02-10-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-10-preview\"],\"defaultApiVersion\":\"2019-05-10-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Canada Central\",\"France Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South 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\",\"East US 2 EUAP\"],\"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 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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-10-preview\"],\"defaultApiVersion\":\"2019-05-10-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"dataControllers\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"postgresInstances\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sqlManagedInstances\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"sqlServerInstances\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-07-24-preview\"],\"defaultApiVersion\":\"2019-07-24-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/billingProfiles/createBillingRoleAssignment\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/billingProfiles/invoiceSections/createBillingRoleAssignment\",\"locations\":[],\"apiVersions\":[\"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-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-05-01\",\"2019-10-01-preview\",\"2018-11-01-preview\",\"2018-06-30\",\"2018-05-31\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/operationResults\",\"locations\":[],\"apiVersions\":[\"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-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-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-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-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-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\":[\"2019-10-01-preview\",\"2018-06-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/departments/billingRoleDefinitions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/departments/billingRoleAssignments\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/departments/billingPermissions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\",\"2018-06-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts/billingRoleDefinitions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts/billingRoleAssignments\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"billingAccounts/enrollmentAccounts/billingPermissions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"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/billingSubscriptions\",\"locations\":[],\"apiVersions\":[\"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-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-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\":[\"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/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\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.BingMaps\",\"namespace\":\"Microsoft.BingMaps\",\"resourceTypes\":[{\"resourceType\":\"mapApis\",\"locations\":[\"West US\"],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"None\"},{\"resourceType\":\"listCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"None\"},{\"resourceType\":\"updateCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-08-18\",\"2015-07-02\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"watchers\",\"locations\":[\"East US\",\"West Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"defaultApiVersion\":\"2019-06-01-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"blockchainMembers\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/watcherOperationResults\",\"locations\":[\"East US\",\"West Europe\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/blockchainMemberOperationResults\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/listConsortiums\",\"locations\":[\"East US\",\"Southeast Asia\",\"West Europe\",\"North Europe\",\"West US 2\",\"Japan East\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"cordaMembers\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\"],\"defaultApiVersion\":\"2018-06-01-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.Blueprint\",\"namespace\":\"Microsoft.Blueprint\",\"authorizations\":[{\"applicationId\":\"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\"roleDefinitionId\":\"cb180127-cf6d-4672-9e75-e29a487f9658\"}],\"resourceTypes\":[{\"resourceType\":\"blueprints\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"blueprints/artifacts\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprints/versions\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprints/versions/artifacts\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprintAssignments\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"SystemAssignedResourceIdentity, SupportsExtension\"},{\"resourceType\":\"blueprintAssignments/operations\",\"locations\":[],\"apiVersions\":[\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"blueprintAssignments/assignmentOperations\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-11-01-preview\",\"2018-11-01-alpha\",\"2017-11-11-preview\",\"2017-11-11-alpha\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.BotService\",\"namespace\":\"Microsoft.BotService\",\"authorization\":{\"applicationId\":\"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\"roleDefinitionId\":\"71213c26-43ed-41d8-9905-3c12971517a3\"},\"resourceTypes\":[{\"resourceType\":\"botServices\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"botServices/channels\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"botServices/connections\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"listAuthServiceProviders\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Global\"],\"apiVersions\":[\"2018-07-12\",\"2017-12-01\"],\"defaultApiVersion\":\"2017-12-01\",\"apiProfiles\":[{\"profileVersion\":\"2017-03-09-profile\",\"apiVersion\":\"2017-12-01\"},{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-07-12\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Capacity\",\"namespace\":\"Microsoft.Capacity\",\"authorization\":{\"applicationId\":\"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\"roleDefinitionId\":\"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"},\"resourceTypes\":[{\"resourceType\":\"resourceProviders\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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-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/revisions\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"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\":[\"2019-04-01-beta\",\"2019-04-01\",\"2018-06-01-beta\",\"2018-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"exchange\",\"locations\":[],\"apiVersions\":[\"2019-04-01-beta\",\"2019-04-01\",\"2018-06-01-beta\",\"2018-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"reservationOrders/calculateRefund\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\":[\"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\":[\"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\":[\"2019-04-01-beta\",\"2019-04-01\",\"2018-06-01-beta\",\"2018-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"validateReservationOrder\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ChangeAnalysis\",\"namespace\":\"Microsoft.ChangeAnalysis\",\"authorizations\":[{\"applicationId\":\"2cfc91a4-7baa-4a8f-a6c9-5f3d279060b8\",\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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)\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[],\"capabilities\":\"None\"},{\"resourceType\":\"moveSubscriptionResources\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"validateSubscriptionMoveAvailability\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationStatuses\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operatingSystems\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operatingSystemFamilies\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2015-06-15\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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)\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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)\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\",\"2014-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"gatewaySupportedDevices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\"],\"defaultApiVersion\":\"2015-06-01\",\"capabilities\":\"SupportsLocation\"},{\"resourceType\":\"capabilities\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"expressRouteCrossConnections\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"expressRouteCrossConnections/peerings\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-10-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\",\"2014-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkStorageAccountAvailability\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/services/metricDefinitions\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/services/metrics\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/metricDefinitions\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/metrics\",\"locations\":[],\"apiVersions\":[\"2014-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"capabilities\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/blobServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/tableServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/fileServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"storageAccounts/queueServices\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"disks\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"images\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"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\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[],\"capabilities\":\"None\"},{\"resourceType\":\"osImages\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"osPlatformImages\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-11-01\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-11-01\",\"2016-04-01-beta\",\"2016-04-01\",\"2015-12-01\",\"2015-06-01\",\"2014-06-01\",\"2014-04-01\",\"2014-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-07-10-privatepreview\",\"2020-07-10-beta\",\"2020-07-10-alpha\",\"2020-06-16-privatepreview\",\"2020-06-16-beta\",\"2020-06-16-alpha\",\"2020-06-16\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2020-07-10-privatepreview\",\"2020-07-10-beta\",\"2020-07-10-alpha\",\"2020-06-16-privatepreview\",\"2020-06-16-beta\",\"2020-06-16-alpha\",\"2020-06-16\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.ConnectedCache\",\"namespace\":\"Microsoft.ConnectedCache\",\"authorizations\":[],\"resourceTypes\":[{\"resourceType\":\"CacheNodes\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-12-04-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.CostManagement\",\"namespace\":\"Microsoft.CostManagement\",\"authorizations\":[{\"applicationId\":\"3184af01-7a88-49e0-8b55-8ecdce0aa950\"}],\"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\":\"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-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-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\":\"Insights\",\"locations\":[],\"apiVersions\":[\"2020-08-01-preview\"],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-02-28-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"requests\",\"locations\":[],\"apiVersions\":[\"2018-02-28-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"associations\",\"locations\":[\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2019-09-01\",\"2018-01-01\"],\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2019-09-01\",\"2018-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Brazil South\",\"Australia East\",\"Canada Central\",\"Korea Central\",\"Japan East\",\"South Africa North\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-04-01\",\"2019-09-01\",\"2018-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataBoxEdge\",\"namespace\":\"Microsoft.DataBoxEdge\",\"authorizations\":[{\"applicationId\":\"2368d027-f996-4edb-bf48-928f98f2ab8c\"},{\"applicationId\":\"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\"roleDefinitionId\":\"f9b194f9-6969-48fc-b432-a189d291bcf0\"}],\"resourceTypes\":[{\"resourceType\":\"DataBoxEdgeDevices\",\"locations\":[\"East US\",\"West Europe\",\"Southeast Asia\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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-06-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"DataBoxEdgeDevices/checkNameAvailability\",\"locations\":[\"East US\",\"West Europe\",\"Southeast Asia\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"2020-07-01-preview\",\"2020-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"France Central\",\"UAE North\"],\"apiVersions\":[\"2018-04-01\"],\"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\"],\"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\"],\"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\",\"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\"],\"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\",\"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\",\"France Central\",\"UAE North\"],\"apiVersions\":[\"2018-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataCatalog\",\"namespace\":\"Microsoft.DataCatalog\",\"authorization\":{\"applicationId\":\"213f5f78-fb30-46c7-9e98-91c720a1c026\",\"roleDefinitionId\":\"D55E2225-A6AB-481C-A5BE-1B7687C293FA\"},\"resourceTypes\":[{\"resourceType\":\"catalogs\",\"locations\":[\"East US\",\"West US\",\"Australia East\",\"West Europe\",\"North Europe\",\"Southeast Asia\",\"West Central US\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"West Europe\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"West Europe\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/jobs\",\"locations\":[\"East US\",\"West US\",\"Australia East\",\"West Europe\",\"North Europe\",\"Southeast Asia\",\"West Central US\"],\"apiVersions\":[\"2016-03-30\",\"2015-07-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataCollaboration\",\"namespace\":\"Microsoft.DataCollaboration\",\"authorization\":{\"applicationId\":\"2cc451ba-a8ec-496f-bdff-591f5ae2876c\",\"roleDefinitionId\":\"fdf757e9-19df-4152-a1ae-5e719161cd12\"},\"resourceTypes\":[{\"resourceType\":\"listinvitations\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consumerInvitations/reject\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consumerInvitations\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\"],\"apiVersions\":[\"2020-05-04-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataFactory\",\"namespace\":\"Microsoft.DataFactory\",\"authorizations\":[{\"applicationId\":\"0947a342-ab4a-43be-93b3-b8243fc161e5\",\"roleDefinitionId\":\"f0a6aa2a-e9d8-4bae-bcc2-36b405e8a5da\"},{\"applicationId\":\"5d13f7d7-0567-429c-9880-320e9555e5fc\",\"roleDefinitionId\":\"956a8f20-9168-4c71-8e27-3c0460ac39a4\"}],\"resourceTypes\":[{\"resourceType\":\"dataFactories\",\"locations\":[\"West US\",\"North Europe\",\"East US\",\"West Central US\"],\"apiVersions\":[\"2015-10-01\",\"2015-09-01\",\"2015-08-01\",\"2015-07-01-preview\",\"2015-05-01-preview\",\"2015-01-01-preview\",\"2014-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"factories\",\"locations\":[\"East US\",\"East US 2\",\"Central US\",\"South Central US\",\"Japan East\",\"Canada Central\",\"Australia East\",\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01\",\"2017-09-01-preview\"],\"defaultApiVersion\":\"2018-06-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"factories/integrationRuntimes\",\"locations\":[\"East US\",\"East US 2\",\"West US 2\",\"West US\",\"Central US\",\"South Central US\",\"Japan East\",\"Central India\",\"Brazil South\",\"France Central\",\"Korea Central\",\"Australia East\",\"Canada Central\",\"West Central US\",\"North Europe\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"East Asia\",\"North Central US\",\"South Africa North\",\"Australia Southeast\",\"East US 2 EUAP\"],\"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\",\"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\",\"East US 2 EUAP\"],\"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\",\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01\"],\"defaultApiVersion\":\"2018-06-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataProtection\",\"namespace\":\"Microsoft.DataProtection\",\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"BackupVaults\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"ResourceOperationGateKeepers\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatus\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-alpha\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DataShare\",\"namespace\":\"Microsoft.DataShare\",\"authorization\":{\"applicationId\":\"799f1985-1517-4fe1-af2b-ba3d87d4996b\",\"roleDefinitionId\":\"0146496b-e06f-439a-83be-49fac884edf5\"},\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"accounts/shares\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/datasets\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/synchronizationSettings\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/invitations\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/shares/providersharesubscriptions\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions/datasetmappings\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions/triggers\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"accounts/sharesubscriptions/consumerSourceDataSets\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"listinvitations\",\"locations\":[\"East US 2\",\"East US\",\"Australia East\",\"Southeast Asia\",\"West US 2\",\"North Europe\",\"UK South\",\"Canada Central\",\"West Central US\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"East US 2\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\",\"2018-11-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"East US 2\",\"North Europe\",\"East US\",\"UK South\",\"Australia East\",\"West Europe\",\"Southeast Asia\",\"West Central US\",\"West US 2\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2019-11-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/rejectInvitation\",\"locations\":[\"East US 2\",\"East US\",\"Australia East\",\"West US 2\",\"North Europe\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West Central US\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/consumerInvitations\",\"locations\":[\"East US 2\",\"East US\",\"Australia East\",\"West US 2\",\"North Europe\",\"UK South\",\"West Europe\",\"Southeast Asia\",\"West Central US\",\"South Central US\",\"Canada Central\",\"Central US EUAP\"],\"apiVersions\":[\"2018-11-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-11-01\",\"2018-11-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-06-01-preview\",\"2018-06-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"servers/recoverableServers\",\"locations\":[\"Australia Central\",\"Australia Central 2\",\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"Central India\",\"East Asia\",\"East US 2\",\"East US\",\"France Central\",\"France South\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"Norway East\",\"Switzerland North\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"servers/keys\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-privatepreview\",\"2020-01-01-preview\",\"2020-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-01-preview\",\"2018-09-01-preview\"],\"defaultApiVersion\":\"2018-09-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-09-01-preview\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2019-11-01-preview\",\"2018-09-01-preview\"],\"defaultApiVersion\":\"2018-09-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-09-01-preview\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"global\"],\"apiVersions\":[\"2019-11-01-preview\",\"2018-09-01-preview\"],\"defaultApiVersion\":\"2018-09-01-preview\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-09-01-preview\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationgroups\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"applicationgroups/applications\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"applicationgroups/desktops\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"applicationgroups/startmenuitems\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"hostpools\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"hostpools/sessionhosts\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"hostpools/sessionhosts/usersessions\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"hostpools/usersessions\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"Central US\"],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-12-10-preview\",\"2019-09-24-preview\",\"2019-01-23-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-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-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-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-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"2018-01-22\",\"2017-07-01\",\"2017-01-19\",\"2016-02-03\",\"2015-08-15-preview\"],\"defaultApiVersion\":\"2020-01-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2018-04-01\"}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"IotHubs/eventGridFilters\",\"locations\":[\"West US\",\"East US\",\"West US 2\",\"West Central US\",\"East US 2\",\"Central US\",\"North Europe\",\"West Europe\",\"East Asia\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"UK South\",\"UK West\",\"South India\",\"Central India\",\"Canada Central\",\"Canada East\",\"Brazil South\",\"South Central US\",\"Korea South\",\"Korea Central\",\"France Central\",\"North Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-03-01\",\"2020-01-01\",\"2018-01-22\",\"2017-11-15\",\"2017-08-21-preview\"],\"defaultApiVersion\":\"2020-01-01\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"IotHubs/securitySettings\",\"locations\":[\"West US\",\"North Europe\",\"East Asia\",\"East US\",\"West Europe\",\"Southeast Asia\",\"Japan East\",\"Japan West\",\"Australia East\",\"Australia Southeast\",\"West US 2\",\"West Central US\",\"East US 2\",\"Central US\",\"UK South\",\"UK West\",\"South India\",\"Central India\",\"Canada Central\",\"Canada East\",\"Brazil South\",\"South Central US\",\"Korea South\",\"Korea Central\",\"France Central\",\"North Central US\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"ElasticPools\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-07-01-preview\",\"2019-03-22-preview\",\"2018-12-01-preview\",\"2018-01-22-preview\",\"2017-09-25-preview\",\"2017-07-01\"],\"defaultApiVersion\":\"2018-01-22-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"ElasticPools/IotHubTenants\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-07-01-preview\",\"2019-03-22-preview\",\"2018-01-22-preview\",\"2017-09-25-preview\",\"2017-07-01\"],\"defaultApiVersion\":\"2018-01-22-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DeviceUpdate\",\"namespace\":\"Microsoft.DeviceUpdate\",\"authorizations\":[],\"resourceTypes\":[{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"West US 2\",\"East US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DevOps\",\"namespace\":\"Microsoft.DevOps\",\"authorization\":{\"applicationId\":\"499b84ac-1321-427f-aa17-267ca6975798\",\"roleDefinitionId\":\"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"},\"resourceTypes\":[{\"resourceType\":\"pipelines\",\"locations\":[\"East Asia\",\"Southeast Asia\",\"Australia East\",\"Brazil South\",\"Canada Central\",\"Japan East\",\"Japan West\",\"North Europe\",\"West Europe\",\"West India\",\"Central India\",\"South India\",\"Central US\",\"East US\",\"East US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"UK South\",\"West US\",\"West US 2\"],\"apiVersions\":[\"2019-07-01-preview\"],\"defaultApiVersion\":\"2019-07-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DevSpaces\",\"namespace\":\"Microsoft.DevSpaces\",\"resourceTypes\":[{\"resourceType\":\"controllers\",\"locations\":[\"East US\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"controllers/listConnectionDetails\",\"locations\":[\"East US\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"East US\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"East US\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkContainerHostMapping\",\"locations\":[\"East US\",\"West Europe\",\"Canada Central\",\"Central US\",\"West US 2\",\"West Central US\",\"Southeast Asia\",\"East US 2\",\"North Europe\",\"Australia East\",\"UK South\",\"South Central US\",\"East Asia\",\"Japan East\",\"Australia SouthEast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.DigitalTwins\",\"namespace\":\"Microsoft.DigitalTwins\",\"authorizations\":[{\"applicationId\":\"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"},{\"applicationId\":\"c115998b-3d59-49b4-b55b-042a9ba1dbfe\",\"roleDefinitionId\":\"07af60d1-cd6d-4ad4-9b56-ece6c78a3fe1\"}],\"resourceTypes\":[{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"digitalTwinsInstances\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"digitalTwinsInstances/operationResults\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"digitalTwinsInstances/endpoints\",\"locations\":[\"West Central US\",\"West US 2\",\"North Europe\"],\"apiVersions\":[\"2020-03-01-preview\"],\"defaultApiVersion\":\"2020-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"West Central US\"],\"apiVersions\":[\"2020-03-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2018-12-03\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptionFeatureRegistrations\",\"locations\":[],\"apiVersions\":[\"2020-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2015-12-01\",\"2014-08-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Japan West\",\"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\":[\"2017-11-03-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"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\"],\"apiVersions\":[\"2019-09-16\",\"2018-08-20-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-09-16\",\"2018-08-20-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"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\"],\"apiVersions\":[\"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\"],\"apiVersions\":[\"2020-03-30\",\"2019-09-16\",\"2018-08-20-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HybridCompute\",\"namespace\":\"Microsoft.HybridCompute\",\"authorizations\":[{\"applicationId\":\"8c420feb-03df-47cc-8a05-55df0cf3064b\",\"roleDefinitionId\":\"83eeb1c6-47f8-4da2-bbc3-42a7ac767360\"}],\"resourceTypes\":[{\"resourceType\":\"machines\",\"locations\":[\"West US 2\",\"West Europe\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\",\"2019-03-18-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"machines/extensions\",\"locations\":[\"West Europe\",\"West US 2\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[\"West Europe\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatus\",\"locations\":[\"West Europe\",\"West US 2\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationResults\",\"locations\":[\"West Europe\",\"West US 2\",\"Southeast Asia\",\"East US\"],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-07-30-preview\",\"2020-03-11-preview\",\"2019-12-12\",\"2019-08-02-preview\",\"2019-03-18-preview\"],\"defaultApiVersion\":\"2020-07-30-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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/00000000-0000-0000-0000-000000000000/providers/Microsoft.HybridNetwork\",\"namespace\":\"Microsoft.HybridNetwork\",\"authorizations\":[{\"applicationId\":\"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\"roleDefinitionId\":\"b193432e-9b7e-4885-b2c0-052afdceace3\"}],\"resourceTypes\":[{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"East US 2 EUAP\",\"West Central US\"],\"apiVersions\":[\"2020-01-01-preview\",\"2019-10-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Hydra\",\"namespace\":\"Microsoft.Hydra\",\"authorizations\":[{\"applicationId\":\"37ae09d4-a310-41e1-803d-8e85cec4bf23\",\"roleDefinitionId\":\"37ae09d4-a310-41e1-803d-8e85cec4bf23\"}],\"resourceTypes\":[{\"resourceType\":\"locations\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-08-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-08-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-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\",\"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\":[\"2016-11-01\",\"2016-07-01-preview\"],\"defaultApiVersion\":\"2016-11-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-11-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.IoTSpaces\",\"namespace\":\"Microsoft.IoTSpaces\",\"authorizations\":[{\"applicationId\":\"0b07f429-9f4b-4714-9392-cc5e8e80c8b0\"}],\"resourceTypes\":[{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"North Europe\",\"West Europe\",\"Australia East\",\"West US 2\",\"East US\"],\"apiVersions\":[\"2017-10-01-preview\"],\"defaultApiVersion\":\"2017-10-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"Graph\",\"locations\":[\"North Europe\",\"West Europe\",\"Australia East\",\"West US 2\",\"East US\"],\"apiVersions\":[\"2017-10-01-preview\"],\"defaultApiVersion\":\"2017-10-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2017-10-01-preview\"],\"defaultApiVersion\":\"2017-10-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"connectedClusters\",\"locations\":[\"East US\",\"West Europe\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\",\"2019-11-01-preview\",\"2019-09-01-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationStatuses\",\"locations\":[\"East US 2 EUAP\",\"West Europe\",\"East US\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\",\"2019-11-01-preview\",\"2019-09-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"sourceControlConfigurations\",\"locations\":[\"East US\",\"West Europe\"],\"apiVersions\":[\"2019-11-01-preview\"],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"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\",\"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-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\":\"2019-05-15\",\"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\"]}],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"clusters/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\",\"France South\",\"Germany West Central\",\"Japan East\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/attacheddatabaseconfigurations\",\"locations\":[\"Australia Central\",\"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\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/principalassignments\",\"locations\":[\"Australia Central\",\"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\",\"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-06-14\",\"2020-02-15\",\"2019-11-09\"],\"defaultApiVersion\":\"2019-11-09\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/databases/eventhubconnections\",\"locations\":[\"Australia Central\",\"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\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/databases/dataconnections\",\"locations\":[\"Australia Central\",\"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\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"clusters/databases/principalassignments\",\"locations\":[\"Australia Central\",\"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\",\"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-06-14\",\"2020-02-15\",\"2019-11-09\"],\"defaultApiVersion\":\"2019-11-09\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/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\",\"France South\",\"Germany West Central\",\"Japan East\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/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\",\"France South\",\"Germany West Central\",\"Japan East\",\"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-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\":\"2019-05-15\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\":\"2019-05-15\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-01-01-preview\",\"2018-10-15\",\"2017-12-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"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\",\"Central US EUAP\"],\"apiVersions\":[\"2017-01-01\",\"2016-05-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"}],\"resourceTypes\":[{\"resourceType\":\"workspaces\",\"locations\":[\"Canada Central\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/computes\",\"locations\":[\"North Central US\",\"Canada Central\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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/eventGridFilters\",\"locations\":[\"North Central US\",\"Canada Central\",\"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\",\"East US 2 EUAP\",\"West India\",\"Central US EUAP\"],\"apiVersions\":[\"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\":\"operations\",\"locations\":[\"East US 2\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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/usages\",\"locations\":[\"North Central US\",\"Canada Central\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"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\"],\"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\"],\"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\"],\"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\":[\"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\"],\"apiVersions\":[\"2020-07-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ManagedServices\",\"namespace\":\"Microsoft.ManagedServices\",\"authorization\":{\"applicationId\":\"66c6d0d1-f2e7-4a18-97a9-ed10f3347016\",\"roleDefinitionId\":\"1e86f807-6ec0-40b3-8b5f-686b7e43a0a2\"},\"resourceTypes\":[{\"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\":\"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\":\"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/00000000-0000-0000-0000-000000000000/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-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-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-05-01\",\"2020-02-01\",\"2018-03-01-beta\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"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-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-05-01\",\"2020-02-01\",\"2019-11-01\",\"2018-03-01-beta\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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-05-01\",\"2020-02-01\",\"2019-11-01\",\"2018-03-01-preview\",\"2018-03-01-beta\"],\"capabilities\":\"None\"},{\"resourceType\":\"startTenantBackfill\",\"locations\":[],\"apiVersions\":[\"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/00000000-0000-0000-0000-000000000000/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\"],\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Marketplace\",\"namespace\":\"Microsoft.Marketplace\",\"authorizations\":[{\"applicationId\":\"a0e1e353-1a3e-42cf-a8ea-3a9746eec58c\"},{\"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\":\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering\",\"namespace\":\"Microsoft.MarketplaceOrdering\",\"resourceTypes\":[{\"resourceType\":\"agreements\",\"locations\":[\"South Central US\",\"West US\"],\"apiVersions\":[\"2015-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2015-06-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"offertypes\",\"locations\":[\"South Central US\",\"West US\"],\"apiVersions\":[\"2015-06-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"2018-07-01\"],\"defaultApiVersion\":\"2018-07-01\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\":[\"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\",\"Germany West Central\",\"Germany North\",\"Switzerland West\",\"Switzerland North\"],\"apiVersions\":[\"2018-07-01\",\"2018-06-01-preview\",\"2018-03-30-preview\"],\"defaultApiVersion\":\"2018-07-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01\",\"2019-06-01\",\"2018-09-01-preview\"],\"capabilities\":\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-05-01-preview\",\"2019-10-01\",\"2019-05-01\",\"2018-06-30-preview\"],\"capabilities\":\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2018-02-02\",\"2017-11-11-preview\",\"2017-09-25-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"moveCollections\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\",\"North Europe\",\"South Central US\",\"Southeast Asia\",\"UK South\",\"West Europe\",\"West US 2\"],\"apiVersions\":[\"2020-05-01\",\"2020-04-06-preview\",\"2019-12-02-preview\",\"2019-02-28-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"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\",\"North Europe\",\"West Europe\",\"South Central US\",\"UK South\",\"Southeast Asia\"],\"apiVersions\":[\"2020-05-01\",\"2019-12-02-preview\",\"2019-02-28-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"remoteRenderingAccounts\",\"locations\":[\"East US\",\"East US 2\",\"Southeast Asia\",\"West Europe\",\"West US 2\"],\"apiVersions\":[\"2020-04-06-preview\",\"2019-12-02-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.NetApp\",\"namespace\":\"Microsoft.NetApp\",\"authorizations\":[{\"applicationId\":\"12fb057d-b751-47cd-857c-f2934bb677b4\",\"roleDefinitionId\":\"e4796bef-6b6d-4cbc-ba1e-27f1a308d860\"}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East US\",\"East US 2\",\"Germany North\",\"Germany West Central\",\"Japan East\",\"Japan West\",\"North Europe\",\"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)\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\"},{\"resourceType\":\"locations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"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-15-preview\",\"2019-07-01\",\"2019-06-01\",\"2019-05-01\",\"2017-08-15\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-01\",\"2020-01-01-preview\",\"2019-05-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"Southeast Asia\"],\"apiVersions\":[\"2020-01-01\",\"2019-06-06\",\"2018-05-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-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-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-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-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-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-04-01\",\"2020-01-01-preview\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"None\"},{\"resourceType\":\"peeringServiceLocations\",\"locations\":[],\"apiVersions\":[\"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-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-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-04-01\",\"2020-01-01-preview\",\"2019-09-01-preview\",\"2019-08-01-preview\"],\"defaultApiVersion\":\"2020-04-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2019-01-01-preview\",\"2018-10-01-preview\",\"2015-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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/00000000-0000-0000-0000-000000000000/providers/Microsoft.PowerBI\",\"namespace\":\"Microsoft.PowerBI\",\"authorizations\":[{\"applicationId\":\"00000009-0000-0000-c000-000000000000\",\"roleDefinitionId\":\"d2079c0c-4a98-48b1-b511-eae3fc2003ab\"}],\"resourceTypes\":[{\"resourceType\":\"workspaceCollections\",\"locations\":[\"South Central US\",\"North Central US\",\"East US 2\",\"West US\",\"West Europe\",\"North Europe\",\"Brazil South\",\"Southeast Asia\",\"Australia Southeast\",\"Canada Central\",\"Japan East\",\"UK South\",\"West India\"],\"apiVersions\":[\"2016-01-29\"],\"defaultApiVersion\":\"2016-01-29\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2016-01-29\"],\"defaultApiVersion\":\"2016-01-29\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/checkNameAvailability\",\"locations\":[\"South Central US\",\"North Central US\",\"East US 2\",\"West US\",\"West Europe\",\"North Europe\",\"Brazil South\",\"Southeast Asia\",\"Australia Southeast\",\"Canada Central\",\"Japan East\",\"UK South\",\"West India\"],\"apiVersions\":[\"2016-01-29\"],\"defaultApiVersion\":\"2016-01-29\",\"capabilities\":\"None\"},{\"resourceType\":\"privateLinkServicesForPowerBI\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-06-01\"],\"defaultApiVersion\":\"2020-06-01\",\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"privateLinkServicesForPowerBI/operationResults\",\"locations\":[\"global\"],\"apiVersions\":[\"2020-06-01\"],\"defaultApiVersion\":\"2020-06-01\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-06-01\",\"2016-01-29\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.PowerBIDedicated\",\"namespace\":\"Microsoft.PowerBIDedicated\",\"authorization\":{\"applicationId\":\"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\"roleDefinitionId\":\"490d5987-bcf6-4be6-b6b2-056a78cb693a\"},\"resourceTypes\":[{\"resourceType\":\"capacities\",\"locations\":[\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"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\":[\"2017-10-01\",\"2017-01-01-preview\"],\"defaultApiVersion\":\"2017-01-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2\"],\"apiVersions\":[\"2018-09-01-preview\",\"2017-10-01\",\"2017-01-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.PowerPlatform\",\"namespace\":\"Microsoft.PowerPlatform\",\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ProjectBabylon\",\"namespace\":\"Microsoft.ProjectBabylon\",\"authorizations\":[{\"applicationId\":\"73c2949e-da2d-457a-9607-fcc665198967\",\"roleDefinitionId\":\"1BC09725-0C9B-4F57-A3D0-FCCF4EB40120\"}],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"defaultApiVersion\":\"2019-10-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ProviderHub\",\"namespace\":\"Microsoft.ProviderHub\",\"resourceTypes\":[{\"resourceType\":\"providerRegistrations\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationStatuses\",\"locations\":[],\"apiVersions\":[\"2019-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"providerRegistrations/resourceTypeRegistrations\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"providerRegistrations/defaultRollouts\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"rollouts\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"availableAccounts\",\"locations\":[],\"apiVersions\":[\"2019-02-01-preview\",\"2018-11-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Quantum\",\"namespace\":\"Microsoft.Quantum\",\"authorizations\":[{\"applicationId\":\"a77d91dc-971b-4cf7-90c8-f183194249bc\",\"roleDefinitionId\":\"915bd376-2da8-411d-9906-895a54086a66\"}],\"resourceTypes\":[{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Locations\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Locations/OperationStatuses\",\"locations\":[\"West US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Workspaces\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-04-preview\"],\"defaultApiVersion\":\"2019-11-04-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/offerings\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-11-04-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"East US\",\"East US 2\",\"France Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Central US\",\"Southeast Asia\",\"Switzerland North\",\"UK South\",\"UK West\",\"West Europe\",\"West US 2\",\"West US\"],\"apiVersions\":[\"2020-04-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationsstatus\",\"locations\":[\"Australia East\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"East US\",\"East US 2\",\"France Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Central US\",\"Southeast Asia\",\"Switzerland North\",\"UK South\",\"UK West\",\"West Europe\",\"West US 2\",\"West US\"],\"apiVersions\":[\"2020-04-30\"],\"capabilities\":\"None\"},{\"resourceType\":\"OpenShiftClusters\",\"locations\":[\"Australia East\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central US\",\"East US\",\"East US 2\",\"France Central\",\"Japan East\",\"Japan West\",\"Korea Central\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Central US\",\"Southeast Asia\",\"Switzerland North\",\"UK South\",\"UK West\",\"West Europe\",\"West US 2\",\"West US\"],\"apiVersions\":[\"2020-04-30\"],\"defaultApiVersion\":\"2020-04-30\",\"capabilities\":\"SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-04-30\",\"2019-12-31-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\":[\"East US 2 EUAP\"],\"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\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"namespaces/hybridconnections/authorizationrules\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"namespaces/wcfrelays\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"namespaces/wcfrelays/authorizationrules\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\",\"2015-08-01\",\"2014-09-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-04-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2017-04-01\",\"2016-07-01\"],\"defaultApiVersion\":\"2017-04-01\",\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2017-04-01\"}],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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-04-01-preview\",\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"resourceChanges\",\"locations\":[\"East US\"],\"apiVersions\":[\"2020-04-01-preview\",\"2018-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"resourceChangeDetails\",\"locations\":[\"East US\"],\"apiVersions\":[\"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/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"SupportsLocation\"},{\"resourceType\":\"subscriptions/resourceGroups\",\"locations\":[\"Central US\",\"East Asia\",\"Southeast Asia\",\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"North Central US\",\"South Central US\",\"West Central US\",\"North Europe\",\"West Europe\",\"Japan East\",\"Japan West\",\"Brazil South\",\"Australia Southeast\",\"Australia East\",\"West India\",\"South India\",\"Central India\",\"Canada Central\",\"Canada East\",\"UK South\",\"UK West\",\"Korea Central\",\"Korea South\",\"France Central\",\"South Africa North\",\"UAE North\",\"Australia Central\",\"Switzerland North\",\"Germany West Central\",\"Norway East\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"subscriptions/resourcegroups/resources\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions/locations\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2016-06-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions/tagnames\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions/tagNames/tagValues\",\"locations\":[],\"apiVersions\":[\"2019-05-01\",\"2019-04-01\",\"2019-03-01\",\"2018-11-01\",\"2018-09-01\",\"2018-08-01\",\"2018-07-01\",\"2018-05-01\",\"2018-02-01\",\"2018-01-01\",\"2017-08-01\",\"2017-06-01\",\"2017-05-10\",\"2017-05-01\",\"2017-03-01\",\"2016-09-01\",\"2016-07-01\",\"2016-06-01\",\"2016-02-01\",\"2015-11-01\",\"2015-01-01\",\"2014-04-01-preview\"],\"apiProfiles\":[{\"profileVersion\":\"2018-06-01-profile\",\"apiVersion\":\"2016-06-01\"},{\"profileVersion\":\"2019-03-01-hybrid\",\"apiVersion\":\"2018-05-01\"}],\"capabilities\":\"None\"},{\"resourceType\":\"deployments\",\"locations\":[],\"apiVersions\":[\"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-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\":\"deploymentScripts\",\"locations\":[\"East Asia\",\"Southeast Asia\",\"Australia East\",\"Brazil South\",\"Canada Central\",\"East US 2\",\"East US\",\"Central US\",\"North Central US\",\"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\",\"Canada East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Canada East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"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\",\"Canada East\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationFree\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2016-03-01\",\"2016-01-01\",\"2014-08-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"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\":[\"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\":\"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\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SerialConsole\",\"namespace\":\"Microsoft.SerialConsole\",\"resourceTypes\":[{\"resourceType\":\"consoleServices\",\"locations\":[],\"apiVersions\":[\"2018-05-01\"],\"capabilities\":\"None\"},{\"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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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-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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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-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\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"managedclusters/nodetypes\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/managedClusterOperations\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/managedClusterOperationResults\",\"locations\":[\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"apiVersions\":[\"2018-09-01-preview\",\"2018-07-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"networks\",\"locations\":[\"East US\",\"East US 2\",\"West US\",\"West US 2\",\"South Central US\",\"Central US\",\"France Central\",\"West Europe\",\"North Europe\",\"UK South\",\"UK West\",\"Australia East\",\"East Asia\",\"Southeast Asia\",\"Korea Central\",\"West India\",\"Brazil South\",\"Japan East\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"2018-09-01-preview\",\"2018-07-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2018-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServicesHub\",\"namespace\":\"Microsoft.ServicesHub\",\"authorizations\":[],\"resourceTypes\":[{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-08-15-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\":[\"2019-07-01\",\"2018-09-01-preview\",\"2018-06-01\",\"2018-03-01\",\"2018-02-01\",\"2017-12-01\",\"2017-09-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2017-03-01-preview\"],\"defaultApiVersion\":\"2017-03-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"Locations/registerSqlVmCandidate\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2017-03-01-preview\"],\"defaultApiVersion\":\"2017-03-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\"],\"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\":[],\"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\"],\"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\"],\"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\"],\"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\"],\"apiVersions\":[\"2020-03-01\"],\"defaultApiVersion\":\"2020-03-01\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\":[\"2016-10-01\",\"2016-06-01\",\"2015-03-15\",\"2014-09-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"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\":\"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\"],\"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\"],\"apiVersions\":[\"2019-06-01\",\"2018-11-01\",\"2017-04-01-preview\",\"2016-03-01\",\"2015-11-01\",\"2015-10-01\",\"2015-09-01\",\"2015-08-01-preview\",\"2015-06-01\",\"2015-05-01\",\"2015-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":[\"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\":[\"2019-10-01-preview\",\"2019-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"rename\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-10-01-preview\",\"2019-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"enable\",\"locations\":[\"West US\"],\"apiVersions\":[\"2019-10-01-preview\",\"2019-03-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"subscriptions\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"aliases\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"Central US\"],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"acceptChangeTenant\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"changeTenantStatus\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"changeTenantRequest\",\"locations\":[],\"apiVersions\":[\"2019-10-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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 US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/bigDataPools\",\"locations\":[\"West US 2\",\"East US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"West Central US\",\"South Central US\",\"East US 2\",\"UK South\",\"West US\",\"Australia Southeast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/sqlPools\",\"locations\":[\"West US 2\",\"East US\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"West Central US\",\"South Central US\",\"East US 2\",\"UK South\",\"West US\",\"Australia Southeast\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"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 US 2 EUAP\"],\"apiVersions\":[\"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 US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[],\"apiVersions\":[\"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 US 2 EUAP\"],\"apiVersions\":[\"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 US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"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 US 2 EUAP\"],\"apiVersions\":[\"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 US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/sqlDatabases\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations/sqlDatabaseAzureAsyncOperation\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/sqlDatabaseOperationResults\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/sqlPoolAzureAsyncOperation\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/sqlPoolOperationResults\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-04-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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\"],\"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\":[\"France Central\",\"South Central Us\",\"East US 2\",\"West US\",\"East US\",\"East US 2 EUAP\",\"North Europe\",\"West Europe\",\"Southeast Asia\",\"Australia East\",\"Australia Southeast\",\"East Asia\",\"UK West\",\"UK South\",\"West US 2\",\"Central US\",\"West Central US\",\"North Central US\"],\"apiVersions\":[\"2017-02-28-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Token\",\"namespace\":\"Microsoft.Token\",\"authorizations\":[{\"applicationId\":\"fe053c5f-3692-4f14-aef2-ee34fc081cae\"}],\"resourceTypes\":[{\"resourceType\":\"stores\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"stores/accessPolicies\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"stores/services\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"None\"},{\"resourceType\":\"stores/services/tokens\",\"locations\":[\"Brazil South\",\"Central US\",\"North Europe\",\"Japan West\",\"Australia Southeast\",\"West US\",\"West Central US\"],\"apiVersions\":[\"2018-08-01-preview\"],\"defaultApiVersion\":\"2018-08-01-preview\",\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-02-14\",\"2019-05-01-preview\",\"2019-02-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VMware\",\"namespace\":\"Microsoft.VMware\",\"authorizations\":[{\"applicationId\":\"ac9dc5fe-b644-4832-9d03-d9f1ab70c5f7\",\"roleDefinitionId\":\"dd032bd9-65cc-4171-b688-c612566422ae\"}],\"resourceTypes\":[{\"resourceType\":\"Locations\",\"locations\":[],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Locations/OperationStatuses\",\"locations\":[\"East US\",\"West US\",\"East US 2 EUAP\",\"West Europe\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"ArcZones\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VCenters\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"ResourcePools\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VirtualNetworks\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VirtualMachineTemplates\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"VirtualMachines\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-20-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VMwareCloudSimple\",\"namespace\":\"Microsoft.VMwareCloudSimple\",\"authorizations\":[{\"applicationId\":\"d96199e7-4674-4bbf-a1c6-ddf93682f5ee\",\"roleDefinitionId\":\"533012ca-a3e7-44e4-93b4-3143f8b9409d\",\"allowedThirdPartyExtensions\":[{\"name\":\"CloudSimpleExtension\"}]}],\"resourceTypes\":[{\"resourceType\":\"virtualMachines\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dedicatedCloudNodes\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"dedicatedCloudServices\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"locations\",\"locations\":[],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/usages\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/availabilities\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds/virtualNetworks\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds/virtualMachineTemplates\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/privateClouds/resourcePools\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationresults\",\"locations\":[\"South Central US\",\"Switzerland North\",\"Switzerland West\",\"West Europe\",\"East US\",\"West US\"],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-04-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.VnfManager\",\"namespace\":\"Microsoft.VnfManager\",\"authorizations\":[{\"applicationId\":\"b8ed041c-aa91-418e-8f47-20c70abc2de1\",\"roleDefinitionId\":\"c8d69fc0-f0ed-43b3-bf1d-4dfdaacc6d2d\"}],\"resourceTypes\":[{\"resourceType\":\"Operations\",\"locations\":[],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations\",\"locations\":[\"East US\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"locations/operationstatuses\",\"locations\":[\"East US\",\"North Europe\",\"East Asia\",\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"devices\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"vnfs\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"vendors/vnfs\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-01-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2020-05-26-privatepreview\",\"2020-05-26-preview\",\"2020-05-26-beta\",\"2020-05-26-alpha\",\"2019-07-01-privatepreview\",\"2019-07-01-preview\",\"2019-07-01-beta\",\"2019-07-01-alpha\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2020-05-26-privatepreview\",\"2020-05-26-preview\",\"2020-05-26-beta\",\"2020-05-26-alpha\",\"2019-07-01-privatepreview\",\"2019-07-01-preview\",\"2019-07-01-beta\",\"2019-07-01-alpha\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Microsoft.WindowsIoT\",\"namespace\":\"Microsoft.WindowsIoT\",\"resourceTypes\":[{\"resourceType\":\"DeviceServices\",\"locations\":[\"West US\",\"East US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01\",\"2018-02-16-preview\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"West US\",\"East US\",\"West Central US\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01\",\"2018-02-16-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.WorkloadBuilder\",\"namespace\":\"Microsoft.WorkloadBuilder\",\"authorizations\":[{\"applicationId\":\"63c2c773-89fe-4164-a02f-b8c7fc1772ae\",\"roleDefinitionId\":\"322358fa-ea51-4f6c-b9d6-3be64015f074\"}],\"resourceTypes\":[{\"resourceType\":\"Locations\",\"locations\":[],\"apiVersions\":[\"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\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workloads\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workloads/versions/artifacts\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workloads/versions\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workloads/instances\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2020-07-01-privatepreview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"2018-08-31-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"componentsSummary\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"monitorInstancesSummary\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"monitorInstances\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"components\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"monitors\",\"locations\":[],\"apiVersions\":[\"2020-01-13-preview\",\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"},{\"resourceType\":\"notificationSettings\",\"locations\":[],\"apiVersions\":[\"2018-08-31-preview\"],\"capabilities\":\"SupportsExtension\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Sendgrid.Email\",\"namespace\":\"Sendgrid.Email\",\"resourceTypes\":[{\"resourceType\":\"accounts\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"France South\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"UAE Central\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\"],\"apiVersions\":[\"2015-01-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"Australia East\",\"Australia Southeast\",\"Brazil South\",\"Canada Central\",\"Canada East\",\"Central India\",\"Central US\",\"East Asia\",\"East US\",\"East US 2\",\"France Central\",\"France South\",\"Japan East\",\"Japan West\",\"Korea Central\",\"Korea South\",\"North Central US\",\"North Europe\",\"South Africa North\",\"South Africa West\",\"South Central US\",\"South India\",\"Southeast Asia\",\"UAE Central\",\"UAE North\",\"UK South\",\"UK West\",\"West Central US\",\"West Europe\",\"West India\",\"West US\",\"West US 2\"],\"apiVersions\":[\"2015-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/stackify.retrace\",\"namespace\":\"stackify.retrace\",\"resourceTypes\":[{\"resourceType\":\"services\",\"locations\":[\"West US\"],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"listCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"updateCommunicationPreference\",\"locations\":[],\"apiVersions\":[\"2016-01-01\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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/00000000-0000-0000-0000-000000000000/providers/Wandisco.Fusion\",\"namespace\":\"Wandisco.Fusion\",\"authorizations\":[{\"applicationId\":\"37b36496-3f4f-443a-a406-5e0a0535f6a3\",\"roleDefinitionId\":\"b10cdc1f-fd21-4fe9-bae7-7e2e25a91a21\"}],\"resourceTypes\":[{\"resourceType\":\"Locations\",\"locations\":[\"East US\"],\"apiVersions\":[\"2019-10-01\",\"2019-09-01-preview\"],\"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\":[\"2019-10-01\",\"2019-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registeredSubscriptions\",\"locations\":[],\"apiVersions\":[\"2019-09-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[],\"apiVersions\":[\"2019-09-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ProjectArcadia\",\"namespace\":\"Microsoft.ProjectArcadia\",\"authorizations\":[{\"applicationId\":\"9e09aefc-b2e5-4d19-9f74-3e3e8b11a57b\",\"roleDefinitionId\":\"a53b114a-452b-4d20-bcd6-c51c3c8c5878\"},{\"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\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/sparkComputes\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/sqlComputes\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"workspaces/operationStatus\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"workspaces/operationResults\",\"locations\":[\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"EAST US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operations\",\"locations\":[\"EAST US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.SecurityDetonation\",\"namespace\":\"Microsoft.SecurityDetonation\",\"authorizations\":[{\"applicationId\":\"29820072-374d-49b8-945a-3941d7e9b468\",\"roleDefinitionId\":\"4ddf1807-30b0-464a-9d16-a8822daf866b\"}],\"resourceTypes\":[{\"resourceType\":\"chambers\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SupportsTags, SupportsLocation\"},{\"resourceType\":\"operations\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"operationResults\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"checkNameAvailability\",\"locations\":[\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2020-07-01-preview\",\"2019-08-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"NotRegistered\",\"registrationPolicy\":\"RegistrationRequired\"}]}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "POST", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/unregister?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1aab07da-bd7a-4024-9068-c3f9398892bf", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:10 GMT", - "content-length" : "30395", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b3b06116-8228-4950-b3a0-5b4a69f3021c", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092411Z:b3b06116-8228-4950-b3a0-5b4a69f3021c", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "b3b06116-8228-4950-b3a0-5b4a69f3021c", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 09:58:47 GMT", + "x-ms-correlation-request-id" : "2709f8a9-42b6-4e04-aa3f-becb61280a7c", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095847Z:2709f8a9-42b6-4e04-aa3f-becb61280a7c", + "Expires" : "-1", + "Content-Length" : "31055", + "x-ms-request-id" : "2709f8a9-42b6-4e04-aa3f-becb61280a7c", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e3f7020e-d863-4d00-b094-5dd2678e2b08", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:11 GMT", - "content-length" : "30395", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", + "StatusCode" : "200", + "Date" : "Tue, 11 Aug 2020 09:58:46 GMT", + "x-ms-correlation-request-id" : "22d2bffc-9b48-40d4-8d21-f71e6aa0a29b", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095847Z:22d2bffc-9b48-40d4-8d21-f71e6aa0a29b", + "Expires" : "-1", + "Content-Length" : "31055", + "x-ms-request-id" : "22d2bffc-9b48-40d4-8d21-f71e6aa0a29b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "85cc84d2-0daf-4f9c-9362-fb83eeb2104d", + "Content-Type" : "application/json" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", + "StatusCode" : "200", + "Date" : "Tue, 11 Aug 2020 09:58:52 GMT", + "x-ms-correlation-request-id" : "5d7dcd2e-951b-4cd7-a30b-ff6b3229dcdc", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095852Z:5d7dcd2e-951b-4cd7-a30b-ff6b3229dcdc", + "Expires" : "-1", + "Content-Length" : "31055", + "x-ms-request-id" : "5d7dcd2e-951b-4cd7-a30b-ff6b3229dcdc", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d071bd81-9390-44f4-9f6c-e93b7becb52c", + "Content-Type" : "application/json" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11996", + "StatusCode" : "200", + "Date" : "Tue, 11 Aug 2020 09:58:56 GMT", + "x-ms-correlation-request-id" : "1f9f3607-4c6f-43c7-b9bd-2b68f07cef3a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095857Z:1f9f3607-4c6f-43c7-b9bd-2b68f07cef3a", + "Expires" : "-1", + "Content-Length" : "31055", + "x-ms-request-id" : "1f9f3607-4c6f-43c7-b9bd-2b68f07cef3a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "aaaaef8c-c476-465c-876a-4977b58e433d", + "Content-Type" : "application/json" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", + "StatusCode" : "200", + "Date" : "Tue, 11 Aug 2020 09:59:01 GMT", + "x-ms-correlation-request-id" : "47a9e0d6-d0ff-4f5c-ad7b-5492dca9f802", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095902Z:47a9e0d6-d0ff-4f5c-ad7b-5492dca9f802", + "Expires" : "-1", + "Content-Length" : "31055", + "x-ms-request-id" : "47a9e0d6-d0ff-4f5c-ad7b-5492dca9f802", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c4b5d57a-fa66-4afe-b0ec-af32612131d9", + "Content-Type" : "application/json" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3cd1d142-eaa6-4b54-b264-492f428cc0c0", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092412Z:3cd1d142-eaa6-4b54-b264-492f428cc0c0", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3cd1d142-eaa6-4b54-b264-492f428cc0c0", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:07 GMT", + "x-ms-correlation-request-id" : "9172bf4e-7af2-4a33-8031-716ea259cb29", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095907Z:9172bf4e-7af2-4a33-8031-716ea259cb29", + "Expires" : "-1", + "Content-Length" : "31055", + "x-ms-request-id" : "9172bf4e-7af2-4a33-8031-716ea259cb29", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "4d99dd0c-d265-4384-a544-8b787e5a4b49", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:17 GMT", - "content-length" : "30395", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", + "StatusCode" : "200", + "Date" : "Tue, 11 Aug 2020 09:59:12 GMT", + "x-ms-correlation-request-id" : "1b8344ca-6b48-44ea-bb55-a950330734dd", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095912Z:1b8344ca-6b48-44ea-bb55-a950330734dd", + "Expires" : "-1", + "Content-Length" : "31055", + "x-ms-request-id" : "1b8344ca-6b48-44ea-bb55-a950330734dd", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "951fabb8-dfc6-4016-80ad-a6d505edb8a6", + "Content-Type" : "application/json" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11995", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "3cee7c4c-8dac-4657-8d5f-0cc6a9185d39", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092417Z:3cee7c4c-8dac-4657-8d5f-0cc6a9185d39", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "3cee7c4c-8dac-4657-8d5f-0cc6a9185d39", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:17 GMT", + "x-ms-correlation-request-id" : "81d1a331-1784-4ec5-9f32-95517f5b7a04", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095918Z:81d1a331-1784-4ec5-9f32-95517f5b7a04", + "Expires" : "-1", + "Content-Length" : "31055", + "x-ms-request-id" : "81d1a331-1784-4ec5-9f32-95517f5b7a04", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b16e0757-f890-498d-a31f-627ba8a46a70", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:23 GMT", - "content-length" : "30394", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11987", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", + "StatusCode" : "200", + "Date" : "Tue, 11 Aug 2020 09:59:22 GMT", + "x-ms-correlation-request-id" : "9be3a75e-e0c2-4ef3-b897-2710d46ead8a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095923Z:9be3a75e-e0c2-4ef3-b897-2710d46ead8a", + "Expires" : "-1", + "Content-Length" : "31055", + "x-ms-request-id" : "9be3a75e-e0c2-4ef3-b897-2710d46ead8a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "321bc343-0721-47dd-857e-bd86bccc0700", + "Content-Type" : "application/json" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "239d78ed-0e6b-445d-8668-1381d86f54ee", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092423Z:239d78ed-0e6b-445d-8668-1381d86f54ee", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "239d78ed-0e6b-445d-8668-1381d86f54ee", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistered\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:27 GMT", + "x-ms-correlation-request-id" : "5a2248b3-d9da-4317-849a-46ffeb35fd42", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095928Z:5a2248b3-d9da-4317-849a-46ffeb35fd42", + "Expires" : "-1", + "Content-Length" : "31054", + "x-ms-request-id" : "5a2248b3-d9da-4317-849a-46ffeb35fd42", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Unregistered\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "POST", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry/register?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "c1e37e45-7f54-49c0-94d7-21efc743a074", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:26 GMT", - "content-length" : "30393", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e6fc01db-779f-428c-a913-216e57d3f6ec", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092426Z:e6fc01db-779f-428c-a913-216e57d3f6ec", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e6fc01db-779f-428c-a913-216e57d3f6ec", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:34 GMT", + "x-ms-correlation-request-id" : "5cb64d17-ee0c-4839-b95c-ccee73059e5a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095935Z:5cb64d17-ee0c-4839-b95c-ccee73059e5a", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "5cb64d17-ee0c-4839-b95c-ccee73059e5a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "2bba4cd3-4163-4beb-85ce-f66c5d344a58", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:31 GMT", - "content-length" : "30393", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d9cf0291-5b7b-4d97-8973-e4caa1049b33", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092432Z:d9cf0291-5b7b-4d97-8973-e4caa1049b33", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d9cf0291-5b7b-4d97-8973-e4caa1049b33", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:40 GMT", + "x-ms-correlation-request-id" : "2a437b56-cc67-4f22-b8a0-9f793fc381c3", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095940Z:2a437b56-cc67-4f22-b8a0-9f793fc381c3", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "2a437b56-cc67-4f22-b8a0-9f793fc381c3", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "f2417f33-1083-4db4-be31-9aefe961c8fc", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:37 GMT", - "content-length" : "30393", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e4410746-4a61-454f-be79-0b019b450ea3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092437Z:e4410746-4a61-454f-be79-0b019b450ea3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e4410746-4a61-454f-be79-0b019b450ea3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:44 GMT", + "x-ms-correlation-request-id" : "26e9b1a7-4642-4779-83e3-73046392b819", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095945Z:26e9b1a7-4642-4779-83e3-73046392b819", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "26e9b1a7-4642-4779-83e3-73046392b819", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "19609e22-21d6-400a-83b1-8be11989daa7", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:42 GMT", - "content-length" : "30393", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11990", + "x-ms-ratelimit-remaining-subscription-reads" : "11992", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "f844b7e6-dffd-443b-a124-5ed0290e11c3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092442Z:f844b7e6-dffd-443b-a124-5ed0290e11c3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "f844b7e6-dffd-443b-a124-5ed0290e11c3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:49 GMT", + "x-ms-correlation-request-id" : "0d0a4128-61de-4f6c-b78b-d530b9b6e76b", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095950Z:0d0a4128-61de-4f6c-b78b-d530b9b6e76b", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "0d0a4128-61de-4f6c-b78b-d530b9b6e76b", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "02bb49cb-5f48-4434-9b56-002c2af9fb60", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:47 GMT", - "content-length" : "30393", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11977", + "x-ms-ratelimit-remaining-subscription-reads" : "11987", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "d6331fe3-4908-4ca4-a17d-f18a6ed3c505", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092448Z:d6331fe3-4908-4ca4-a17d-f18a6ed3c505", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "d6331fe3-4908-4ca4-a17d-f18a6ed3c505", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 09:59:54 GMT", + "x-ms-correlation-request-id" : "f0b857a5-842d-4fb5-bcda-0e9b51cd4738", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095955Z:f0b857a5-842d-4fb5-bcda-0e9b51cd4738", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "f0b857a5-842d-4fb5-bcda-0e9b51cd4738", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "573c60f6-22bb-4fad-8b6a-009128e27f1e", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:53 GMT", - "content-length" : "30393", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11974", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "649b4519-f5f5-4b1c-bee4-2a7f8957b38d", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092453Z:649b4519-f5f5-4b1c-bee4-2a7f8957b38d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "649b4519-f5f5-4b1c-bee4-2a7f8957b38d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 10:00:00 GMT", + "x-ms-correlation-request-id" : "711a0dfc-6e28-427a-9ea4-5adfbc7436cb", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100000Z:711a0dfc-6e28-427a-9ea4-5adfbc7436cb", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "711a0dfc-6e28-427a-9ea4-5adfbc7436cb", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "3662182c-8b86-4c38-8869-a7b1ecf40495", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:59 GMT", - "content-length" : "30393", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "x-ms-ratelimit-remaining-subscription-reads" : "11986", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "9126e098-8079-4f98-8177-4bb81229c850", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092459Z:9126e098-8079-4f98-8177-4bb81229c850", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "9126e098-8079-4f98-8177-4bb81229c850", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 10:00:04 GMT", + "x-ms-correlation-request-id" : "7c6c5812-7452-4de4-951c-89b1e4358d02", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100005Z:7c6c5812-7452-4de4-951c-89b1e4358d02", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "7c6c5812-7452-4de4-951c-89b1e4358d02", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "811bee5d-11e4-4a24-844b-a2c177de3eb8", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:04 GMT", - "content-length" : "30393", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11984", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "4025bdb6-9add-496b-bd85-b7ed4a103e6a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092505Z:4025bdb6-9add-496b-bd85-b7ed4a103e6a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "4025bdb6-9add-496b-bd85-b7ed4a103e6a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 10:00:10 GMT", + "x-ms-correlation-request-id" : "1c996520-214c-420d-85a5-db3b64b563c7", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100010Z:1c996520-214c-420d-85a5-db3b64b563c7", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "1c996520-214c-420d-85a5-db3b64b563c7", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "557e9dfd-fcc7-475b-8b43-6c29b17c1365", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:09 GMT", - "content-length" : "30393", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11983", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c622f5e2-82ed-4273-835d-c3e8ddd77836", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092510Z:c622f5e2-82ed-4273-835d-c3e8ddd77836", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c622f5e2-82ed-4273-835d-c3e8ddd77836", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 10:00:15 GMT", + "x-ms-correlation-request-id" : "41781c88-930c-4f1c-aebc-af5ec70a6df6", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100015Z:41781c88-930c-4f1c-aebc-af5ec70a6df6", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "41781c88-930c-4f1c-aebc-af5ec70a6df6", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "5e9633ba-7dc7-4728-8310-cd1243eef394", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:15 GMT", - "content-length" : "30393", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11981", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8895ed25-d04b-475d-a0c0-677927c92d15", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092515Z:8895ed25-d04b-475d-a0c0-677927c92d15", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "8895ed25-d04b-475d-a0c0-677927c92d15", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 10:00:20 GMT", + "x-ms-correlation-request-id" : "0efdceaf-ca20-44dd-a420-cd64887b1096", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100020Z:0efdceaf-ca20-44dd-a420-cd64887b1096", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "0efdceaf-ca20-44dd-a420-cd64887b1096", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "63c5e7c3-c040-4ecc-8da5-aa38c725dcce", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:21 GMT", - "content-length" : "30393", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11958", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "48b52e5a-d80d-4afe-b567-d43f602f5198", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092521Z:48b52e5a-d80d-4afe-b567-d43f602f5198", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "48b52e5a-d80d-4afe-b567-d43f602f5198", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 10:00:25 GMT", + "x-ms-correlation-request-id" : "ab73eb4a-248d-4cfc-ba65-0fc04b6a3e53", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100026Z:ab73eb4a-248d-4cfc-ba65-0fc04b6a3e53", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "ab73eb4a-248d-4cfc-ba65-0fc04b6a3e53", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "08c7e898-edfb-4974-be93-cc348db70092", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:26 GMT", - "content-length" : "30393", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11957", + "x-ms-ratelimit-remaining-subscription-reads" : "11985", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "bf8e8d19-95fa-444a-a2e2-197b7703847f", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092526Z:bf8e8d19-95fa-444a-a2e2-197b7703847f", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "bf8e8d19-95fa-444a-a2e2-197b7703847f", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 10:00:31 GMT", + "x-ms-correlation-request-id" : "ab78f19f-6c71-450a-88aa-3cc54c999f57", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100031Z:ab78f19f-6c71-450a-88aa-3cc54c999f57", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "ab78f19f-6c71-450a-88aa-3cc54c999f57", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "2deb33c9-791e-4cd8-95fe-0d5a625acaf3", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:31 GMT", - "content-length" : "30393", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11954", + "x-ms-ratelimit-remaining-subscription-reads" : "11982", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "2ed5bec0-4818-4867-96cf-5a9190263b0d", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092532Z:2ed5bec0-4818-4867-96cf-5a9190263b0d", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "2ed5bec0-4818-4867-96cf-5a9190263b0d", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 10:00:35 GMT", + "x-ms-correlation-request-id" : "d7ec871b-b8a5-404c-8bc9-a9ea1cd4ec08", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100036Z:d7ec871b-b8a5-404c-8bc9-a9ea1cd4ec08", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "d7ec871b-b8a5-404c-8bc9-a9ea1cd4ec08", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "8e66f88d-65ea-46ab-ad9d-db5d7fee7f6d", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:36 GMT", - "content-length" : "30392", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11979", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "8bc81ee0-571d-4f4b-9d72-cb6191fc3b22", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092537Z:8bc81ee0-571d-4f4b-9d72-cb6191fc3b22", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "8bc81ee0-571d-4f4b-9d72-cb6191fc3b22", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}" - } + "Date" : "Tue, 11 Aug 2020 10:00:40 GMT", + "x-ms-correlation-request-id" : "9707826a-3ff0-44f1-83e9-62caa9b34e88", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100041Z:9707826a-3ff0-44f1-83e9-62caa9b34e88", + "Expires" : "-1", + "Content-Length" : "31053", + "x-ms-request-id" : "9707826a-3ff0-44f1-83e9-62caa9b34e88", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registering\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null + }, { + "Method" : "GET", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerRegistry?api-version=2020-06-01", + "Headers" : { + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a46af76d-e373-4fae-b277-911128d3a56d", + "Content-Type" : "application/json" + }, + "Response" : { + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", + "StatusCode" : "200", + "Date" : "Tue, 11 Aug 2020 10:00:45 GMT", + "x-ms-correlation-request-id" : "afa31d67-0a25-46a3-bf0b-6cc922fdb850", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T100046Z:afa31d67-0a25-46a3-bf0b-6cc922fdb850", + "Expires" : "-1", + "Content-Length" : "31052", + "x-ms-request-id" : "afa31d67-0a25-46a3-bf0b-6cc922fdb850", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-03-01\"],\"capabilities\":\"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, SupportsTags, SupportsLocation\"},{\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-06-01-preview\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/agentPools\",\"locations\":[\"East US\",\"West US 2\",\"South Central US\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-05-01\",\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/GetCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"2017-10-01\"],\"capabilities\":\"None\"},{\"resourceType\":\"registries/regenerateCredentials\",\"locations\":[\"West US\",\"East US\",\"South Central US\",\"West Europe\",\"East US 2 EUAP\",\"Central US EUAP\"],\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"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\",\"East US 2 EUAP\",\"Central US EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"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\",\"Central US EUAP\",\"East US 2 EUAP\"],\"apiVersions\":[\"2019-12-01-preview\",\"2019-05-01-preview\",\"2019-05-01\",\"2017-10-01\",\"2017-06-01-preview\"],\"capabilities\":\"None\"}],\"registrationState\":\"Registered\",\"registrationPolicy\":\"RegistrationRequired\"}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null } ], "variables" : [ ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canUpdateVirtualNetworkDeployment.json b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canUpdateVirtualNetworkDeployment.json index 9dbbbd22a59f..b79274267f84 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canUpdateVirtualNetworkDeployment.json +++ b/sdk/resourcemanager/azure-resourcemanager-resources/src/test/resources/session-records/canUpdateVirtualNetworkDeployment.json @@ -1,326 +1,349 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5f372099?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4369704?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "b6f76cec-f815-40b9-9e51-a8f7b424df8c", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:03 GMT", - "content-length" : "315", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "7f6567b7-e1e9-4cd0-9448-47dc1019574a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092404Z:7f6567b7-e1e9-4cd0-9448-47dc1019574a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "7f6567b7-e1e9-4cd0-9448-47dc1019574a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099\",\"name\":\"rg5f372099\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"tags\":{\"date\":\"2020-07-27T09:24:01.067892100Z\",\"product\":\"javasdk\",\"cause\":\"automation\"},\"properties\":{\"provisioningState\":\"Succeeded\"}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:35 GMT", + "x-ms-correlation-request-id" : "3d927c1d-c183-4d00-87b6-b89b544d179a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095836Z:3d927c1d-c183-4d00-87b6-b89b544d179a", + "Expires" : "-1", + "Content-Length" : "223", + "x-ms-request-id" : "3d927c1d-c183-4d00-87b6-b89b544d179a", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704\",\"name\":\"rg4369704\",\"type\":\"Microsoft.Resources/resourceGroups\",\"location\":\"southcentralus\",\"properties\":{\"provisioningState\":\"Succeeded\"}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "2a6db953-91a1-4b88-97ad-56a335c3a9f7", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:09 GMT", - "content-length" : "2557", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1190", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "201", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c261a912-1e6b-4a29-b0f7-7c05393c3488", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092410Z:c261a912-1e6b-4a29-b0f7-7c05393c3488", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c261a912-1e6b-4a29-b0f7-7c05393c3488", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099\",\"name\":\"dpC5f372099\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-07-27T09:24:08.2343905Z\",\"duration\":\"PT2.0888039S\",\"correlationId\":\"c261a912-1e6b-4a29-b0f7-7c05393c3488\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099/operationStatuses/08586057650393320377?api-version=2020-06-01" - } + "Date" : "Tue, 11 Aug 2020 09:58:41 GMT", + "x-ms-correlation-request-id" : "ad294b9e-0d92-4ec7-9e9b-ebd983f8e609", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095841Z:ad294b9e-0d92-4ec7-9e9b-ebd983f8e609", + "Expires" : "-1", + "Content-Length" : "2549", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704/operationStatuses/08586044669668955090?api-version=2020-06-01", + "x-ms-request-id" : "ad294b9e-0d92-4ec7-9e9b-ebd983f8e609", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704\",\"name\":\"dpC4369704\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-08-11T09:58:39.8340425Z\",\"duration\":\"PT1.2519174S\",\"correlationId\":\"ad294b9e-0d92-4ec7-9e9b-ebd983f8e609\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "58d0bdb1-ece0-4867-83f9-bc823ff4790f", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:10 GMT", - "content-length" : "2557", - "expires" : "-1", - "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11991", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "x-ms-ratelimit-remaining-subscription-reads" : "11998", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "70a49c82-51ab-47bf-8268-aadc70301577", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092411Z:70a49c82-51ab-47bf-8268-aadc70301577", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "70a49c82-51ab-47bf-8268-aadc70301577", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099\",\"name\":\"dpC5f372099\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-07-27T09:24:08.2343905Z\",\"duration\":\"PT2.0888039S\",\"correlationId\":\"c261a912-1e6b-4a29-b0f7-7c05393c3488\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:42 GMT", + "x-ms-correlation-request-id" : "9427055e-dd46-4e49-82ca-7f4a9e793459", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095842Z:9427055e-dd46-4e49-82ca-7f4a9e793459", + "Expires" : "-1", + "Content-Length" : "2548", + "x-ms-request-id" : "9427055e-dd46-4e49-82ca-7f4a9e793459", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704\",\"name\":\"dpC4369704\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Running\",\"timestamp\":\"2020-08-11T09:58:41.8684904Z\",\"duration\":\"PT3.2863653S\",\"correlationId\":\"ad294b9e-0d92-4ec7-9e9b-ebd983f8e609\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "POST", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099/cancel?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704/cancel?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "88956e39-8cdb-434c-923c-8cd05047e339", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:12 GMT", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1198", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "X-Content-Type-Options" : "nosniff", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095844Z:146713e9-32a3-4e9f-9184-63c522f76e89", + "x-ms-ratelimit-remaining-subscription-writes" : "1199", + "Expires" : "-1", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "204", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "65ca62c5-c893-4b28-9a49-1c93ad4883c5", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092412Z:65ca62c5-c893-4b28-9a49-1c93ad4883c5", - "cache-control" : "no-cache", - "x-ms-request-id" : "65ca62c5-c893-4b28-9a49-1c93ad4883c5", - "Body" : "" - } + "x-ms-request-id" : "146713e9-32a3-4e9f-9184-63c522f76e89", + "Date" : "Tue, 11 Aug 2020 09:58:43 GMT", + "x-ms-correlation-request-id" : "146713e9-32a3-4e9f-9184-63c522f76e89" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ad1b0ef6-c200-4a04-a811-8ab8d7ddb6bf", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:13 GMT", - "content-length" : "2557", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", "x-ms-ratelimit-remaining-subscription-reads" : "11999", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "c2828d45-e56c-465e-ba72-e09b3a655f7a", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092413Z:c2828d45-e56c-465e-ba72-e09b3a655f7a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "c2828d45-e56c-465e-ba72-e09b3a655f7a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099\",\"name\":\"dpC5f372099\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Canceled\",\"timestamp\":\"2020-07-27T09:24:12.2068497Z\",\"duration\":\"PT6.0612631S\",\"correlationId\":\"c261a912-1e6b-4a29-b0f7-7c05393c3488\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}" - } + "Date" : "Tue, 11 Aug 2020 09:58:44 GMT", + "x-ms-correlation-request-id" : "99e14961-b1bf-4edd-bcb1-abe495e0a67e", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095844Z:99e14961-b1bf-4edd-bcb1-abe495e0a67e", + "Expires" : "-1", + "Content-Length" : "2549", + "x-ms-request-id" : "99e14961-b1bf-4edd-bcb1-abe495e0a67e", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704\",\"name\":\"dpC4369704\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.json\",\"contentVersion\":\"1.0.0.0\"},\"templateHash\":\"12083796291331454487\",\"parametersLink\":{\"uri\":\"https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vnet-two-subnets/azuredeploy.parameters.json\",\"contentVersion\":\"1.0.0.0\"},\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet1\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet2\"},\"location\":{\"type\":\"String\",\"value\":\"southcentralus\"}},\"mode\":\"Complete\",\"provisioningState\":\"Canceled\",\"timestamp\":\"2020-08-11T09:58:43.2169484Z\",\"duration\":\"PT4.6348233S\",\"correlationId\":\"ad294b9e-0d92-4ec7-9e9b-ebd983f8e609\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]},{\"resourceType\":\"virtualNetworks/subnets\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"},{\"dependsOn\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks\",\"resourceName\":\"VNet1\"},{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet1\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet1\"}],\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet1/subnets/Subnet2\",\"resourceType\":\"Microsoft.Network/virtualNetworks/subnets\",\"resourceName\":\"VNet1/Subnet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "PUT", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "1801ee71-7d97-402e-8a6e-f2a44191f056", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:16 GMT", - "content-length" : "914", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-writes" : "1195", + "X-Content-Type-Options" : "nosniff", + "x-ms-ratelimit-remaining-subscription-writes" : "1197", + "Pragma" : "no-cache", "retry-after" : "0", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "36f0f144-4082-4fa5-ae03-e78dc9653c2a", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092416Z:36f0f144-4082-4fa5-ae03-e78dc9653c2a", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "36f0f144-4082-4fa5-ae03-e78dc9653c2a", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099\",\"name\":\"dpC5f372099\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"6915107950063910718\",\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet2\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet222\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-07-27T09:24:16.1612294Z\",\"duration\":\"PT1.1359669S\",\"correlationId\":\"36f0f144-4082-4fa5-ae03-e78dc9653c2a\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[]}}", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099/operationStatuses/08586057650304523554?api-version=2020-06-01" - } + "Date" : "Tue, 11 Aug 2020 09:58:48 GMT", + "x-ms-correlation-request-id" : "60bfcb7a-d761-42c0-9c4c-6fad16c6c0d1", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095848Z:60bfcb7a-d761-42c0-9c4c-6fad16c6c0d1", + "Expires" : "-1", + "Content-Length" : "911", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704/operationStatuses/08586044669593742783?api-version=2020-06-01", + "x-ms-request-id" : "60bfcb7a-d761-42c0-9c4c-6fad16c6c0d1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704\",\"name\":\"dpC4369704\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"6915107950063910718\",\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet2\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet222\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Accepted\",\"timestamp\":\"2020-08-11T09:58:47.0631927Z\",\"duration\":\"PT0.9598464S\",\"correlationId\":\"60bfcb7a-d761-42c0-9c4c-6fad16c6c0d1\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704?api-version=2020-06-01", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "727d0c28-716c-40d6-80f3-9837f4dfa3bf" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:47 GMT", - "content-length" : "1073", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11988", + "x-ms-ratelimit-remaining-subscription-reads" : "11993", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "e28a8ce3-c74b-40ec-86df-2eddfb93ab75", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092447Z:e28a8ce3-c74b-40ec-86df-2eddfb93ab75", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e28a8ce3-c74b-40ec-86df-2eddfb93ab75", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099\",\"name\":\"dpC5f372099\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"6915107950063910718\",\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet2\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet222\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T09:24:35.0200386Z\",\"duration\":\"PT19.9947761S\",\"correlationId\":\"36f0f144-4082-4fa5-ae03-e78dc9653c2a\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet2\"}]}}" - } + "Date" : "Tue, 11 Aug 2020 09:59:18 GMT", + "x-ms-correlation-request-id" : "861f2be5-42f8-4cf8-ad0c-d4fb102101cd", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095918Z:861f2be5-42f8-4cf8-ad0c-d4fb102101cd", + "Expires" : "-1", + "Content-Length" : "1068", + "x-ms-request-id" : "861f2be5-42f8-4cf8-ad0c-d4fb102101cd", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704\",\"name\":\"dpC4369704\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"6915107950063910718\",\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet2\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet222\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T09:58:59.5729383Z\",\"duration\":\"PT13.469592S\",\"correlationId\":\"60bfcb7a-d761-42c0-9c4c-6fad16c6c0d1\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "085ad35f-b40c-4c80-9827-2152d3ce4de3", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:47 GMT", - "content-length" : "1073", - "expires" : "-1", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11994", + "x-ms-ratelimit-remaining-subscription-reads" : "11997", "StatusCode" : "200", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "93093668-7d69-4e61-83cf-dacc61f0f6d3", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092448Z:93093668-7d69-4e61-83cf-dacc61f0f6d3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "93093668-7d69-4e61-83cf-dacc61f0f6d3", - "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Resources/deployments/dpC5f372099\",\"name\":\"dpC5f372099\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"6915107950063910718\",\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet2\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet222\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-07-27T09:24:35.0200386Z\",\"duration\":\"PT19.9947761S\",\"correlationId\":\"36f0f144-4082-4fa5-ae03-e78dc9653c2a\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet2\"}]}}" - } + "Date" : "Tue, 11 Aug 2020 09:59:18 GMT", + "x-ms-correlation-request-id" : "35f1a10c-472c-4e62-ac7d-06b22efabed1", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095919Z:35f1a10c-472c-4e62-ac7d-06b22efabed1", + "Expires" : "-1", + "Content-Length" : "1068", + "x-ms-request-id" : "35f1a10c-472c-4e62-ac7d-06b22efabed1", + "Body" : "{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Resources/deployments/dpC4369704\",\"name\":\"dpC4369704\",\"type\":\"Microsoft.Resources/deployments\",\"properties\":{\"templateHash\":\"6915107950063910718\",\"parameters\":{\"vnetName\":{\"type\":\"String\",\"value\":\"VNet2\"},\"vnetAddressPrefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/16\"},\"subnet1Prefix\":{\"type\":\"String\",\"value\":\"10.0.0.0/24\"},\"subnet1Name\":{\"type\":\"String\",\"value\":\"Subnet1\"},\"subnet2Prefix\":{\"type\":\"String\",\"value\":\"10.0.1.0/24\"},\"subnet2Name\":{\"type\":\"String\",\"value\":\"Subnet222\"}},\"mode\":\"Incremental\",\"provisioningState\":\"Succeeded\",\"timestamp\":\"2020-08-11T09:58:59.5729383Z\",\"duration\":\"PT13.469592S\",\"correlationId\":\"60bfcb7a-d761-42c0-9c4c-6fad16c6c0d1\",\"providers\":[{\"namespace\":\"Microsoft.Network\",\"resourceTypes\":[{\"resourceType\":\"virtualNetworks\",\"locations\":[\"southcentralus\"]}]}],\"dependencies\":[],\"outputResources\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet2\"}]}}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5f372099/providers/Microsoft.Network//virtualnetworks/VNet2?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4369704/providers/Microsoft.Network//virtualnetworks/VNet2?api-version=2015-06-15", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "d507ced3-8884-478a-9950-552ccc98c6b5", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:48 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "1459", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11976", + "x-ms-ratelimit-remaining-subscription-reads" : "11990", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "b8ae135a-84dd-4784-a50c-9ef72bc0c243", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "7f401acf-67ef-468e-879c-b1305ecb9cbb", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092448Z:b8ae135a-84dd-4784-a50c-9ef72bc0c243", - "etag" : "W/\"7995a14e-b65a-460c-b5d8-5c5d44af3e8a\"", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "1017b356-3045-4fe1-9203-86ba138ed72b", - "Body" : "{\r\n \"name\": \"VNet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet2\",\r\n \"etag\": \"W/\\\"7995a14e-b65a-460c-b5d8-5c5d44af3e8a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"745549ac-aa88-4726-8185-87eb7917c791\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet2/subnets/Subnet1\",\r\n \"etag\": \"W/\\\"7995a14e-b65a-460c-b5d8-5c5d44af3e8a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"Subnet222\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg5f372099/providers/Microsoft.Network/virtualNetworks/VNet2/subnets/Subnet222\",\r\n \"etag\": \"W/\\\"7995a14e-b65a-460c-b5d8-5c5d44af3e8a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ]\r\n }\r\n}" - } + "Date" : "Tue, 11 Aug 2020 09:59:19 GMT", + "x-ms-correlation-request-id" : "3459842a-0b49-46c4-8f4f-fa44c7088196", + "x-ms-arm-service-request-id" : "47f44350-6c49-4e35-8961-7844e5a9aa9a", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "ETag" : "W/\"0c76a844-e7fa-403e-87aa-7fa22ef6864e\"", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095919Z:3459842a-0b49-46c4-8f4f-fa44c7088196", + "Expires" : "-1", + "Content-Length" : "1456", + "x-ms-request-id" : "1ac2061d-535d-4570-aea7-aaa69f8e2835", + "Body" : "{\r\n \"name\": \"VNet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet2\",\r\n \"etag\": \"W/\\\"0c76a844-e7fa-403e-87aa-7fa22ef6864e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"314698f1-c041-44a7-9783-c2352e08eb87\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"Subnet1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet2/subnets/Subnet1\",\r\n \"etag\": \"W/\\\"0c76a844-e7fa-403e-87aa-7fa22ef6864e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n },\r\n {\r\n \"name\": \"Subnet222\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg4369704/providers/Microsoft.Network/virtualNetworks/VNet2/subnets/Subnet222\",\r\n \"etag\": \"W/\\\"0c76a844-e7fa-403e-87aa-7fa22ef6864e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ]\r\n }\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5f372099/providers/Microsoft.Network//virtualnetworks/VNet2?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4369704/providers/Microsoft.Network//virtualnetworks/VNet2?api-version=2015-06-15", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "a2437386-1669-46be-a1e8-bb1476f31c44", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:24:49 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14994", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14997", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", + "Azure-AsyncNotification" : "Enabled", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0c8e2bc7-9408-4482-b1b3-80035c0ea332", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ca9c8091-4471-491a-a1a6-255688047633", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092449Z:0c8e2bc7-9408-4482-b1b3-80035c0ea332", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/f0a5315a-a409-4ebb-b904-aaf8c758050a?api-version=2015-06-15", - "cache-control" : "no-cache", - "x-ms-request-id" : "f0a5315a-a409-4ebb-b904-aaf8c758050a", - "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f0a5315a-a409-4ebb-b904-aaf8c758050a?api-version=2015-06-15" - } + "Date" : "Tue, 11 Aug 2020 09:59:20 GMT", + "x-ms-correlation-request-id" : "79965748-e0a8-4414-af3b-135c733b0f46", + "x-ms-arm-service-request-id" : "42f10ab1-957d-411d-814a-911f1d0e4273", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095920Z:79965748-e0a8-4414-af3b-135c733b0f46", + "Expires" : "-1", + "Content-Length" : "0", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ad2e8c2a-93ea-4e97-9099-358b018197e5?api-version=2015-06-15", + "x-ms-request-id" : "ad2e8c2a-93ea-4e97-9099-358b018197e5", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/ad2e8c2a-93ea-4e97-9099-358b018197e5?api-version=2015-06-15" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f0a5315a-a409-4ebb-b904-aaf8c758050a?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ad2e8c2a-93ea-4e97-9099-358b018197e5?api-version=2015-06-15", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "e176e7f2-64b7-48ea-af55-8a57ef340ea6" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:00 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "content-length" : "29", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11985", + "x-ms-ratelimit-remaining-subscription-reads" : "11994", "StatusCode" : "200", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "ca06578b-eea4-41fa-af94-61c1b966b2a3", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "35bfb386-c2ee-4d1a-9932-bf837e6216bb", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092500Z:ca06578b-eea4-41fa-af94-61c1b966b2a3", - "content-type" : "application/json; charset=utf-8", - "cache-control" : "no-cache", - "x-ms-request-id" : "e9fb9ef9-4478-453d-ba8b-cbe0c362a6f3", - "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}" - } + "Date" : "Tue, 11 Aug 2020 09:59:30 GMT", + "x-ms-correlation-request-id" : "d903c58a-0b30-4e36-9d61-32a27ca20d13", + "x-ms-arm-service-request-id" : "25e2ca9b-982d-4977-96cf-2524e6c0bd61", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095931Z:d903c58a-0b30-4e36-9d61-32a27ca20d13", + "Expires" : "-1", + "Content-Length" : "29", + "x-ms-request-id" : "a7ed87ca-fef9-493d-b923-d16b5a6ec87c", + "Body" : "{\r\n \"status\": \"Succeeded\"\r\n}", + "Content-Type" : "application/json; charset=utf-8" + }, + "Exception" : null }, { "Method" : "GET", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/f0a5315a-a409-4ebb-b904-aaf8c758050a?api-version=2015-06-15", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/ad2e8c2a-93ea-4e97-9099-358b018197e5?api-version=2015-06-15", "Headers" : { - "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)" + "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources.fluentcore.policy/null (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ecf945da-ceff-48da-b810-192cdcb07702" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:01 GMT", - "server" : "Microsoft-HTTPAPI/2.0", - "azure-asyncnotification" : "Enabled", - "expires" : "-1", + "Server" : "Microsoft-HTTPAPI/2.0", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "retry-after" : "0", - "x-ms-ratelimit-remaining-subscription-reads" : "11992", + "Azure-AsyncNotification" : "Enabled", + "x-ms-ratelimit-remaining-subscription-reads" : "11991", "StatusCode" : "204", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "0c8e2bc7-9408-4482-b1b3-80035c0ea332", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-ms-arm-service-request-id" : "ca9c8091-4471-491a-a1a6-255688047633", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092502Z:fea82205-30be-4d59-a132-4aff1ed074d4", - "content-type" : "application/json; charset=utf-8", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/f0a5315a-a409-4ebb-b904-aaf8c758050a?api-version=2015-06-15", - "cache-control" : "no-cache", - "x-ms-request-id" : "f0a5315a-a409-4ebb-b904-aaf8c758050a", + "Date" : "Tue, 11 Aug 2020 09:59:31 GMT", + "x-ms-correlation-request-id" : "79965748-e0a8-4414-af3b-135c733b0f46", + "x-ms-arm-service-request-id" : "42f10ab1-957d-411d-814a-911f1d0e4273", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095932Z:f16784b9-7608-40cb-ba40-5ebbfeca1485", + "Expires" : "-1", + "Azure-AsyncOperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ad2e8c2a-93ea-4e97-9099-358b018197e5?api-version=2015-06-15", + "x-ms-request-id" : "ad2e8c2a-93ea-4e97-9099-358b018197e5", "Body" : "", - "azure-asyncoperation" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/f0a5315a-a409-4ebb-b904-aaf8c758050a?api-version=2015-06-15" - } + "Content-Type" : "application/json; charset=utf-8", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operationResults/ad2e8c2a-93ea-4e97-9099-358b018197e5?api-version=2015-06-15" + }, + "Exception" : null }, { "Method" : "DELETE", - "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg5f372099?api-version=2020-06-01", + "Uri" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/rg4369704?api-version=2020-06-01", "Headers" : { "User-Agent" : "azsdk-java-com.azure.resourcemanager.resources/2.0.0-beta.4 (11.0.8; Windows 10; 10.0)", + "x-ms-client-request-id" : "ea6cfa19-9a6c-48e1-81ab-d86b4d196049", "Content-Type" : "application/json" }, "Response" : { - "date" : "Mon, 27 Jul 2020 09:25:03 GMT", - "content-length" : "0", - "expires" : "-1", - "x-ms-ratelimit-remaining-subscription-deletes" : "14992", - "retry-after" : "0", + "x-ms-ratelimit-remaining-subscription-deletes" : "14998", + "X-Content-Type-Options" : "nosniff", + "Pragma" : "no-cache", "StatusCode" : "202", - "pragma" : "no-cache", - "x-ms-correlation-request-id" : "807d751c-56a8-4b9f-ac87-4d2c1e25d704", - "strict-transport-security" : "max-age=31536000; includeSubDomains", - "x-content-type-options" : "nosniff", - "x-ms-routing-request-id" : "KOREASOUTH:20200727T092503Z:807d751c-56a8-4b9f-ac87-4d2c1e25d704", - "location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzVGMzcyMDk5LVNPVVRIQ0VOVFJBTFVTIiwiam9iTG9jYXRpb24iOiJzb3V0aGNlbnRyYWx1cyJ9?api-version=2020-06-01", - "cache-control" : "no-cache", - "x-ms-request-id" : "807d751c-56a8-4b9f-ac87-4d2c1e25d704", - "Body" : "" - } + "Date" : "Tue, 11 Aug 2020 09:59:35 GMT", + "x-ms-correlation-request-id" : "55930cfb-679e-4bcf-8536-af86b80ba263", + "Strict-Transport-Security" : "max-age=31536000; includeSubDomains", + "Retry-After" : "0", + "Cache-Control" : "no-cache", + "x-ms-routing-request-id" : "SOUTHEASTASIA:20200811T095936Z:55930cfb-679e-4bcf-8536-af86b80ba263", + "Expires" : "-1", + "Content-Length" : "0", + "x-ms-request-id" : "55930cfb-679e-4bcf-8536-af86b80ba263", + "Location" : "http://localhost:1234/subscriptions/00000000-0000-0000-0000-000000000000/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRzQzNjk3MDQtU09VVEhDRU5UUkFMVVMiLCJqb2JMb2NhdGlvbiI6InNvdXRoY2VudHJhbHVzIn0?api-version=2020-06-01" + }, + "Exception" : null } ], - "variables" : [ "5f372099" ] + "variables" : [ "4369704" ] } \ No newline at end of file diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/pom.xml b/sdk/resourcemanager/azure-resourcemanager-samples/pom.xml index edb98a60726c..41ecab37b4cc 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-samples/pom.xml @@ -13,7 +13,7 @@ 1.7.0 ../../parents/azure-client-sdk-parent - + com.azure.resourcemanager azure-resourcemanager-samples 2.0.0-beta.4 @@ -132,6 +132,12 @@ 5.6.2 test
+ + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 + test +
diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appplatform/samples/ManageSpringCloud.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appplatform/samples/ManageSpringCloud.java index 036a9a34635b..0511206f4b39 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appplatform/samples/ManageSpringCloud.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appplatform/samples/ManageSpringCloud.java @@ -21,7 +21,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.CountryIsoCode; import com.azure.resourcemanager.resources.fluentcore.arm.CountryPhoneCode; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.security.keyvault.certificates.CertificateClient; import com.azure.security.keyvault.certificates.CertificateClientBuilder; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppBasic.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppBasic.java index b4190bb74e5d..933d0f2f36d9 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppBasic.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppBasic.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.appservice.models.FunctionApp; import com.azure.resourcemanager.appservice.models.PricingTier; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.core.http.policy.HttpLogDetailLevel; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppLogs.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppLogs.java index 0125068651c9..79abc6ffdadd 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppLogs.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppLogs.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.appservice.models.FunctionApp; import com.azure.resourcemanager.appservice.models.LogLevel; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import org.apache.commons.lang.time.StopWatch; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppSourceControl.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppSourceControl.java index 4dc7cd2680f3..892208440ede 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppSourceControl.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppSourceControl.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.appservice.models.FunctionApp; import com.azure.resourcemanager.appservice.models.PublishingProfile; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import org.eclipse.jgit.api.Git; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppWithAuthentication.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppWithAuthentication.java index a153757dc511..ee1759d9bf6f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppWithAuthentication.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppWithAuthentication.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.appservice.models.NameValuePair; import com.azure.resourcemanager.appservice.models.PublishingProfile; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.core.http.policy.HttpLogDetailLevel; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppWithDomainSsl.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppWithDomainSsl.java index 7b7e614724f0..d0b96fd75cc4 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppWithDomainSsl.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageFunctionAppWithDomainSsl.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.CountryIsoCode; import com.azure.resourcemanager.resources.fluentcore.arm.CountryPhoneCode; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.io.File; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxFunctionAppSourceControl.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxFunctionAppSourceControl.java index 43abeb301b87..7a9d3076dec5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxFunctionAppSourceControl.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxFunctionAppSourceControl.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.appservice.models.FunctionRuntimeStack; import com.azure.resourcemanager.appservice.models.PricingTier; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccountSkuType; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppBasic.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppBasic.java index 76bfa3c9c72e..2cf8a74f3c98 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppBasic.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppBasic.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.appservice.models.WebContainer; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.core.http.policy.HttpLogDetailLevel; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppCosmosDbByMsi.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppCosmosDbByMsi.java index 88916036a0eb..003d09fccbfc 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppCosmosDbByMsi.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppCosmosDbByMsi.java @@ -11,7 +11,7 @@ //import com.azure.management.containerregistry.Registry; //import com.azure.management.containerregistry.RegistryCredentials; import com.azure.core.http.policy.HttpLogDetailLevel; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; /** * Azure App Service basic sample for managing web apps. diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppSourceControl.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppSourceControl.java index 688136953f19..535cb83ca319 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppSourceControl.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppSourceControl.java @@ -13,7 +13,7 @@ import com.azure.resourcemanager.appservice.models.RuntimeStack; import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.core.http.policy.HttpLogDetailLevel; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppSqlConnection.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppSqlConnection.java index 7fdfaa9256cd..9a5a90dc060e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppSqlConnection.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppSqlConnection.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.appservice.models.RuntimeStack; import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.SqlDatabase; import com.azure.resourcemanager.sql.models.SqlServer; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppStorageAccountConnection.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppStorageAccountConnection.java index 5ee82506f9a5..26496f254c7b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppStorageAccountConnection.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppStorageAccountConnection.java @@ -13,7 +13,7 @@ import com.azure.resourcemanager.appservice.models.RuntimeStack; import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppWithContainerRegistry.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppWithContainerRegistry.java index 379f99837a88..a58289fee708 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppWithContainerRegistry.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppWithContainerRegistry.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.containerregistry.models.Registry; import com.azure.resourcemanager.containerregistry.models.RegistryCredentials; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.DockerUtils; import com.azure.resourcemanager.samples.Utils; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppWithDomainSsl.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppWithDomainSsl.java index 5f43a687038f..d1dfcc2b2123 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppWithDomainSsl.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageLinuxWebAppWithDomainSsl.java @@ -16,7 +16,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.CountryIsoCode; import com.azure.resourcemanager.resources.fluentcore.arm.CountryPhoneCode; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.core.http.policy.HttpLogDetailLevel; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppBasic.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppBasic.java index 9114e02725e3..b10bf6dc2914 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppBasic.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppBasic.java @@ -13,7 +13,7 @@ import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.appservice.models.WebContainer; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.core.http.policy.HttpLogDetailLevel; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppCosmosDbByMsi.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppCosmosDbByMsi.java index 7c0c2cce04c6..94c89484ca7c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppCosmosDbByMsi.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppCosmosDbByMsi.java @@ -7,7 +7,7 @@ import com.azure.core.management.AzureEnvironment; import com.azure.core.util.Configuration; import com.azure.identity.DefaultAzureCredentialBuilder; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.security.keyvault.secrets.SecretClient; import com.azure.security.keyvault.secrets.SecretClientBuilder; import com.azure.security.keyvault.secrets.models.KeyVaultSecret; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppCosmosDbThroughKeyVault.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppCosmosDbThroughKeyVault.java index bb2e71081f14..02e2548b7f9c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppCosmosDbThroughKeyVault.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppCosmosDbThroughKeyVault.java @@ -16,7 +16,7 @@ import com.azure.resourcemanager.cosmos.models.DatabaseAccountKind; import com.azure.resourcemanager.keyvault.models.Vault; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.core.http.policy.HttpLogDetailLevel; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppLogs.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppLogs.java index f8650226352e..d671574ac9e1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppLogs.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppLogs.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.appservice.models.WebContainer; import com.azure.resourcemanager.appservice.models.LogLevel; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import org.apache.commons.lang.time.StopWatch; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSlots.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSlots.java index bff1cfb0a2bb..093b1eb11a6b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSlots.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSlots.java @@ -13,7 +13,7 @@ import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.appservice.models.WebContainer; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.core.http.policy.HttpLogDetailLevel; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSourceControl.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSourceControl.java index fb93e9f03b02..4a4728740142 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSourceControl.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSourceControl.java @@ -15,7 +15,7 @@ import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.appservice.models.WebContainer; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.core.http.policy.HttpLogDetailLevel; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSourceControlAsync.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSourceControlAsync.java index 0bb93dfc3af8..37e3bd57e296 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSourceControlAsync.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSourceControlAsync.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.appservice.models.WebContainer; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.core.http.policy.HttpLogDetailLevel; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSqlConnection.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSqlConnection.java index e0ce885a1550..d7d12f92561b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSqlConnection.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppSqlConnection.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.appservice.models.PricingTier; import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.SqlDatabase; import com.azure.resourcemanager.sql.models.SqlServer; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppStorageAccountConnection.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppStorageAccountConnection.java index 1b207ba9e5a9..38630657abf5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppStorageAccountConnection.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppStorageAccountConnection.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.appservice.models.WebContainer; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppWithAuthentication.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppWithAuthentication.java index 4ae90a57c50c..23a65d3e8aa7 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppWithAuthentication.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppWithAuthentication.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.appservice.models.WebApp; import com.azure.resourcemanager.appservice.models.WebContainer; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.core.http.policy.HttpLogDetailLevel; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppWithDomainSsl.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppWithDomainSsl.java index 883e2df1aef4..dcc9858020ed 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppWithDomainSsl.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/appservice/samples/ManageWebAppWithDomainSsl.java @@ -15,7 +15,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.CountryIsoCode; import com.azure.resourcemanager.resources.fluentcore.arm.CountryPhoneCode; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.core.http.policy.HttpLogDetailLevel; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/authorization/samples/ManageServicePrincipalCredentials.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/authorization/samples/ManageServicePrincipalCredentials.java index 9f6695fb1968..0a341d963bdf 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/authorization/samples/ManageServicePrincipalCredentials.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/authorization/samples/ManageServicePrincipalCredentials.java @@ -9,7 +9,7 @@ import com.azure.identity.ClientCertificateCredentialBuilder; import com.azure.identity.ClientSecretCredentialBuilder; import com.azure.identity.DefaultAzureCredentialBuilder; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.google.common.io.ByteStreams; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.authorization.models.BuiltInRole; @@ -86,7 +86,7 @@ public static boolean runSample(Azure.Authenticated authenticated, AzureProfile .define(raName) .forServicePrincipal(servicePrincipal) .withBuiltInRole(BuiltInRole.CONTRIBUTOR) - .withSubscriptionScope(profile.subscriptionId()) + .withSubscriptionScope(profile.getSubscriptionId()) .create(); System.out.println("Created role assignment " + raName + "."); @@ -101,7 +101,7 @@ public static boolean runSample(Azure.Authenticated authenticated, AzureProfile .tenantId(authenticated.tenantId()) .clientId(servicePrincipal.applicationId()) .clientSecret(password1) - .authorityHost(profile.environment().getActiveDirectoryEndpoint()) + .authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint()) .build(); try { Azure.authenticate(testCredential, profile).withDefaultSubscription(); @@ -117,7 +117,7 @@ public static boolean runSample(Azure.Authenticated authenticated, AzureProfile .tenantId(authenticated.tenantId()) .clientId(servicePrincipal.applicationId()) .clientSecret(password2) - .authorityHost(profile.environment().getActiveDirectoryEndpoint()) + .authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint()) .build(); try { Azure.authenticate(testCredential, profile).withDefaultSubscription(); @@ -133,7 +133,7 @@ public static boolean runSample(Azure.Authenticated authenticated, AzureProfile .tenantId(authenticated.tenantId()) .clientId(servicePrincipal.applicationId()) .pfxCertificate(ManageServicePrincipalCredentials.class.getResource("/myTest.pfx").toString(), "Abc123") - .authorityHost(profile.environment().getActiveDirectoryEndpoint()) + .authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint()) .build(); try { Azure.authenticate(testCredential, profile).withDefaultSubscription(); @@ -164,7 +164,7 @@ public static boolean runSample(Azure.Authenticated authenticated, AzureProfile .tenantId(authenticated.tenantId()) .clientId(servicePrincipal.applicationId()) .clientSecret(password1) - .authorityHost(profile.environment().getActiveDirectoryEndpoint()) + .authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint()) .build(); try { Azure.authenticate(testCredential, profile).withDefaultSubscription(); @@ -192,7 +192,7 @@ public static boolean runSample(Azure.Authenticated authenticated, AzureProfile .tenantId(authenticated.tenantId()) .clientId(servicePrincipal.applicationId()) .clientSecret(password2) - .authorityHost(profile.environment().getActiveDirectoryEndpoint()) + .authorityHost(profile.getEnvironment().getActiveDirectoryEndpoint()) .build(); try { Azure.authenticate(testCredential, profile).withDefaultSubscription() diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/authorization/samples/ManageUsersGroupsAndRoles.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/authorization/samples/ManageUsersGroupsAndRoles.java index 29811ebcd208..65d60d6d8e9d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/authorization/samples/ManageUsersGroupsAndRoles.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/authorization/samples/ManageUsersGroupsAndRoles.java @@ -7,7 +7,7 @@ import com.azure.core.http.policy.HttpLogDetailLevel; import com.azure.core.management.AzureEnvironment; import com.azure.identity.DefaultAzureCredentialBuilder; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.authorization.models.ActiveDirectoryGroup; import com.azure.resourcemanager.authorization.models.ActiveDirectoryUser; @@ -70,7 +70,7 @@ public static boolean runSample(Azure.Authenticated authenticated, AzureProfile .define(raName1) .forUser(user) .withBuiltInRole(BuiltInRole.READER) - .withSubscriptionScope(profile.subscriptionId()) + .withSubscriptionScope(profile.getSubscriptionId()) .create(); System.out.println("Created Role Assignment:"); Utils.print(roleAssignment1); @@ -85,7 +85,7 @@ public static boolean runSample(Azure.Authenticated authenticated, AzureProfile // Get role by scope and role name RoleDefinition roleDefinition = authenticated.roleDefinitions() - .getByScopeAndRoleName("subscriptions/" + profile.subscriptionId(), "Contributor"); + .getByScopeAndRoleName("subscriptions/" + profile.getSubscriptionId(), "Contributor"); Utils.print(roleDefinition); // ============================================================ @@ -107,7 +107,7 @@ public static boolean runSample(Azure.Authenticated authenticated, AzureProfile .define(raName2) .forServicePrincipal(sp) .withBuiltInRole(BuiltInRole.CONTRIBUTOR) - .withSubscriptionScope(profile.subscriptionId()) + .withSubscriptionScope(profile.getSubscriptionId()) .create(); System.out.println("Created Role Assignment:"); Utils.print(roleAssignment2); diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ConvertVirtualMachineToManagedDisks.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ConvertVirtualMachineToManagedDisks.java index 3fd6e732de67..e216d398c910 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ConvertVirtualMachineToManagedDisks.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ConvertVirtualMachineToManagedDisks.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachine; import com.azure.resourcemanager.compute.models.VirtualMachineSizeTypes; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; /** diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingCustomImageFromVHD.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingCustomImageFromVHD.java index 663479e37371..2356dfde6f10 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingCustomImageFromVHD.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingCustomImageFromVHD.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.compute.models.KnownLinuxVirtualMachineImage; import com.azure.resourcemanager.compute.models.VirtualMachine; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.jcraft.jsch.JSchException; import com.azure.resourcemanager.compute.models.CachingTypes; import com.azure.resourcemanager.compute.models.Disk; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingCustomImageFromVM.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingCustomImageFromVM.java index b331089210d7..7b1cc6d788c6 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingCustomImageFromVM.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingCustomImageFromVM.java @@ -7,7 +7,7 @@ import com.azure.core.http.policy.HttpLogDetailLevel; import com.azure.core.management.AzureEnvironment; import com.azure.identity.DefaultAzureCredentialBuilder; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.jcraft.jsch.JSchException; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.compute.models.CachingTypes; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingSpecializedDiskFromSnapshot.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingSpecializedDiskFromSnapshot.java index b8fc033f9b2e..d56dbddd12ac 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingSpecializedDiskFromSnapshot.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingSpecializedDiskFromSnapshot.java @@ -18,7 +18,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachineDataDisk; import com.azure.resourcemanager.compute.models.VirtualMachineSizeTypes; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.ArrayList; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingSpecializedDiskFromVhd.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingSpecializedDiskFromVhd.java index 438f7d023a98..a8f24bb13891 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingSpecializedDiskFromVhd.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachineUsingSpecializedDiskFromVhd.java @@ -18,7 +18,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachineSizeTypes; import com.azure.resourcemanager.compute.models.VirtualMachineUnmanagedDataDisk; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.ArrayList; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachinesAsyncTrackingRelatedResources.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachinesAsyncTrackingRelatedResources.java index 73dd162aaf94..54907b1db76f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachinesAsyncTrackingRelatedResources.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachinesAsyncTrackingRelatedResources.java @@ -21,7 +21,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.ResourceUtils; import com.azure.resourcemanager.resources.fluentcore.arm.models.Resource; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import reactor.core.publisher.Flux; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachinesInParallel.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachinesInParallel.java index d036b85e46bf..52a73bd5d74e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachinesInParallel.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachinesInParallel.java @@ -17,7 +17,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; import com.azure.resourcemanager.resources.fluentcore.model.CreatedResources; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.StorageAccount; import org.apache.commons.lang.time.StopWatch; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachinesUsingCustomImageOrSpecializedVHD.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachinesUsingCustomImageOrSpecializedVHD.java index fa86dc8cf258..92353e49b7a2 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachinesUsingCustomImageOrSpecializedVHD.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/CreateVirtualMachinesUsingCustomImageOrSpecializedVHD.java @@ -13,7 +13,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachine; import com.azure.resourcemanager.compute.models.VirtualMachineSizeTypes; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.SSHShell; import com.azure.resourcemanager.samples.Utils; import com.fasterxml.jackson.databind.JsonNode; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ListComputeSkus.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ListComputeSkus.java index 6e55849ac071..481c3262a77e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ListComputeSkus.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ListComputeSkus.java @@ -13,7 +13,7 @@ import com.azure.resourcemanager.compute.models.ComputeSku; import com.azure.resourcemanager.resources.fluentcore.arm.AvailabilityZoneId; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import java.util.Map; import java.util.Set; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ListVirtualMachineExtensionImages.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ListVirtualMachineExtensionImages.java index 3cb6a8a0e172..edafa4d741cb 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ListVirtualMachineExtensionImages.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ListVirtualMachineExtensionImages.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachineExtensionImageVersion; import com.azure.resourcemanager.compute.models.VirtualMachinePublisher; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; /** * List all virtual machine extension image publishers and diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ListVirtualMachineImages.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ListVirtualMachineImages.java index eac14210c7ca..d3f4d02814d2 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ListVirtualMachineImages.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ListVirtualMachineImages.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachinePublisher; import com.azure.resourcemanager.compute.models.VirtualMachineSku; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; /** * List all virtual machine image publishers and diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageAvailabilitySet.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageAvailabilitySet.java index 2cfe6a2e29b5..84f971bb2277 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageAvailabilitySet.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageAvailabilitySet.java @@ -17,7 +17,7 @@ import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; /** diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageManagedDisks.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageManagedDisks.java index 64e90a06f1c0..1993894201e9 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageManagedDisks.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageManagedDisks.java @@ -7,7 +7,7 @@ import com.azure.core.http.policy.HttpLogDetailLevel; import com.azure.core.management.AzureEnvironment; import com.azure.identity.DefaultAzureCredentialBuilder; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.jcraft.jsch.JSchException; import com.azure.resourcemanager.Azure; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageResourceFromMSIEnabledVirtualMachineBelongsToAADGroup.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageResourceFromMSIEnabledVirtualMachineBelongsToAADGroup.java index 881f9d8484a2..5f1bd6d88908 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageResourceFromMSIEnabledVirtualMachineBelongsToAADGroup.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageResourceFromMSIEnabledVirtualMachineBelongsToAADGroup.java @@ -16,7 +16,7 @@ import com.azure.resourcemanager.authorization.models.BuiltInRole; import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageScaleSetUserAssignedMSIFromServicePrincipal.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageScaleSetUserAssignedMSIFromServicePrincipal.java index 7223a120fb0c..7c43e2ccb12a 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageScaleSetUserAssignedMSIFromServicePrincipal.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageScaleSetUserAssignedMSIFromServicePrincipal.java @@ -21,7 +21,7 @@ import com.azure.resourcemanager.msi.models.Identity; import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.Utils; /** diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageStorageFromMSIEnabledVirtualMachine.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageStorageFromMSIEnabledVirtualMachine.java index 9ff62758c611..65f938266f48 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageStorageFromMSIEnabledVirtualMachine.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageStorageFromMSIEnabledVirtualMachine.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachineSizeTypes; import com.azure.resourcemanager.authorization.models.BuiltInRole; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageUserAssignedMSIEnabledVirtualMachine.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageUserAssignedMSIEnabledVirtualMachine.java index 304ea4a2c3c1..8435e61ae224 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageUserAssignedMSIEnabledVirtualMachine.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageUserAssignedMSIEnabledVirtualMachine.java @@ -18,7 +18,7 @@ import com.azure.resourcemanager.msi.models.Identity; import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.ArrayList; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachine.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachine.java index 90cd14f655a0..af04eef9dde3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachine.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachine.java @@ -16,7 +16,7 @@ import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.Date; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineAsync.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineAsync.java index a679965bdbfb..34601e63ab44 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineAsync.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineAsync.java @@ -17,7 +17,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; import com.azure.resourcemanager.resources.fluentcore.model.Indexable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import reactor.core.publisher.Flux; import reactor.core.publisher.Mono; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineExtension.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineExtension.java index c7487c163af2..dcff0252c22b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineExtension.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineExtension.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachine; import com.azure.resourcemanager.compute.models.VirtualMachineSizeTypes; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.ArrayList; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSet.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSet.java index fe563af54554..a112bd87ebf6 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSet.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSet.java @@ -23,7 +23,7 @@ import com.azure.resourcemanager.network.models.VirtualMachineScaleSetNetworkInterface; import com.azure.resourcemanager.network.models.VirtualMachineScaleSetNicIpConfiguration; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.ArrayList; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSetAsync.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSetAsync.java index e99c6101073c..e42f3a270b6b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSetAsync.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSetAsync.java @@ -21,7 +21,7 @@ import com.azure.resourcemanager.network.models.VirtualMachineScaleSetNicIpConfiguration; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Indexable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import reactor.core.publisher.Flux; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSetWithUnmanagedDisks.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSetWithUnmanagedDisks.java index 969a7f08f9f4..6bb7735af54d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSetWithUnmanagedDisks.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineScaleSetWithUnmanagedDisks.java @@ -21,7 +21,7 @@ import com.azure.resourcemanager.network.models.VirtualMachineScaleSetNetworkInterface; import com.azure.resourcemanager.network.models.VirtualMachineScaleSetNicIpConfiguration; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.ArrayList; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineWithDisk.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineWithDisk.java index 426f3d0fbe6f..4e52a23bd480 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineWithDisk.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineWithDisk.java @@ -17,7 +17,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachineSizeTypes; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.ArrayList; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineWithUnmanagedDisks.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineWithUnmanagedDisks.java index 9fddc0f98677..604b8af365fa 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineWithUnmanagedDisks.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachineWithUnmanagedDisks.java @@ -16,7 +16,7 @@ import com.azure.resourcemanager.compute.models.VirtualMachineSizeTypes; import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.Date; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachinesInParallel.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachinesInParallel.java index 2e2ef70f838d..5b2effcbb42c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachinesInParallel.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageVirtualMachinesInParallel.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageZonalVirtualMachine.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageZonalVirtualMachine.java index 6d929e038606..2bc72499e8d1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageZonalVirtualMachine.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageZonalVirtualMachine.java @@ -16,7 +16,7 @@ import com.azure.resourcemanager.network.models.PublicIPSkuType; import com.azure.resourcemanager.resources.fluentcore.arm.AvailabilityZoneId; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; /** diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageZonalVirtualMachineScaleSet.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageZonalVirtualMachineScaleSet.java index 69699d444b39..866f19e67c04 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageZonalVirtualMachineScaleSet.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/compute/samples/ManageZonalVirtualMachineScaleSet.java @@ -20,7 +20,7 @@ import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.resources.fluentcore.arm.AvailabilityZoneId; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.ArrayList; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceWithAzureFileShareMount.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceWithAzureFileShareMount.java index c14a2519ec72..ca4a3c4e5c89 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceWithAzureFileShareMount.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceWithAzureFileShareMount.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.containerinstance.models.ContainerGroup; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceWithManualAzureFileShareMountCreation.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceWithManualAzureFileShareMountCreation.java index 6ae81dbeda7b..1776fa8ff274 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceWithManualAzureFileShareMountCreation.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceWithManualAzureFileShareMountCreation.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.containerinstance.models.ContainerGroup; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceWithMultipleContainerImages.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceWithMultipleContainerImages.java index 25b235a6b55b..8be0b67d59ab 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceWithMultipleContainerImages.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceWithMultipleContainerImages.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.containerinstance.models.ContainerGroup; import com.azure.resourcemanager.containerinstance.models.ContainerGroupRestartPolicy; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceZeroToOneAndOneToManyUsingContainerServiceOrchestrator.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceZeroToOneAndOneToManyUsingContainerServiceOrchestrator.java index ab5c4e11dae7..989e82045f30 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceZeroToOneAndOneToManyUsingContainerServiceOrchestrator.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerinstance/samples/ManageContainerInstanceZeroToOneAndOneToManyUsingContainerServiceOrchestrator.java @@ -15,7 +15,7 @@ import com.azure.resourcemanager.containerservice.models.ContainerServiceVMSizeTypes; import com.azure.resourcemanager.containerservice.models.KubernetesCluster; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.DockerUtils; import com.azure.resourcemanager.samples.SSHShell; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerregistry/samples/ManageContainerRegistry.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerregistry/samples/ManageContainerRegistry.java index 015a6df00bb1..cde98263cdc1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerregistry/samples/ManageContainerRegistry.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerregistry/samples/ManageContainerRegistry.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.containerregistry.models.Registry; import com.azure.resourcemanager.containerregistry.models.RegistryCredentials; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.DockerUtils; import com.azure.resourcemanager.samples.Utils; import com.github.dockerjava.api.DockerClient; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerregistry/samples/ManageContainerRegistryWithWebhooks.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerregistry/samples/ManageContainerRegistryWithWebhooks.java index 067512ca146b..56cc2c2e0f9f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerregistry/samples/ManageContainerRegistryWithWebhooks.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/containerregistry/samples/ManageContainerRegistryWithWebhooks.java @@ -15,7 +15,7 @@ import com.azure.resourcemanager.containerregistry.models.WebhookAction; import com.azure.resourcemanager.containerregistry.models.WebhookEventInfo; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.DockerUtils; import com.azure.resourcemanager.samples.Utils; import com.github.dockerjava.api.DockerClient; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBTableWithVirtualNetworkRule.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBTableWithVirtualNetworkRule.java index f1a11bf584d6..d81da01b32d3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBTableWithVirtualNetworkRule.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBTableWithVirtualNetworkRule.java @@ -15,7 +15,7 @@ import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.network.models.ServiceEndpointType; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.List; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithEventualConsistency.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithEventualConsistency.java index 578a128a9873..0a2e8c6db820 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithEventualConsistency.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithEventualConsistency.java @@ -20,7 +20,7 @@ import com.azure.resourcemanager.cosmos.models.DatabaseAccountKind; import com.azure.resourcemanager.cosmos.models.DatabaseAccountListKeysResult; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; /** diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithIPRange.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithIPRange.java index cb2ede54b1fc..9638ab8c027e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithIPRange.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithIPRange.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.cosmos.models.CosmosDBAccount; import com.azure.resourcemanager.cosmos.models.DatabaseAccountKind; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; /** diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithKindMongoDB.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithKindMongoDB.java index 88bd91e3cee9..792c0455e73b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithKindMongoDB.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/CreateCosmosDBWithKindMongoDB.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.cosmos.models.DatabaseAccountKind; import com.azure.resourcemanager.cosmos.models.DatabaseAccountListConnectionStringsResult; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; /** diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/ManageHACosmosDB.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/ManageHACosmosDB.java index 6be11e0c9f7f..375aa06f3761 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/ManageHACosmosDB.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/cosmos/samples/ManageHACosmosDB.java @@ -20,7 +20,7 @@ import com.azure.resourcemanager.cosmos.models.DatabaseAccountKind; import com.azure.resourcemanager.cosmos.models.DatabaseAccountListKeysResult; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; /** diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/dns/samples/ManageDns.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/dns/samples/ManageDns.java index aebea037a436..cc01cf82a144 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/dns/samples/ManageDns.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/dns/samples/ManageDns.java @@ -22,7 +22,7 @@ import com.azure.resourcemanager.network.models.PublicIpAddress; import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/keyvault/samples/ManageKeyVault.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/keyvault/samples/ManageKeyVault.java index 5abed88a01bb..a84e8d9d0bc6 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/keyvault/samples/ManageKeyVault.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/keyvault/samples/ManageKeyVault.java @@ -13,7 +13,7 @@ import com.azure.resourcemanager.keyvault.models.SecretPermissions; import com.azure.resourcemanager.keyvault.models.Vault; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; /** diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/kubernetescluster/samples/DeployImageFromContainerRegistryToKubernetes.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/kubernetescluster/samples/DeployImageFromContainerRegistryToKubernetes.java index bf925c6fee05..ced9675f88ac 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/kubernetescluster/samples/DeployImageFromContainerRegistryToKubernetes.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/kubernetescluster/samples/DeployImageFromContainerRegistryToKubernetes.java @@ -13,7 +13,7 @@ import com.azure.resourcemanager.containerservice.models.ContainerServiceVMSizeTypes; import com.azure.resourcemanager.containerservice.models.KubernetesCluster; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.DockerUtils; import com.azure.resourcemanager.samples.SSHShell; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/kubernetescluster/samples/ManageKubernetesCluster.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/kubernetescluster/samples/ManageKubernetesCluster.java index 1bd9af62ed92..5859b1dd6a3e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/kubernetescluster/samples/ManageKubernetesCluster.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/kubernetescluster/samples/ManageKubernetesCluster.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.containerservice.models.ContainerServiceVMSizeTypes; import com.azure.resourcemanager.containerservice.models.KubernetesCluster; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.SSHShell; import com.azure.resourcemanager.samples.Utils; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/kubernetescluster/samples/ManagedKubernetesClusterWithAdvancedNetworking.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/kubernetescluster/samples/ManagedKubernetesClusterWithAdvancedNetworking.java index c4ca722e497b..f64cb84d1e1c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/kubernetescluster/samples/ManagedKubernetesClusterWithAdvancedNetworking.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/kubernetescluster/samples/ManagedKubernetesClusterWithAdvancedNetworking.java @@ -13,7 +13,7 @@ import com.azure.resourcemanager.containerservice.models.NetworkPlugin; import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.SSHShell; import com.azure.resourcemanager.samples.Utils; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/AutoscaleSettingsBasedOnPerformanceOrSchedule.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/AutoscaleSettingsBasedOnPerformanceOrSchedule.java index 6f4a90ed9d26..f1af5f5fbb0c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/AutoscaleSettingsBasedOnPerformanceOrSchedule.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/AutoscaleSettingsBasedOnPerformanceOrSchedule.java @@ -18,7 +18,7 @@ import com.azure.resourcemanager.monitor.models.ScaleType; import com.azure.resourcemanager.monitor.models.TimeAggregationType; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/QueryMetricsAndActivityLogs.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/QueryMetricsAndActivityLogs.java index 3e54d0d49c0a..c46f4c256e8e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/QueryMetricsAndActivityLogs.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/QueryMetricsAndActivityLogs.java @@ -18,7 +18,7 @@ import com.azure.resourcemanager.monitor.models.TimeSeriesElement; import com.azure.resourcemanager.monitor.fluent.inner.MetadataValueInner; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.AccessTier; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/SecurityBreachOrRiskActivityLogAlerts.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/SecurityBreachOrRiskActivityLogAlerts.java index 5d4bca1d2e31..2bc5c7bedfeb 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/SecurityBreachOrRiskActivityLogAlerts.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/SecurityBreachOrRiskActivityLogAlerts.java @@ -13,7 +13,7 @@ import com.azure.resourcemanager.monitor.models.ActivityLogAlert; import com.azure.resourcemanager.monitor.models.EventData; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.AccessTier; @@ -96,7 +96,7 @@ public static boolean runSample(Azure azure) { // for near real time monitoring. SdkContext.sleep(6 * 60000); - OffsetDateTime recordDateTime = azure.sdkContext().dateTimeNow(); + OffsetDateTime recordDateTime = OffsetDateTime.parse("2020-08-03T16:34:27.009944500+08:00"); // get activity logs for the same period. PagedIterable logs = azure.activityLogs().defineQuery() .startingFrom(recordDateTime.minusDays(7)) diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/WebAppPerformanceMonitoringAlerts.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/WebAppPerformanceMonitoringAlerts.java index 534f8cd0c761..86300bc65a4e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/WebAppPerformanceMonitoringAlerts.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/monitor/samples/WebAppPerformanceMonitoringAlerts.java @@ -16,7 +16,7 @@ import com.azure.resourcemanager.monitor.models.MetricAlertRuleCondition; import com.azure.resourcemanager.monitor.models.MetricAlertRuleTimeAggregation; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.time.Duration; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/CreateSimpleInternetFacingLoadBalancer.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/CreateSimpleInternetFacingLoadBalancer.java index 1fc3ed757388..c2f2845a1689 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/CreateSimpleInternetFacingLoadBalancer.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/CreateSimpleInternetFacingLoadBalancer.java @@ -20,7 +20,7 @@ import com.azure.resourcemanager.network.models.HasNetworkInterfaces; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import org.apache.commons.lang.time.StopWatch; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageApplicationGateway.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageApplicationGateway.java index 25567a07c6bc..8fbf05043687 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageApplicationGateway.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageApplicationGateway.java @@ -19,7 +19,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; import com.azure.resourcemanager.resources.fluentcore.model.CreatedResources; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; import org.apache.commons.lang.time.StopWatch; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageExpressRoute.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageExpressRoute.java index e4201c51d119..2685eea31d70 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageExpressRoute.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageExpressRoute.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.network.models.VirtualNetworkGateway; import com.azure.resourcemanager.network.models.VirtualNetworkGatewaySkuName; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; /** * Azure Network sample for managing express route circuits. diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageExpressRouteCrossConnection.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageExpressRouteCrossConnection.java index 3d9952f12772..890ea991e05c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageExpressRouteCrossConnection.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageExpressRouteCrossConnection.java @@ -9,7 +9,7 @@ import com.azure.identity.DefaultAzureCredentialBuilder; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.network.models.ExpressRouteCrossConnection; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; /** * Azure Network sample for managing express route cross connections. diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageIPAddress.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageIPAddress.java index 3813ac4c2396..d8f86e4cdf08 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageIPAddress.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageIPAddress.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.network.models.NetworkInterface; import com.azure.resourcemanager.network.models.PublicIpAddress; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.Date; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageInternalLoadBalancer.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageInternalLoadBalancer.java index ed11259ae33f..587ea990accb 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageInternalLoadBalancer.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageInternalLoadBalancer.java @@ -20,7 +20,7 @@ import com.azure.resourcemanager.network.models.TransportProtocol; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import org.apache.commons.lang.time.StopWatch; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageInternetFacingLoadBalancer.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageInternetFacingLoadBalancer.java index e30d21c7339b..59226fae78c4 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageInternetFacingLoadBalancer.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageInternetFacingLoadBalancer.java @@ -21,7 +21,7 @@ import com.azure.resourcemanager.network.models.TransportProtocol; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import org.apache.commons.lang.time.StopWatch; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkInterface.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkInterface.java index 43ea16c6d84b..9175221c902a 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkInterface.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkInterface.java @@ -15,7 +15,7 @@ import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.network.models.NetworkInterface; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.Date; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkPeeringInSameSubscription.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkPeeringInSameSubscription.java index de264acc8ecf..9fd1920b3ef4 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkPeeringInSameSubscription.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkPeeringInSameSubscription.java @@ -13,7 +13,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; import com.azure.resourcemanager.resources.fluentcore.model.CreatedResources; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.Arrays; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkSecurityGroup.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkSecurityGroup.java index 33bbc20bccdf..7c9a9ca3961f 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkSecurityGroup.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkSecurityGroup.java @@ -17,7 +17,7 @@ import com.azure.resourcemanager.network.models.NetworkSecurityGroup; import com.azure.resourcemanager.network.models.SecurityRuleProtocol; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.SSHShell; import com.azure.resourcemanager.samples.Utils; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkWatcher.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkWatcher.java index f2cee51b70bc..b11f7d4c1bb6 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkWatcher.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageNetworkWatcher.java @@ -25,7 +25,7 @@ import com.azure.resourcemanager.network.models.VerificationIPFlow; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageSimpleApplicationGateway.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageSimpleApplicationGateway.java index c79d368c2d87..7e3bca5d7b88 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageSimpleApplicationGateway.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageSimpleApplicationGateway.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.network.models.ApplicationGateway; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.io.File; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVirtualMachinesInParallelWithNetwork.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVirtualMachinesInParallelWithNetwork.java index 87e9d515441b..8a9ad7e31089 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVirtualMachinesInParallelWithNetwork.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVirtualMachinesInParallelWithNetwork.java @@ -17,7 +17,7 @@ import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; import org.apache.commons.lang.time.StopWatch; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVirtualNetwork.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVirtualNetwork.java index 795991b27c6b..dd1b8874ed1b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVirtualNetwork.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVirtualNetwork.java @@ -15,7 +15,7 @@ import com.azure.resourcemanager.network.models.NetworkSecurityGroup; import com.azure.resourcemanager.network.models.SecurityRuleProtocol; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.Date; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVirtualNetworkAsync.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVirtualNetworkAsync.java index 72e1cafa48d6..73951e352d5e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVirtualNetworkAsync.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVirtualNetworkAsync.java @@ -16,7 +16,7 @@ import com.azure.resourcemanager.network.models.SecurityRuleProtocol; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Indexable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import reactor.core.publisher.Flux; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVpnGatewayPoint2SiteConnection.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVpnGatewayPoint2SiteConnection.java index 2248c1a21dc2..6e79488140c3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVpnGatewayPoint2SiteConnection.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVpnGatewayPoint2SiteConnection.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.network.models.VirtualNetworkGateway; import com.azure.resourcemanager.network.models.VirtualNetworkGatewaySkuName; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.io.File; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVpnGatewaySite2SiteConnection.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVpnGatewaySite2SiteConnection.java index d839005c9796..9868c60a57a9 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVpnGatewaySite2SiteConnection.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVpnGatewaySite2SiteConnection.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.network.models.VirtualNetworkGateway; import com.azure.resourcemanager.network.models.VirtualNetworkGatewaySkuName; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; /** diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVpnGatewayVNet2VNetConnection.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVpnGatewayVNet2VNetConnection.java index ac38080005c8..530586519435 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVpnGatewayVNet2VNetConnection.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/ManageVpnGatewayVNet2VNetConnection.java @@ -20,7 +20,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; import com.azure.resourcemanager.resources.fluentcore.model.CreatedResources; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/VerifyNetworkPeeringWithNetworkWatcher.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/VerifyNetworkPeeringWithNetworkWatcher.java index 504ac5f6e6d4..9759f45a3c91 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/VerifyNetworkPeeringWithNetworkWatcher.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/network/samples/VerifyNetworkPeeringWithNetworkWatcher.java @@ -18,7 +18,7 @@ import com.azure.resourcemanager.resources.fluentcore.model.Creatable; import com.azure.resourcemanager.resources.fluentcore.model.CreatedResources; import com.azure.resourcemanager.resources.fluentcore.model.Executable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import java.util.ArrayList; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/privatedns/samples/ManagePrivateDns.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/privatedns/samples/ManagePrivateDns.java index 251c663bcb31..b6e9a768973b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/privatedns/samples/ManagePrivateDns.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/privatedns/samples/ManagePrivateDns.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.privatedns.models.PrivateDnsZone; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.samples.Utils; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/rediscache/samples/ManageRedisCache.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/rediscache/samples/ManageRedisCache.java index 332f99789fd2..4d3374e22a12 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/rediscache/samples/ManageRedisCache.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/rediscache/samples/ManageRedisCache.java @@ -18,7 +18,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; import com.azure.resourcemanager.resources.fluentcore.model.CreatedResources; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; /** diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplate.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplate.java index d509bc43b88e..c1f9a4fb0501 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplate.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplate.java @@ -13,7 +13,7 @@ import com.azure.resourcemanager.resources.models.DeploymentMode; import com.azure.resourcemanager.resources.models.DeploymentOperation; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateAsync.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateAsync.java index ca8c7bc0c88a..41c9b30f9112 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateAsync.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateAsync.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.resources.models.Deployment; import com.azure.resourcemanager.resources.models.DeploymentMode; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.node.ObjectNode; import com.google.common.io.ByteStreams; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateWithDeploymentOperations.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateWithDeploymentOperations.java index b4fb0dd7b480..9d340d853e02 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateWithDeploymentOperations.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateWithDeploymentOperations.java @@ -12,7 +12,7 @@ import com.azure.resourcemanager.resources.models.DeploymentMode; import com.azure.resourcemanager.resources.models.DeploymentOperation; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.fasterxml.jackson.databind.ObjectMapper; import com.fasterxml.jackson.databind.node.ObjectNode; import com.google.common.io.ByteStreams; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateWithProgress.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateWithProgress.java index 8cb31ff9ed02..0850c6a092a3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateWithProgress.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateWithProgress.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.resources.models.Deployment; import com.azure.resourcemanager.resources.models.DeploymentMode; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.JsonNode; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateWithTags.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateWithTags.java index c184d1d1a649..c3b48f27bb03 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateWithTags.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployUsingARMTemplateWithTags.java @@ -14,7 +14,7 @@ import com.azure.resourcemanager.resources.models.DeploymentOperation; import com.azure.resourcemanager.resources.models.GenericResource; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployVirtualMachineUsingARMTemplate.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployVirtualMachineUsingARMTemplate.java index a2899f263dff..8130671de695 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployVirtualMachineUsingARMTemplate.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/DeployVirtualMachineUsingARMTemplate.java @@ -8,7 +8,7 @@ import com.azure.identity.DefaultAzureCredentialBuilder; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.models.Deployment; import com.azure.resourcemanager.resources.models.DeploymentMode; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/ManageResource.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/ManageResource.java index 99e03d4abde9..168bd815d99d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/ManageResource.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/ManageResource.java @@ -9,7 +9,7 @@ import com.azure.identity.DefaultAzureCredentialBuilder; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.SkuName; import com.azure.resourcemanager.storage.models.StorageAccount; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/ManageResourceGroup.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/ManageResourceGroup.java index 8ea843c66078..e59c71bc0045 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/ManageResourceGroup.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/resources/samples/ManageResourceGroup.java @@ -10,7 +10,7 @@ import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; /** * Azure Resource sample for managing resource groups - diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/samples/Utils.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/samples/Utils.java index 8e23e7b0decd..509d59720936 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/samples/Utils.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/samples/Utils.java @@ -1540,7 +1540,6 @@ public static String getSecondaryServicePrincipalSecret(String envSecondaryServi */ public static void createCertificate(String certPath, String pfxPath, String alias, String password, String cnName) throws Exception { - SdkContext.prepareFileLocation(new File(pfxPath), new File(certPath)); if (new File(pfxPath).exists()) { return; } diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/GettingSqlServerMetrics.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/GettingSqlServerMetrics.java index 6bb44815baa3..bd01546667e5 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/GettingSqlServerMetrics.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/GettingSqlServerMetrics.java @@ -16,7 +16,7 @@ import com.azure.resourcemanager.monitor.models.MetricValue; import com.azure.resourcemanager.monitor.models.TimeSeriesElement; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.SampleName; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlDatabase.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlDatabase.java index 6cc6e326c348..aee34da87a22 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlDatabase.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlDatabase.java @@ -10,7 +10,7 @@ import com.azure.identity.DefaultAzureCredentialBuilder; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.DatabaseEdition; import com.azure.resourcemanager.sql.models.ServiceObjectiveName; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlDatabaseInElasticPool.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlDatabaseInElasticPool.java index 3abca97de38c..8d9cb4c76876 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlDatabaseInElasticPool.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlDatabaseInElasticPool.java @@ -10,7 +10,7 @@ import com.azure.identity.DefaultAzureCredentialBuilder; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.DatabaseEdition; import com.azure.resourcemanager.sql.models.ElasticPoolActivity; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlDatabasesAcrossDifferentDataCenters.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlDatabasesAcrossDifferentDataCenters.java index 5b6395614c45..a72fb3d9ea9d 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlDatabasesAcrossDifferentDataCenters.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlDatabasesAcrossDifferentDataCenters.java @@ -16,7 +16,7 @@ import com.azure.resourcemanager.network.models.PublicIpAddress; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.CreateMode; import com.azure.resourcemanager.sql.models.DatabaseEdition; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlFailoverGroups.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlFailoverGroups.java index d2245ee57e9f..81c969d73031 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlFailoverGroups.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlFailoverGroups.java @@ -8,7 +8,7 @@ import com.azure.identity.DefaultAzureCredentialBuilder; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.SampleName; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlFirewallRules.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlFirewallRules.java index 2b4c837991f7..853c2194b0f3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlFirewallRules.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlFirewallRules.java @@ -10,7 +10,7 @@ import com.azure.identity.DefaultAzureCredentialBuilder; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.SqlFirewallRule; import com.azure.resourcemanager.sql.models.SqlServer; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlImportExportDatabase.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlImportExportDatabase.java index 0625a27c1a27..835e7c5bc057 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlImportExportDatabase.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlImportExportDatabase.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.SampleName; import com.azure.resourcemanager.sql.models.SqlDatabase; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlServerDnsAliases.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlServerDnsAliases.java index d585bf1aabe0..6b754bce9317 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlServerDnsAliases.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlServerDnsAliases.java @@ -9,7 +9,7 @@ import com.azure.identity.DefaultAzureCredentialBuilder; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.SqlServer; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlServerKeysWithAzureKeyVaultKey.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlServerKeysWithAzureKeyVaultKey.java index daf17dc54d0b..d5446b556c8c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlServerKeysWithAzureKeyVaultKey.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlServerKeysWithAzureKeyVaultKey.java @@ -15,7 +15,7 @@ import com.azure.resourcemanager.keyvault.models.SkuName; import com.azure.resourcemanager.keyvault.models.Vault; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.SqlServer; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlServerSecurityAlertPolicy.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlServerSecurityAlertPolicy.java index 474b500475c9..2ccf2261d16b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlServerSecurityAlertPolicy.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlServerSecurityAlertPolicy.java @@ -8,7 +8,7 @@ import com.azure.identity.DefaultAzureCredentialBuilder; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.SampleName; import com.azure.resourcemanager.sql.models.SecurityAlertPolicyState; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlVirtualNetworkRules.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlVirtualNetworkRules.java index e3a254943e60..388dcad21489 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlVirtualNetworkRules.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlVirtualNetworkRules.java @@ -11,7 +11,7 @@ import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.network.models.ServiceEndpointType; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.SqlServer; import com.azure.resourcemanager.sql.models.SqlVirtualNetworkRule; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlWithRecoveredOrRestoredDatabase.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlWithRecoveredOrRestoredDatabase.java index b993fbcbfcc9..c8a222b060ab 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlWithRecoveredOrRestoredDatabase.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/sql/samples/ManageSqlWithRecoveredOrRestoredDatabase.java @@ -9,7 +9,7 @@ import com.azure.identity.DefaultAzureCredentialBuilder; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.sql.models.RestorePoint; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/storage/samples/ManageStorageAccount.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/storage/samples/ManageStorageAccount.java index 0acd5244df88..68a9dfb72dfb 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/storage/samples/ManageStorageAccount.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/storage/samples/ManageStorageAccount.java @@ -11,7 +11,7 @@ import com.azure.identity.DefaultAzureCredentialBuilder; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; import com.azure.resourcemanager.storage.models.StorageAccountEncryptionStatus; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/storage/samples/ManageStorageAccountAsync.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/storage/samples/ManageStorageAccountAsync.java index 3f49db22a9ad..0abe475919d3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/storage/samples/ManageStorageAccountAsync.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/storage/samples/ManageStorageAccountAsync.java @@ -10,7 +10,7 @@ import com.azure.identity.DefaultAzureCredentialBuilder; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; import com.azure.resourcemanager.storage.models.StorageAccounts; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/storage/samples/ManageStorageAccountNetworkRules.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/storage/samples/ManageStorageAccountNetworkRules.java index 5b285bfc298a..af614641db3b 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/storage/samples/ManageStorageAccountNetworkRules.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/main/java/com/azure/resourcemanager/storage/samples/ManageStorageAccountNetworkRules.java @@ -15,7 +15,7 @@ import com.azure.resourcemanager.network.models.PublicIpAddress; import com.azure.resourcemanager.network.models.ServiceEndpointType; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.samples.Utils; import com.azure.resourcemanager.storage.models.StorageAccount; diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/AppPlatformLiveOnlyTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/AppPlatformLiveOnlyTests.java index c9e6e594062c..64293fd6c782 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/AppPlatformLiveOnlyTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/AppPlatformLiveOnlyTests.java @@ -3,18 +3,18 @@ package com.azure.resourcemanager.samples; +import com.azure.core.test.annotation.DoNotRecord; import com.azure.resourcemanager.appplatform.samples.ManageSpringCloud; -import com.azure.resourcemanager.resources.core.TestBase; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; public class AppPlatformLiveOnlyTests extends SamplesTestBase { - public AppPlatformLiveOnlyTests() { - super(TestBase.RunCondition.LIVE_ONLY); - } - @Test + @DoNotRecord public void testSpringCloud() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageSpringCloud.runSample(azure, clientIdFromFile())); } } diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/AppServiceSampleLiveOnlyTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/AppServiceSampleLiveOnlyTests.java index 6e6d3d874b5b..83f850762458 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/AppServiceSampleLiveOnlyTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/AppServiceSampleLiveOnlyTests.java @@ -3,6 +3,7 @@ package com.azure.resourcemanager.samples; +import com.azure.core.test.annotation.DoNotRecord; import com.azure.resourcemanager.appservice.samples.ManageFunctionAppLogs; import com.azure.resourcemanager.appservice.samples.ManageFunctionAppSourceControl; import com.azure.resourcemanager.appservice.samples.ManageFunctionAppWithAuthentication; @@ -19,82 +20,133 @@ import com.azure.resourcemanager.appservice.samples.ManageWebAppSourceControl; import com.azure.resourcemanager.appservice.samples.ManageWebAppStorageAccountConnection; import com.azure.resourcemanager.appservice.samples.ManageWebAppWithDomainSsl; -import com.azure.resourcemanager.resources.core.TestBase; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; public class AppServiceSampleLiveOnlyTests extends SamplesTestBase { - public AppServiceSampleLiveOnlyTests() { - super(TestBase.RunCondition.LIVE_ONLY); - } - @Test + @DoNotRecord public void testManageWebAppSourceControl() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageWebAppSourceControl.runSample(azure)); } @Test + @DoNotRecord public void testManageWebAppStorageAccountConnection() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageWebAppStorageAccountConnection.runSample(azure)); } @Test + @DoNotRecord public void testManageLinuxWebAppSourceControl() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageLinuxWebAppSourceControl.runSample(azure)); } @Test + @DoNotRecord public void testManageLinuxWebAppStorageAccountConnection() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageLinuxWebAppStorageAccountConnection.runSample(azure)); } @Test + @DoNotRecord public void testManageLinuxWebAppWithContainerRegistry() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageLinuxWebAppWithContainerRegistry.runSample(azure)); } @Test + @DoNotRecord public void testManageFunctionAppWithAuthentication() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageFunctionAppWithAuthentication.runSample(azure)); } @Test + @DoNotRecord public void testManageFunctionAppSourceControl() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageFunctionAppSourceControl.runSample(azure)); } @Test + @DoNotRecord public void testManageLinuxWebAppCosmosDbByMsi() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageLinuxWebAppCosmosDbByMsi.runSample(azure)); } @Test + @DoNotRecord public void testManageWebAppCosmosDbByMsi() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageWebAppCosmosDbByMsi.runSample(azure, credentialFromFile(), clientIdFromFile())); } @Test + @DoNotRecord public void testManageWebAppCosmosDbThroughKeyVault() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageWebAppCosmosDbThroughKeyVault.runSample(azure, clientIdFromFile())); } @Test + @DoNotRecord public void testManageFunctionAppLogs() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageFunctionAppLogs.runSample(azure)); } @Test + @DoNotRecord public void testManageWebAppLogs() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageWebAppLogs.runSample(azure)); } @Test + @DoNotRecord public void testManageLinuxFunctionAppSourceControl() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageLinuxFunctionAppSourceControl.runSample(azure)); } @Test + @DoNotRecord public void testManageWebAppWithDomainSsl() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageWebAppWithDomainSsl.runSample(azure)); } @@ -104,7 +156,11 @@ public void testManageWebAppWithDomainSsl() { // } @Test + @DoNotRecord public void testManageLinuxWebAppWithDomainSsl() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageLinuxWebAppWithDomainSsl.runSample(azure)); } @@ -114,7 +170,11 @@ public void testManageLinuxWebAppWithDomainSsl() { // } @Test + @DoNotRecord public void testManageFunctionAppWithDomainSsl() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageFunctionAppWithDomainSsl.runSample(azure)); } } diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ContainerRegistryTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ContainerRegistryTests.java index 60eca2679982..89e3eb248f68 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ContainerRegistryTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ContainerRegistryTests.java @@ -3,25 +3,28 @@ package com.azure.resourcemanager.samples; +import com.azure.core.test.annotation.DoNotRecord; import com.azure.resourcemanager.containerregistry.samples.ManageContainerRegistry; import com.azure.resourcemanager.containerregistry.samples.ManageContainerRegistryWithWebhooks; -import com.azure.resourcemanager.resources.core.TestBase; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; public class ContainerRegistryTests extends SamplesTestBase { - public ContainerRegistryTests() { - // Failing in playback - dependent on Docker client/glassfish jersey library which is expecting a real connection - super(TestBase.RunCondition.LIVE_ONLY); - } - @Test + @DoNotRecord public void testManageContainerRegistry() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageContainerRegistry.runSample(azure)); } @Test + @DoNotRecord public void testManageContainerRegistryWithWebhooks() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageContainerRegistryWithWebhooks.runSample(azure)); } } diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/GraphRbacTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/GraphRbacTests.java index 58be30fa2019..8d25e8e1621c 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/GraphRbacTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/GraphRbacTests.java @@ -3,25 +3,35 @@ package com.azure.resourcemanager.samples; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; +import com.azure.core.test.annotation.DoNotRecord; import com.azure.resourcemanager.Azure; import com.azure.resourcemanager.authorization.samples.ManageServicePrincipalCredentials; import com.azure.resourcemanager.authorization.samples.ManageUsersGroupsAndRoles; -import com.azure.resourcemanager.resources.core.TestBase; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.test.ResourceManagerTestBase; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; -public class GraphRbacTests extends TestBase { +import java.time.temporal.ChronoUnit; +import java.util.List; + +public class GraphRbacTests extends ResourceManagerTestBase { private Azure.Authenticated authenticated; private AzureProfile profile; - public GraphRbacTests() { - super(TestBase.RunCondition.LIVE_ONLY); - } - @Test + @DoNotRecord public void testManageUsersGroupsAndRoles() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageUsersGroupsAndRoles.runSample(authenticated, profile)); } @@ -31,10 +41,32 @@ public void testManageUsersGroupsAndRoles() { // } @Test + @DoNotRecord public void testManageServicePrincipalCredentials() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageServicePrincipalCredentials.runSample(authenticated, profile)); } + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { authenticated = Azure.authenticate(httpPipeline, profile); diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/NetworkWatcherSampleLiveOnlyTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/NetworkWatcherSampleLiveOnlyTests.java index 55594ad1e181..5b1464566888 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/NetworkWatcherSampleLiveOnlyTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/NetworkWatcherSampleLiveOnlyTests.java @@ -2,18 +2,19 @@ // Licensed under the MIT License. package com.azure.resourcemanager.samples; +import com.azure.core.test.annotation.DoNotRecord; import com.azure.resourcemanager.network.samples.ManageNetworkWatcher; -import com.azure.resourcemanager.resources.core.TestBase; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; public class NetworkWatcherSampleLiveOnlyTests extends SamplesTestBase { - public NetworkWatcherSampleLiveOnlyTests() { - super(TestBase.RunCondition.LIVE_ONLY); - } @Test + @DoNotRecord public void testManageNetworkWatcher() { + if (skipInPlayback()) { + return; + } Assertions.assertTrue(ManageNetworkWatcher.runSample(azure)); } } diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ResourceSampleTests.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ResourceSampleTests.java index 674a7ccb4003..cb809db134b7 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ResourceSampleTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/ResourceSampleTests.java @@ -34,7 +34,7 @@ public void testDeployUsingARMTemplateAsync() { Assertions.assertTrue(DeployUsingARMTemplateAsync.runSample(azure)); } - @Test() + @Test public void testDeployUsingARMTemplateWithDeploymentOperations() { if (isPlaybackMode()) { Assertions.assertTrue(DeployUsingARMTemplateWithDeploymentOperations.runSample(azure, 0)); diff --git a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SamplesTestBase.java b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SamplesTestBase.java index 5f0c9f6e1854..1d0bab50dcc8 100644 --- a/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SamplesTestBase.java +++ b/sdk/resourcemanager/azure-resourcemanager-samples/src/test/java/com/azure/resourcemanager/samples/SamplesTestBase.java @@ -3,24 +3,49 @@ package com.azure.resourcemanager.samples; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.resourcemanager.Azure; -import com.azure.resourcemanager.resources.core.TestBase; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; -public class SamplesTestBase extends TestBase { - protected Azure azure; +import java.time.temporal.ChronoUnit; +import java.util.List; - public SamplesTestBase() { - super(RunCondition.BOTH); - } +public class SamplesTestBase extends ResourceManagerTestBase { + protected Azure azure; - public SamplesTestBase(RunCondition runCondition) { - super(runCondition); + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); } @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); azure = Azure .authenticate(httpPipeline, profile) .withSdkContext(sdkContext) diff --git a/sdk/resourcemanager/azure-resourcemanager-sql/pom.xml b/sdk/resourcemanager/azure-resourcemanager-sql/pom.xml index b2ac0ba20261..82cc6c748cb1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-sql/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-sql/pom.xml @@ -84,9 +84,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/SqlServerManager.java b/sdk/resourcemanager/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/SqlServerManager.java index 3d0cf17b71e9..6cba62853e69 100644 --- a/sdk/resourcemanager/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/SqlServerManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-sql/src/main/java/com/azure/resourcemanager/sql/SqlServerManager.java @@ -8,7 +8,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.sql.implementation.SqlServersImpl; @@ -28,12 +28,13 @@ protected SqlServerManager(HttpPipeline httpPipeline, AzureProfile profile, SdkC profile, new SqlManagementClientBuilder() .pipeline(httpPipeline) - .subscriptionId(profile.subscriptionId()) - .endpoint(profile.environment().getResourceManagerEndpoint()) + .environment(profile.getEnvironment()) + .subscriptionId(profile.getSubscriptionId()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) .buildClient(), sdkContext); this.storageManager = StorageManager.authenticate(httpPipeline, profile); - this.tenantId = profile.tenantId(); + this.tenantId = profile.getTenantId(); } /** @return the storage manager in sql manager */ diff --git a/sdk/resourcemanager/azure-resourcemanager-sql/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-sql/src/main/java/module-info.java new file mode 100644 index 000000000000..80ed3791f1d6 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-sql/src/main/java/module-info.java @@ -0,0 +1,11 @@ +module com.azure.resourcemanager.sql { + requires transitive com.azure.resourcemanager.storage; + + exports com.azure.resourcemanager.sql; + exports com.azure.resourcemanager.sql.fluent; + exports com.azure.resourcemanager.sql.fluent.inner; + exports com.azure.resourcemanager.sql.models; + + opens com.azure.resourcemanager.sql.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.sql.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-sql/src/test/java/com/azure/resourcemanager/sql/SqlServerOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-sql/src/test/java/com/azure/resourcemanager/sql/SqlServerOperationsTests.java index f2ea7b64762e..79129ff5affe 100644 --- a/sdk/resourcemanager/azure-resourcemanager-sql/src/test/java/com/azure/resourcemanager/sql/SqlServerOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-sql/src/test/java/com/azure/resourcemanager/sql/SqlServerOperationsTests.java @@ -5,7 +5,6 @@ import com.azure.core.http.rest.PagedIterable; import com.azure.core.management.exception.ManagementException; -import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; import com.azure.resourcemanager.resources.fluentcore.model.Indexable; @@ -218,9 +217,9 @@ public void canCRUDSqlSyncGroup() throws Exception { } @Test - public void canCopySqlDatabase() throws Exception { - final String sqlPrimaryServerName = sdkContext.randomResourceName("sqlpri", 22); - final String sqlSecondaryServerName = sdkContext.randomResourceName("sqlsec", 22); + public void canCopySqlDatabase() { + final String sqlPrimaryServerName = generateRandomResourceName("sqlpri", 22); + final String sqlSecondaryServerName = generateRandomResourceName("sqlsec", 22); final String epName = "epSample"; final String dbName = "dbSample"; final String administratorLogin = "sqladmin"; @@ -269,12 +268,12 @@ public void canCopySqlDatabase() throws Exception { } @Test - public void canCRUDSqlFailoverGroup() throws Exception { - final String sqlPrimaryServerName = sdkContext.randomResourceName("sqlpri", 22); - final String sqlSecondaryServerName = sdkContext.randomResourceName("sqlsec", 22); - final String sqlOtherServerName = sdkContext.randomResourceName("sql000", 22); - final String failoverGroupName = sdkContext.randomResourceName("fg", 22); - final String failoverGroupName2 = sdkContext.randomResourceName("fg2", 22); + public void canCRUDSqlFailoverGroup() { + final String sqlPrimaryServerName = generateRandomResourceName("sqlpri", 22); + final String sqlSecondaryServerName = generateRandomResourceName("sqlsec", 22); + final String sqlOtherServerName = generateRandomResourceName("sql000", 22); + final String failoverGroupName = generateRandomResourceName("fg", 22); + final String failoverGroupName2 = generateRandomResourceName("fg2", 22); final String dbName = "dbSample"; final String administratorLogin = "sqladmin"; final String administratorPassword = password(); @@ -414,8 +413,8 @@ public void canChangeSqlServerAndDatabaseAutomaticTuning() throws Exception { String sqlServerAdminName = "sqladmin"; String sqlServerAdminPassword = password(); String databaseName = "db-from-sample"; - String id = sdkContext.randomUuid(); - String storageName = sdkContext.randomResourceName(sqlServerName, 22); + String id = generateRandomUuid(); + String storageName = generateRandomResourceName(sqlServerName, 22); // Create SqlServer sqlServer = @@ -631,8 +630,8 @@ public void canCRUDSqlServerWithImportDatabase() throws Exception { String sqlServerAdminName = "sqladmin"; String sqlServerAdminPassword = password(); - String id = sdkContext.randomUuid(); - String storageName = sdkContext.randomResourceName(sqlServerName, 22); + String id = generateRandomUuid(); + String storageName = generateRandomResourceName(sqlServerName, 22); SqlServer sqlServer = sqlServerManager @@ -711,7 +710,7 @@ public void canCRUDSqlServerWithImportDatabase() throws Exception { public void canCRUDSqlServerWithFirewallRule() throws Exception { // Create String sqlServerAdminName = "sqladmin"; - String id = sdkContext.randomUuid(); + String id = generateRandomUuid(); SqlServer sqlServer = sqlServerManager @@ -876,7 +875,7 @@ public void canCRUDSqlServer() throws Exception { } @Test - public void canUseCoolShortcutsForResourceCreation() throws Exception { + public void canUseCoolShortcutsForResourceCreation() { if (isPlaybackMode()) { return; // TODO: fix playback random fail } @@ -970,7 +969,7 @@ public void canUseCoolShortcutsForResourceCreation() throws Exception { } @Test - public void canCRUDSqlDatabase() throws Exception { + public void canCRUDSqlDatabase() { // Create SqlServer sqlServer = createSqlServer(); Flux resourceStream = @@ -996,7 +995,7 @@ public void canCRUDSqlDatabase() throws Exception { transparentDataEncryptionActivities = transparentDataEncryption.listActivities(); Assertions.assertNotNull(transparentDataEncryptionActivities); - TestUtilities.sleep(10000, isRecordMode()); + SdkContext.sleep(10000); transparentDataEncryption = sqlDatabase.getTransparentDataEncryption().updateStatus(TransparentDataEncryptionStatus.DISABLED); Assertions.assertNotNull(transparentDataEncryption); @@ -1070,7 +1069,7 @@ public void canCRUDSqlDatabase() throws Exception { } @Test - public void canManageReplicationLinks() throws Exception { + public void canManageReplicationLinks() { // Create String anotherSqlServerName = sqlServerName + "another"; SqlServer sqlServer1 = createSqlServer(); @@ -1094,7 +1093,7 @@ public void canManageReplicationLinks() throws Exception { .withSourceDatabase(databaseInServer1.id()) .withMode(CreateMode.ONLINE_SECONDARY) .create(); - TestUtilities.sleep(2000, isRecordMode()); + SdkContext.sleep(2000); List replicationLinksInDb1 = new ArrayList<>(databaseInServer1.listReplicationLinks().values()); @@ -1114,12 +1113,12 @@ public void canManageReplicationLinks() throws Exception { // Failover replicationLinksInDb2.get(0).failover(); replicationLinksInDb2.get(0).refresh(); - TestUtilities.sleep(30000, isRecordMode()); + SdkContext.sleep(30000); // Force failover replicationLinksInDb1.get(0).forceFailoverAllowDataLoss(); replicationLinksInDb1.get(0).refresh(); - TestUtilities.sleep(30000, isRecordMode()); + SdkContext.sleep(30000); replicationLinksInDb2.get(0).delete(); Assertions.assertEquals(databaseInServer2.listReplicationLinks().size(), 0); @@ -1134,7 +1133,7 @@ public void canManageReplicationLinks() throws Exception { } @Test - public void canDoOperationsOnDataWarehouse() throws Exception { + public void canDoOperationsOnDataWarehouse() { // Create SqlServer sqlServer = createSqlServer(); @@ -1184,7 +1183,7 @@ public void canDoOperationsOnDataWarehouse() throws Exception { } @Test - public void canCRUDSqlDatabaseWithElasticPool() throws Exception { + public void canCRUDSqlDatabaseWithElasticPool() { // Create SqlServer sqlServer = createSqlServer(); diff --git a/sdk/resourcemanager/azure-resourcemanager-sql/src/test/java/com/azure/resourcemanager/sql/SqlServerTest.java b/sdk/resourcemanager/azure-resourcemanager-sql/src/test/java/com/azure/resourcemanager/sql/SqlServerTest.java index 5b3f9a86bfe5..c86aeab0f7a1 100644 --- a/sdk/resourcemanager/azure-resourcemanager-sql/src/test/java/com/azure/resourcemanager/sql/SqlServerTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-sql/src/test/java/com/azure/resourcemanager/sql/SqlServerTest.java @@ -3,31 +3,60 @@ package com.azure.resourcemanager.sql; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; -import com.azure.resourcemanager.resources.core.TestBase; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; +import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.ResourceManager; import com.azure.resourcemanager.storage.StorageManager; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; -public abstract class SqlServerTest extends TestBase { +import java.time.temporal.ChronoUnit; +import java.util.List; + +public abstract class SqlServerTest extends ResourceManagerTestBase { protected ResourceManager resourceManager; protected SqlServerManager sqlServerManager; protected StorageManager storageManager; protected String rgName = ""; protected String sqlServerName = ""; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { rgName = generateRandomResourceName("rgsql", 20); sqlServerName = generateRandomResourceName("javasqlserver", 20); - + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); resourceManager = - ResourceManager.authenticate(httpPipeline, profile).withSdkContext(sdkContext).withDefaultSubscription(); - + ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); sqlServerManager = SqlServerManager.authenticate(httpPipeline, profile, sdkContext); - - storageManager = StorageManager.authenticate(httpPipeline, profile, sdkContext); + storageManager = StorageManager.authenticate(httpPipeline, profile); } @Override diff --git a/sdk/resourcemanager/azure-resourcemanager-storage/pom.xml b/sdk/resourcemanager/azure-resourcemanager-storage/pom.xml index 197fb93d83d1..46eef7581992 100644 --- a/sdk/resourcemanager/azure-resourcemanager-storage/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager-storage/pom.xml @@ -80,9 +80,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager-storage/src/main/java/com/azure/resourcemanager/storage/StorageManager.java b/sdk/resourcemanager/azure-resourcemanager-storage/src/main/java/com/azure/resourcemanager/storage/StorageManager.java index 18acea0ec251..fb0541d9f56e 100644 --- a/sdk/resourcemanager/azure-resourcemanager-storage/src/main/java/com/azure/resourcemanager/storage/StorageManager.java +++ b/sdk/resourcemanager/azure-resourcemanager-storage/src/main/java/com/azure/resourcemanager/storage/StorageManager.java @@ -8,7 +8,7 @@ import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.Manager; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.storage.implementation.BlobContainersImpl; @@ -102,8 +102,9 @@ private StorageManager(HttpPipeline httpPipeline, AzureProfile profile, SdkConte profile, new StorageManagementClientBuilder() .pipeline(httpPipeline) - .endpoint(profile.environment().getResourceManagerEndpoint()) - .subscriptionId(profile.subscriptionId()) + .environment(profile.getEnvironment()) + .endpoint(profile.getEnvironment().getResourceManagerEndpoint()) + .subscriptionId(profile.getSubscriptionId()) .buildClient(), sdkContext); } diff --git a/sdk/resourcemanager/azure-resourcemanager-storage/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-storage/src/main/java/module-info.java new file mode 100644 index 000000000000..aab11eb0d2dc --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-storage/src/main/java/module-info.java @@ -0,0 +1,11 @@ +module com.azure.resourcemanager.storage { + requires transitive com.azure.resourcemanager.resources; + + exports com.azure.resourcemanager.storage; + exports com.azure.resourcemanager.storage.fluent; + exports com.azure.resourcemanager.storage.fluent.inner; + exports com.azure.resourcemanager.storage.models; + + opens com.azure.resourcemanager.storage.fluent.inner to com.fasterxml.jackson.databind, com.azure.core; + opens com.azure.resourcemanager.storage.models to com.fasterxml.jackson.databind, com.azure.core; +} diff --git a/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageAccountNetworkRuleTests.java b/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageAccountNetworkRuleTests.java index 5c6d230374e9..d01d869f66b3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageAccountNetworkRuleTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageAccountNetworkRuleTests.java @@ -6,7 +6,7 @@ import com.azure.core.http.HttpPipeline; import com.azure.resourcemanager.resources.models.ResourceGroup; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.DefaultAction; import com.azure.resourcemanager.storage.models.StorageAccount; import org.junit.jupiter.api.Assertions; diff --git a/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageAccountOperationsTests.java b/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageAccountOperationsTests.java index 39e189649865..af605db0dc36 100644 --- a/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageAccountOperationsTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageAccountOperationsTests.java @@ -7,7 +7,7 @@ import com.azure.core.http.rest.PagedIterable; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Indexable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.Utils; import java.util.List; import java.util.Map; diff --git a/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageBlobContainersTests.java b/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageBlobContainersTests.java index fe09d979079c..2796d5681cb8 100644 --- a/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageBlobContainersTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageBlobContainersTests.java @@ -8,7 +8,7 @@ import java.util.HashMap; import java.util.Map; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.BlobContainer; import com.azure.resourcemanager.storage.models.BlobContainers; import com.azure.resourcemanager.storage.models.PublicAccess; diff --git a/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageBlobServicesTests.java b/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageBlobServicesTests.java index db028202be1a..8174e665bebf 100644 --- a/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageBlobServicesTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageBlobServicesTests.java @@ -5,7 +5,7 @@ import com.azure.core.http.HttpPipeline; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.BlobServiceProperties; import com.azure.resourcemanager.storage.models.BlobServices; import com.azure.resourcemanager.storage.models.StorageAccount; diff --git a/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageManagementPoliciesTests.java b/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageManagementPoliciesTests.java index 2745982b0b7f..3bf370034170 100644 --- a/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageManagementPoliciesTests.java +++ b/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageManagementPoliciesTests.java @@ -9,7 +9,7 @@ import java.util.Collections; import java.util.List; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.storage.models.AccessTier; import com.azure.resourcemanager.storage.models.BlobTypes; import com.azure.resourcemanager.storage.models.ManagementPolicies; diff --git a/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageManagementTest.java b/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageManagementTest.java index d67b867465a7..5d33d82937a3 100644 --- a/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageManagementTest.java +++ b/sdk/resourcemanager/azure-resourcemanager-storage/src/test/java/com/azure/resourcemanager/storage/StorageManagementTest.java @@ -3,21 +3,50 @@ package com.azure.resourcemanager.storage; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; -import com.azure.resourcemanager.resources.core.TestBase; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.ResourceManager; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; + +import java.time.temporal.ChronoUnit; +import java.util.List; /** The base for storage manager tests. */ -public abstract class StorageManagementTest extends TestBase { +public abstract class StorageManagementTest extends ResourceManagerTestBase { protected ResourceManager resourceManager; protected StorageManager storageManager; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); resourceManager = - ResourceManager.authenticate(httpPipeline, profile).withSdkContext(sdkContext).withDefaultSubscription(); - - storageManager = StorageManager.authenticate(httpPipeline, profile, sdkContext); + ResourceManager.authenticate(httpPipeline, profile).withDefaultSubscription(); + storageManager = StorageManager.authenticate(httpPipeline, profile); } } diff --git a/sdk/resourcemanager/azure-resourcemanager-test/CHANGELOG.md b/sdk/resourcemanager/azure-resourcemanager-test/CHANGELOG.md new file mode 100644 index 000000000000..003c434ede62 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-test/CHANGELOG.md @@ -0,0 +1,5 @@ +# Release History + +## 2.0.0-beta.4 (Unreleased) + +- TODO diff --git a/sdk/resourcemanager/azure-resourcemanager-test/README.md b/sdk/resourcemanager/azure-resourcemanager-test/README.md new file mode 100644 index 000000000000..12d7783028f3 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-test/README.md @@ -0,0 +1,40 @@ +# Azure Resource Manager Test shared library for Java + +Azure Resource Manager test library for Java + +## Getting started + +### Prerequisites + +- Java Development Kit (JDK) with version 8 or above + +### Adding the package to your product + +[//]: # ({x-version-update-start;com.azure.resourcemanager:azure-resourcemanager-test;current}) +```xml + + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 + +``` +[//]: # ({x-version-update-end}) + +## Key concepts + +## Examples + +## Troubleshooting + +## Next steps + +## Contributing + +If you would like to become an active contributor to this project please follow the instructions provided in [Microsoft +Azure Projects Contribution Guidelines](http://azure.github.io/guidelines.html). + +1. Fork it +1. Create your feature branch (`git checkout -b my-new-feature`) +1. Commit your changes (`git commit -am 'Add some feature'`) +1. Push to the branch (`git push origin my-new-feature`) +1. Create new Pull Request diff --git a/sdk/resourcemanager/azure-resourcemanager-test/pom.xml b/sdk/resourcemanager/azure-resourcemanager-test/pom.xml new file mode 100644 index 000000000000..ca16d59ddffe --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-test/pom.xml @@ -0,0 +1,124 @@ + + + 4.0.0 + + com.azure + azure-client-sdk-parent + 1.7.0 + ../../parents/azure-client-sdk-parent + + + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 + jar + + Microsoft Azure Resource Manager Test Library + This package contains test types for Azure Resource Manager SDK. + https://github.com/Azure/azure-sdk-for-java + + + + The MIT License (MIT) + http://opensource.org/licenses/MIT + repo + + + + + https://github.com/Azure/azure-sdk-for-java + scm:git:git@github.com:Azure/azure-sdk-for-java.git + HEAD + + + + + 0.10 + 0.10 + + + + + microsoft + Microsoft + + + + + + com.azure + azure-core-test + 1.4.0 + + + com.azure + azure-core-management + 1.0.0-beta.3 + + + com.azure + azure-identity + 1.1.0 + + + com.azure + azure-core-http-netty + 1.5.4 + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.1.2 + + + + test-jar + + + + + + + true + true + + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 3.0.0-M3 + + + + + com.github.spotbugs:spotbugs-annotations:[4.0.2] + + + + + + + + org.jacoco + jacoco-maven-plugin + 0.8.5 + + + com/azure/resourcemanager/**/fluent/**/* + com/azure/resourcemanager/**/models/**/* + + + + + + + diff --git a/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestBase.java b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestBase.java new file mode 100644 index 000000000000..852ef36a4772 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/ResourceManagerTestBase.java @@ -0,0 +1,286 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +package com.azure.resourcemanager.test; + +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; +import com.azure.core.http.HttpPipeline; +import com.azure.core.http.ProxyOptions; +import com.azure.core.http.netty.NettyAsyncHttpClientBuilder; +import com.azure.core.http.policy.CookiePolicy; +import com.azure.core.http.policy.HttpLogDetailLevel; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.TimeoutPolicy; +import com.azure.core.management.AzureEnvironment; +import com.azure.core.management.profile.AzureProfile; +import com.azure.core.test.TestBase; +import com.azure.core.test.TestMode; +import com.azure.core.test.utils.ResourceNamer; +import com.azure.core.util.Configuration; +import com.azure.core.util.logging.ClientLogger; +import com.azure.identity.ClientSecretCredentialBuilder; +import com.azure.resourcemanager.test.policy.TextReplacementPolicy; +import com.azure.resourcemanager.test.utils.AuthFile; + +import java.io.File; +import java.io.IOException; +import java.io.OutputStream; +import java.io.PrintStream; +import java.io.UnsupportedEncodingException; +import java.net.InetSocketAddress; +import java.net.Proxy; +import java.net.ProxySelector; +import java.net.URI; +import java.net.URISyntaxException; +import java.nio.charset.Charset; +import java.time.Duration; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +/** + * Test base for resource manager SDK. + */ +public abstract class ResourceManagerTestBase extends TestBase { + private static final String ZERO_SUBSCRIPTION = "00000000-0000-0000-0000-000000000000"; + private static final String ZERO_TENANT = "00000000-0000-0000-0000-000000000000"; + private static final String PLAYBACK_URI_BASE = "http://localhost:"; + private static final String AZURE_AUTH_LOCATION = "AZURE_AUTH_LOCATION"; + private static final String HTTPS_PROXY_HOST = "https.proxyHost"; + private static final String HTTPS_PROXY_PORT = "https.proxyPort"; + private static final String HTTP_PROXY_HOST = "http.proxyHost"; + private static final String HTTP_PROXY_PORT = "http.proxyPort"; + private static final String USE_SYSTEM_PROXY = "java.net.useSystemProxies"; + private static final String VALUE_TRUE = "true"; + private static final String PLAYBACK_URI = PLAYBACK_URI_BASE + "1234"; + private static final AzureProfile PLAYBACK_PROFILE = new AzureProfile( + ZERO_TENANT, + ZERO_SUBSCRIPTION, + new AzureEnvironment( + new HashMap() { + { + put("managementEndpointUrl", PLAYBACK_URI); + put("resourceManagerEndpointUrl", PLAYBACK_URI); + put("sqlManagementEndpointUrl", PLAYBACK_URI); + put("galleryEndpointUrl", PLAYBACK_URI); + put("activeDirectoryEndpointUrl", PLAYBACK_URI); + put("activeDirectoryResourceId", PLAYBACK_URI); + put("activeDirectoryGraphResourceId", PLAYBACK_URI); + }})); + private static final OutputStream EMPTY_OUTPUT_STREAM = new OutputStream() { + @Override + public void write(int b) { + } + }; + + private final ClientLogger logger = new ClientLogger(ResourceManagerTestBase.class); + private AzureProfile testProfile; + private AuthFile testAuthFile; + private boolean isSkipInPlayback; + + protected String generateRandomResourceName(String prefix, int maxLen) { + return testResourceNamer.randomName(prefix, maxLen); + } + + protected String generateRandomUuid() { + return testResourceNamer.randomUuid(); + } + + /** + * @return random password + */ + public static String password() { + // do not record + String password = new ResourceNamer("").randomName("Pa5$", 12); + new ClientLogger(ResourceManagerTestBase.class).info("Password: %s%n", password); + return password; + } + + protected TokenCredential credentialFromFile() { + return testAuthFile.getCredential(); + } + + protected String clientIdFromFile() { + return testAuthFile.getClientId(); + } + + protected AzureProfile profile() { + return testProfile; + } + + protected boolean isPlaybackMode() { + return getTestMode() == TestMode.PLAYBACK; + } + + protected boolean skipInPlayback() { + if (isPlaybackMode()) { + isSkipInPlayback = true; + } + return isSkipInPlayback; + } + + @Override + protected void beforeTest() { + TokenCredential credential; + HttpPipeline httpPipeline; + Map textReplacementRules = new HashMap<>(); + String logLevel = Configuration.getGlobalConfiguration().get(Configuration.PROPERTY_AZURE_LOG_LEVEL); + HttpLogDetailLevel httpLogDetailLevel; + + try { + httpLogDetailLevel = HttpLogDetailLevel.valueOf(logLevel); + } catch (Exception e) { + if (isPlaybackMode()) { + httpLogDetailLevel = HttpLogDetailLevel.NONE; + logger.error("Environment variable '{}' has not been set yet. Using 'NONE' for PLAYBACK.", new Object[]{"AZURE_LOG_LEVEL"}); + } else { + httpLogDetailLevel = HttpLogDetailLevel.BODY_AND_HEADERS; + logger.error("Environment variable '{}' has not been set yet. Using 'BODY_AND_HEADERS' for RECORD/LIVE.", new Object[]{"AZURE_LOG_LEVEL"}); + } + } + + + if (httpLogDetailLevel == HttpLogDetailLevel.NONE) { + try { + System.setOut(new PrintStream(EMPTY_OUTPUT_STREAM, false, Charset.defaultCharset().name())); + System.setErr(new PrintStream(EMPTY_OUTPUT_STREAM, false, Charset.defaultCharset().name())); + } catch (UnsupportedEncodingException e) { + } + } + + if (isPlaybackMode()) { + if (interceptorManager.getRecordedData() == null) { + skipInPlayback(); + return; + } + + testProfile = PLAYBACK_PROFILE; + List policies = new ArrayList<>(); + policies.add(new TextReplacementPolicy(interceptorManager.getRecordedData(), textReplacementRules)); + policies.add(new CookiePolicy()); + httpPipeline = buildHttpPipeline( + null, + testProfile, + new HttpLogOptions().setLogLevel(httpLogDetailLevel), + policies, + interceptorManager.getPlaybackClient()); + textReplacementRules.put(PLAYBACK_URI_BASE + "1234", PLAYBACK_URI); + addTextReplacementRules(textReplacementRules); + } else { + if (System.getenv(AZURE_AUTH_LOCATION) != null) { // Record mode + final File credFile = new File(System.getenv(AZURE_AUTH_LOCATION)); + try { + testAuthFile = AuthFile.parse(credFile); + } catch (IOException e) { + throw logger.logExceptionAsError(new RuntimeException("Cannot parse auth file. Please check file format.")); + } + credential = testAuthFile.getCredential(); + testProfile = new AzureProfile(testAuthFile.getTenantId(), testAuthFile.getSubscriptionId(), testAuthFile.getEnvironment()); + } else { + Configuration configuration = Configuration.getGlobalConfiguration(); + String clientId = configuration.get(Configuration.PROPERTY_AZURE_CLIENT_ID); + String tenantId = configuration.get(Configuration.PROPERTY_AZURE_TENANT_ID); + String clientSecret = configuration.get(Configuration.PROPERTY_AZURE_CLIENT_SECRET); + String subscriptionId = configuration.get(Configuration.PROPERTY_AZURE_SUBSCRIPTION_ID); + if (clientId == null || tenantId == null || clientSecret == null || subscriptionId == null) { + throw logger.logExceptionAsError( + new IllegalArgumentException("When running tests in record mode either 'AZURE_AUTH_LOCATION' or 'AZURE_CLIENT_ID, AZURE_TENANT_ID, AZURE_CLIENT_SECRET and AZURE_SUBSCRIPTION_ID' needs to be set")); + } + + credential = new ClientSecretCredentialBuilder() + .tenantId(tenantId) + .clientId(clientId) + .clientSecret(clientSecret) + .authorityHost(AzureEnvironment.AZURE.getActiveDirectoryEndpoint()) + .build(); + testProfile = new AzureProfile(tenantId, subscriptionId, AzureEnvironment.AZURE); + } + + List policies = new ArrayList<>(); + policies.add(new TimeoutPolicy(Duration.ofMinutes(1))); + policies.add(new CookiePolicy()); + if (!interceptorManager.isLiveMode()) { + policies.add(new TextReplacementPolicy(interceptorManager.getRecordedData(), textReplacementRules)); + } + httpPipeline = buildHttpPipeline( + credential, + testProfile, + new HttpLogOptions().setLogLevel(httpLogDetailLevel), + policies, + generateHttpClientWithProxy(null)); + + textReplacementRules.put(testProfile.getSubscriptionId(), ZERO_SUBSCRIPTION); + textReplacementRules.put(testProfile.getTenantId(), ZERO_TENANT); + textReplacementRules.put(AzureEnvironment.AZURE.getResourceManagerEndpoint(), PLAYBACK_URI + "/"); + textReplacementRules.put(AzureEnvironment.AZURE.getGraphEndpoint(), PLAYBACK_URI + "/"); + addTextReplacementRules(textReplacementRules); + } + initializeClients(httpPipeline, testProfile); + } + + private HttpClient generateHttpClientWithProxy(ProxyOptions proxyOptions) { + NettyAsyncHttpClientBuilder clientBuilder = new NettyAsyncHttpClientBuilder(); + if (proxyOptions != null) { + clientBuilder.proxy(proxyOptions); + } else { + try { + System.setProperty(USE_SYSTEM_PROXY, VALUE_TRUE); + List proxies = ProxySelector.getDefault().select(new URI(AzureEnvironment.AZURE.getResourceManagerEndpoint())); + if (!proxies.isEmpty()) { + for (Proxy proxy : proxies) { + if (proxy.address() instanceof InetSocketAddress) { + String host = ((InetSocketAddress) proxy.address()).getHostName(); + int port = ((InetSocketAddress) proxy.address()).getPort(); + switch (proxy.type()) { + case HTTP: + return clientBuilder.proxy(new ProxyOptions(ProxyOptions.Type.HTTP, new InetSocketAddress(host, port))).build(); + case SOCKS: + return clientBuilder.proxy(new ProxyOptions(ProxyOptions.Type.SOCKS5, new InetSocketAddress(host, port))).build(); + default: + } + } + } + } + String host = null; + int port = 0; + if (System.getProperty(HTTPS_PROXY_HOST) != null && System.getProperty(HTTPS_PROXY_PORT) != null) { + host = System.getProperty(HTTPS_PROXY_HOST); + port = Integer.parseInt(System.getProperty(HTTPS_PROXY_PORT)); + } else if (System.getProperty(HTTP_PROXY_HOST) != null && System.getProperty(HTTP_PROXY_PORT) != null) { + host = System.getProperty(HTTP_PROXY_HOST); + port = Integer.parseInt(System.getProperty(HTTP_PROXY_PORT)); + } + if (host != null) { + clientBuilder.proxy(new ProxyOptions(ProxyOptions.Type.HTTP, new InetSocketAddress(host, port))); + } + } catch (URISyntaxException e) { } + } + return clientBuilder.build(); + } + + @Override + protected void afterTest() { + if (!isSkipInPlayback) { + cleanUpResources(); + } + } + + private void addTextReplacementRules(Map rules) { + for (Map.Entry entry : rules.entrySet()) { + interceptorManager.addTextReplacementRule(entry.getKey(), entry.getValue()); + } + } + + protected abstract HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient); + + protected abstract void initializeClients(HttpPipeline httpPipeline, AzureProfile profile); + + protected abstract void cleanUpResources(); +} diff --git a/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/policy/TextReplacementPolicy.java b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/policy/TextReplacementPolicy.java new file mode 100644 index 000000000000..e964245a6484 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/policy/TextReplacementPolicy.java @@ -0,0 +1,215 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +package com.azure.resourcemanager.test.policy; + +import com.azure.core.http.ContentType; +import com.azure.core.http.HttpHeader; +import com.azure.core.http.HttpHeaders; +import com.azure.core.http.HttpPipelineCallContext; +import com.azure.core.http.HttpPipelineNextPolicy; +import com.azure.core.http.HttpResponse; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.test.models.NetworkCallError; +import com.azure.core.test.models.NetworkCallRecord; +import com.azure.core.test.models.RecordedData; +import com.azure.core.test.models.RecordingRedactor; +import com.azure.core.util.UrlBuilder; +import com.azure.core.util.logging.ClientLogger; +import reactor.core.Exceptions; +import reactor.core.publisher.Mono; + +import java.io.ByteArrayInputStream; +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.net.HttpURLConnection; +import java.nio.charset.StandardCharsets; +import java.util.Arrays; +import java.util.HashMap; +import java.util.Map; +import java.util.Objects; +import java.util.zip.GZIPInputStream; + +/** + * TextReplacementPolicy to support session text replacement rules for tests. + */ +public class TextReplacementPolicy implements HttpPipelinePolicy { + private static final int DEFAULT_BUFFER_LENGTH = 1024; + private static final String CONTENT_TYPE = "Content-Type"; + private static final String CONTENT_ENCODING = "Content-Encoding"; + private static final String CONTENT_LENGTH = "Content-Length"; + private static final String X_MS_CLIENT_REQUEST_ID = "x-ms-client-request-id"; + private static final String X_MS_ENCRYPTION_KEY_SHA256 = "x-ms-encryption-key-sha256"; + private static final String X_MS_VERSION = "x-ms-version"; + private static final String USER_AGENT = "User-Agent"; + private static final String STATUS_CODE = "StatusCode"; + private static final String BODY = "Body"; + private static final String SIG = "sig"; + + private final ClientLogger logger = new ClientLogger(TextReplacementPolicy.class); + private final RecordedData recordedData; + private final Map textReplacementRules; + + /** + * Creates a policy that records network calls into {@code recordedData} with replacement rules. + * + * @param recordedData The record to persist network calls into. + * @param textReplacementRules The replacement rules + */ + public TextReplacementPolicy(RecordedData recordedData, Map textReplacementRules) { + //Objects.requireNonNull(recordedData, "'recordedData' cannot be null."); + Objects.requireNonNull(textReplacementRules, "'textReplacementRules' cannot be null."); + this.recordedData = recordedData; + this.textReplacementRules = textReplacementRules; + } + + @Override + public Mono process(HttpPipelineCallContext context, HttpPipelineNextPolicy next) { + final NetworkCallRecord networkCallRecord = new NetworkCallRecord(); + Map headers = new HashMap<>(); + + captureRequestHeaders(context.getHttpRequest().getHeaders(), headers, + X_MS_CLIENT_REQUEST_ID, + CONTENT_TYPE, + X_MS_VERSION, + USER_AGENT); + + networkCallRecord.setHeaders(headers); + networkCallRecord.setMethod(context.getHttpRequest().getHttpMethod().toString()); + + // Remove sensitive information such as SAS token signatures from the recording. + UrlBuilder urlBuilder = UrlBuilder.parse(context.getHttpRequest().getUrl()); + if (urlBuilder.getQuery().containsKey(SIG)) { + urlBuilder.setQueryParameter(SIG, "REDACTED"); + } + networkCallRecord.setUri(applyReplacementRule(urlBuilder.toString().replaceAll("\\?$", ""))); + + return next.process() + .doOnError(throwable -> { + networkCallRecord.setException(new NetworkCallError(throwable)); + recordedData.addNetworkCall(networkCallRecord); + throw logger.logExceptionAsWarning(Exceptions.propagate(throwable)); + }).flatMap(httpResponse -> { + final HttpResponse bufferedResponse = httpResponse.buffer(); + + return extractResponseData(bufferedResponse).map(responseData -> { + networkCallRecord.setResponse(responseData); + String body = responseData.get(BODY); + + // Remove pre-added header if this is a waiting or redirection + if (body != null && body.contains("InProgress") + || Integer.parseInt(responseData.get(STATUS_CODE)) == HttpURLConnection.HTTP_MOVED_TEMP) { + logger.info("Waiting for a response or redirection."); + } else { + recordedData.addNetworkCall(networkCallRecord); + } + + return bufferedResponse; + }); + }); + } + + private String applyReplacementRule(String text) { + for (Map.Entry rule : textReplacementRules.entrySet()) { + if (rule.getValue() != null) { + text = text.replaceAll(rule.getKey(), rule.getValue()); + } + } + return text; + } + + private void captureRequestHeaders(HttpHeaders requestHeaders, Map captureHeaders, + String... headerNames) { + for (String headerName : headerNames) { + if (requestHeaders.getValue(headerName) != null) { + captureHeaders.put(headerName, requestHeaders.getValue(headerName)); + } + } + } + + private Mono> extractResponseData(final HttpResponse response) { + final Map responseData = new HashMap<>(); + responseData.put(STATUS_CODE, Integer.toString(response.getStatusCode())); + + boolean addedRetryAfter = false; + for (HttpHeader header : response.getHeaders()) { + String headerValueToStore = header.getValue(); + + if (header.getName().equalsIgnoreCase("retry-after")) { + headerValueToStore = "0"; + addedRetryAfter = true; + } else if (header.getName().equalsIgnoreCase(X_MS_ENCRYPTION_KEY_SHA256)) { + // The encryption key is sensitive information so capture it with a hidden value. + headerValueToStore = "REDACTED"; + } + + responseData.put(header.getName(), applyReplacementRule(headerValueToStore)); + } + + if (!addedRetryAfter) { + responseData.put("retry-after", "0"); + } + + String contentType = response.getHeaderValue(CONTENT_TYPE); + if (contentType == null) { + return response.getBodyAsByteArray().switchIfEmpty(Mono.just(new byte[0])).map(bytes -> { + if (bytes.length == 0) { + return responseData; + } + + String content = new String(bytes, StandardCharsets.UTF_8); + responseData.put(CONTENT_LENGTH, Integer.toString(content.length())); + responseData.put(BODY, content); + return responseData; + }); + } else if (contentType.equalsIgnoreCase(ContentType.APPLICATION_OCTET_STREAM) + || contentType.equalsIgnoreCase("avro/binary")) { + return response.getBodyAsByteArray().switchIfEmpty(Mono.just(new byte[0])).map(bytes -> { + if (bytes.length == 0) { + return responseData; + } + + responseData.put(BODY, Arrays.toString(bytes)); + return responseData; + }); + } else if (contentType.contains("json") || response.getHeaderValue(CONTENT_ENCODING) == null) { + return response.getBodyAsString(StandardCharsets.UTF_8).switchIfEmpty(Mono.just("")).map(content -> { + responseData.put(BODY, applyReplacementRule(new RecordingRedactor().redact(content))); + return responseData; + }); + } else { + return response.getBodyAsByteArray().switchIfEmpty(Mono.just(new byte[0])).map(bytes -> { + if (bytes.length == 0) { + return responseData; + } + + String content; + if ("gzip".equalsIgnoreCase(response.getHeaderValue(CONTENT_ENCODING))) { + try (GZIPInputStream gis = new GZIPInputStream(new ByteArrayInputStream(bytes)); + ByteArrayOutputStream output = new ByteArrayOutputStream()) { + byte[] buffer = new byte[DEFAULT_BUFFER_LENGTH]; + int position = 0; + int bytesRead = gis.read(buffer, position, buffer.length); + + while (bytesRead != -1) { + output.write(buffer, 0, bytesRead); + position += bytesRead; + bytesRead = gis.read(buffer, position, buffer.length); + } + + content = new String(output.toByteArray(), StandardCharsets.UTF_8); + } catch (IOException e) { + throw logger.logExceptionAsWarning(Exceptions.propagate(e)); + } + } else { + content = new String(bytes, StandardCharsets.UTF_8); + } + + responseData.remove(CONTENT_ENCODING); + responseData.put(CONTENT_LENGTH, Integer.toString(content.length())); + + responseData.put(BODY, content); + return responseData; + }); + } + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/AuthFile.java b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/utils/AuthFile.java similarity index 84% rename from sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/AuthFile.java rename to sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/utils/AuthFile.java index 8810229e9c20..188227440ff2 100644 --- a/sdk/resourcemanager/azure-resourcemanager-resources/src/test/java/com/azure/resourcemanager/resources/core/AuthFile.java +++ b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/utils/AuthFile.java @@ -1,10 +1,8 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. - -package com.azure.resourcemanager.resources.core; +package com.azure.resourcemanager.test.utils; import com.azure.core.credential.TokenCredential; -import com.azure.core.implementation.TypeUtil; import com.azure.core.management.AzureEnvironment; import com.azure.core.management.serializer.AzureJacksonAdapter; import com.azure.core.util.logging.ClientLogger; @@ -17,6 +15,8 @@ import java.io.File; import java.io.IOException; import java.io.StringReader; +import java.lang.reflect.ParameterizedType; +import java.lang.reflect.Type; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Paths; @@ -25,10 +25,9 @@ import java.util.Properties; /** - * This class describes the information from a .azureauth file. + * AuthFile class to help authenticate in tests. */ - -final class AuthFile { +public final class AuthFile { private String clientId; private String tenantId; private String clientSecret; @@ -47,6 +46,32 @@ private AuthFile() { environment.endpoints().putAll(AzureEnvironment.AZURE.endpoints()); } + /** + * Create a parameterized type from a raw class and its type arguments. + * + * @param rawClass the raw class to construct the parameterized type + * @param genericTypes the generic arguments + * @return the parameterized type + */ + static ParameterizedType createParameterizedType(Class rawClass, Type... genericTypes) { + return new ParameterizedType() { + @Override + public Type[] getActualTypeArguments() { + return genericTypes; + } + + @Override + public Type getRawType() { + return rawClass; + } + + @Override + public Type getOwnerType() { + return null; + } + }; + } + /** * Parses an auth file and read into an AuthFile object. * @@ -54,13 +79,13 @@ private AuthFile() { * @return the AuthFile object created * @throws IOException thrown when the auth file or the certificate file cannot be read or parsed */ - static AuthFile parse(File file) throws IOException { + public static AuthFile parse(File file) throws IOException { String content = new String(Files.readAllBytes(Paths.get(file.getPath())), StandardCharsets.UTF_8); AuthFile authFile; if (isJsonBased(content)) { authFile = ADAPTER.deserialize(content, AuthFile.class, SerializerEncoding.JSON); Map endpoints = ADAPTER.deserialize(content, - TypeUtil.createParameterizedType(Map.class, String.class, String.class), + createParameterizedType(Map.class, String.class, String.class), SerializerEncoding.JSON); authFile.environment.endpoints().putAll(endpoints); } else { @@ -138,23 +163,38 @@ private TokenCredential generateCredential() { } } - String subscriptionId() { + /** + * @return the subscription ID. + */ + public String getSubscriptionId() { return this.subscriptionId; } - String tenantId() { + /** + * @return the tenant ID. + */ + public String getTenantId() { return this.tenantId; } - AzureEnvironment environment() { + /** + * @return the environment. + */ + public AzureEnvironment getEnvironment() { return this.environment; } - String clientId() { + /** + * @return the client ID. + */ + public String getClientId() { return this.clientId; } - TokenCredential credential() { + /** + * @return the credential. + */ + public TokenCredential getCredential() { if (this.credential == null) { this.credential = generateCredential(); } diff --git a/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/utils/TestDelayProvider.java b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/utils/TestDelayProvider.java new file mode 100644 index 000000000000..45fc43fc22f2 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/utils/TestDelayProvider.java @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +package com.azure.resourcemanager.test.utils; + +import com.azure.core.management.provider.DelayProvider; + +import java.time.Duration; + +/** + * Class helps thread sleep in tests. + */ +public class TestDelayProvider implements DelayProvider { + + private final boolean isLiveMode; + + /** + * Constructor of TestDelayProvider + * + * @param isLiveMode the boolean flag for test mode + */ + public TestDelayProvider(boolean isLiveMode) { + this.isLiveMode = isLiveMode; + } + + @Override + public Duration getDelayDuration(Duration delay) { + return isLiveMode ? delay : Duration.ofSeconds(1); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/utils/TestIdentifierProvider.java b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/utils/TestIdentifierProvider.java new file mode 100644 index 000000000000..bb53eb737f75 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/com/azure/resourcemanager/test/utils/TestIdentifierProvider.java @@ -0,0 +1,33 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. +package com.azure.resourcemanager.test.utils; + +import com.azure.core.management.provider.IdentifierProvider; +import com.azure.core.test.utils.TestResourceNamer; + +/** + * Class helps generate unique identifier. + */ +public class TestIdentifierProvider implements IdentifierProvider { + + private final TestResourceNamer testResourceNamer; + + /** + * Constructor of TestIdentifierProvider + * + * @param testResourceNamer the test resource namer + */ + public TestIdentifierProvider(TestResourceNamer testResourceNamer) { + this.testResourceNamer = testResourceNamer; + } + + @Override + public String randomName(String prefix, int maxLen) { + return testResourceNamer.randomName(prefix, maxLen); + } + + @Override + public String randomUuid() { + return testResourceNamer.randomUuid(); + } +} diff --git a/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/module-info.java new file mode 100644 index 000000000000..d2491aafb115 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager-test/src/main/java/module-info.java @@ -0,0 +1,8 @@ +module com.azure.resourcemanager.test { + requires com.azure.core.management; + requires com.azure.core.test; + requires com.azure.http.netty; + requires com.azure.identity; + + exports com.azure.resourcemanager.test; +} diff --git a/sdk/resourcemanager/azure-resourcemanager/pom.xml b/sdk/resourcemanager/azure-resourcemanager/pom.xml index 59fa751fb0f5..66d7eeb65f24 100644 --- a/sdk/resourcemanager/azure-resourcemanager/pom.xml +++ b/sdk/resourcemanager/azure-resourcemanager/pom.xml @@ -171,9 +171,9 @@ test - com.azure - azure-identity - 1.1.0 + com.azure.resourcemanager + azure-resourcemanager-test + 2.0.0-beta.4 test diff --git a/sdk/resourcemanager/azure-resourcemanager/src/main/java/com/azure/resourcemanager/Azure.java b/sdk/resourcemanager/azure-resourcemanager/src/main/java/com/azure/resourcemanager/Azure.java index 3a2304e5065b..e3fa0c22b11b 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/main/java/com/azure/resourcemanager/Azure.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/main/java/com/azure/resourcemanager/Azure.java @@ -83,7 +83,7 @@ import com.azure.resourcemanager.resources.ResourceManager; import com.azure.resourcemanager.resources.fluentcore.arm.AzureConfigurable; import com.azure.resourcemanager.resources.fluentcore.arm.implementation.AzureConfigurableImpl; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.fluentcore.utils.Utils; @@ -270,9 +270,9 @@ private AuthenticatedImpl(HttpPipeline httpPipeline, AzureProfile profile) { this.resourceManagerAuthenticated = ResourceManager.authenticate(httpPipeline, profile); this.authorizationManager = AuthorizationManager.authenticate(httpPipeline, profile); this.httpPipeline = httpPipeline; - this.tenantId = profile.tenantId(); - this.subscriptionId = profile.subscriptionId(); - this.environment = profile.environment(); + this.tenantId = profile.getTenantId(); + this.subscriptionId = profile.getSubscriptionId(); + this.environment = profile.getEnvironment(); this.sdkContext = new SdkContext(); } @@ -385,8 +385,8 @@ private Azure(HttpPipeline httpPipeline, AzureProfile profile, Authenticated aut this.appPlatformManager = AppPlatformManager.authenticate(httpPipeline, profile, sdkContext); this.privateDnsZoneManager = PrivateDnsZoneManager.authenticate(httpPipeline, profile, sdkContext); this.authenticated = authenticated; - this.subscriptionId = profile.subscriptionId(); - this.tenantId = profile.tenantId(); + this.subscriptionId = profile.getSubscriptionId(); + this.tenantId = profile.getTenantId(); } /** @return the currently selected subscription ID this client is authenticated to work with */ diff --git a/sdk/resourcemanager/azure-resourcemanager/src/main/java/module-info.java b/sdk/resourcemanager/azure-resourcemanager/src/main/java/module-info.java new file mode 100644 index 000000000000..339afb6812b2 --- /dev/null +++ b/sdk/resourcemanager/azure-resourcemanager/src/main/java/module-info.java @@ -0,0 +1,15 @@ +module com.azure.resourcemanager { + requires transitive com.azure.resourcemanager.compute; + requires transitive com.azure.resourcemanager.appplatform; + requires transitive com.azure.resourcemanager.appservice; + requires transitive com.azure.resourcemanager.containerinstance; + requires transitive com.azure.resourcemanager.containerregistry; + requires transitive com.azure.resourcemanager.containerservice; + requires transitive com.azure.resourcemanager.cosmos; + requires transitive com.azure.resourcemanager.monitor; + requires transitive com.azure.resourcemanager.sql; + requires transitive com.azure.resourcemanager.privatedns; + requires transitive com.azure.resourcemanager.redis; + + exports com.azure.resourcemanager; +} diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/ApplicationGatewayTests.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/ApplicationGatewayTests.java index d7c347dba8ce..ea97b474b2bc 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/ApplicationGatewayTests.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/ApplicationGatewayTests.java @@ -2,7 +2,12 @@ // Licensed under the MIT License. package com.azure.resourcemanager; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.core.management.exception.ManagementException; import com.azure.resourcemanager.compute.models.KnownLinuxVirtualMachineImage; import com.azure.resourcemanager.compute.models.VirtualMachine; @@ -16,24 +21,51 @@ import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.network.models.NetworkInterface; import com.azure.resourcemanager.network.models.NicIpConfiguration; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; +import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.models.ResourceGroup; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; import com.azure.resourcemanager.resources.fluentcore.model.CreatedResources; + +import java.time.temporal.ChronoUnit; import java.util.ArrayList; import java.util.List; import java.util.Map; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Test; -public class ApplicationGatewayTests extends TestBase { +public class ApplicationGatewayTests extends ResourceManagerTestBase { private Azure azure; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); Azure.Authenticated azureAuthed = Azure.authenticate(httpPipeline, profile).withSdkContext(sdkContext); azure = azureAuthed.withDefaultSubscription(); diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/AzureTests.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/AzureTests.java index 080198af4f07..ba5f2715d402 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/AzureTests.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/AzureTests.java @@ -2,7 +2,12 @@ // Licensed under the MIT License. package com.azure.resourcemanager; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.core.http.rest.PagedIterable; import com.azure.core.management.exception.ManagementException; import com.azure.resourcemanager.authorization.models.BuiltInRole; @@ -39,12 +44,12 @@ import com.azure.resourcemanager.network.models.SecurityGroupView; import com.azure.resourcemanager.network.models.Topology; import com.azure.resourcemanager.network.models.VerificationIPFlow; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.core.TestUtilities; import com.azure.resourcemanager.resources.fluentcore.arm.CountryIsoCode; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Creatable; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.resources.models.Deployment; import com.azure.resourcemanager.resources.models.DeploymentMode; @@ -56,6 +61,7 @@ import com.azure.resourcemanager.storage.models.StorageAccount; import java.io.IOException; import java.text.MessageFormat; +import java.time.temporal.ChronoUnit; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; @@ -65,16 +71,41 @@ import java.util.concurrent.Executors; import java.util.concurrent.TimeUnit; import java.util.stream.Collectors; + +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; -public class AzureTests extends TestBase { +public class AzureTests extends ResourceManagerTestBase { private Azure azure; private MSIManager msiManager; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); Azure.Authenticated azureAuthed = Azure.authenticate(httpPipeline, profile).withSdkContext(sdkContext); azure = azureAuthed.withDefaultSubscription(); this.msiManager = MSIManager.authenticate(httpPipeline, profile, sdkContext); @@ -1080,7 +1111,7 @@ public void testRedis() throws Exception { @Test public void testDnsZones() throws Exception { - if (isPlaybackMode()) { + if (skipInPlayback()) { return; // TODO: fix playback random fail } new TestDns().runTest(azure.dnsZones(), azure.resourceGroups()); @@ -1088,7 +1119,7 @@ public void testDnsZones() throws Exception { @Test public void testPrivateDnsZones() throws Exception { - if (isPlaybackMode()) { + if (skipInPlayback()) { return; // TODO: fix playback random fail } new TestPrivateDns().runTest(azure.privateDnsZones(), azure.resourceGroups()); diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestUtils.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestUtils.java index 0ee51c801b80..eb51a0c11795 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestUtils.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestUtils.java @@ -3,6 +3,7 @@ package com.azure.resourcemanager; +import com.azure.core.util.Configuration; import com.azure.resourcemanager.compute.models.DataDisk; import com.azure.resourcemanager.compute.models.VirtualMachine; @@ -19,6 +20,14 @@ private TestUtils() { // System.out.println(info.toString()); // } + /** + * @return whether it it RECORD mode + */ + public static boolean isRecordMode() { + String azureTestMode = Configuration.getGlobalConfiguration().get("AZURE_TEST_MODE"); + return "RECORD".equalsIgnoreCase(azureTestMode); + } + /** * Shows the virtual machine. * diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachine.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachine.java index 85fd581a0cc9..fc9fe7b4ab21 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachine.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachine.java @@ -9,9 +9,9 @@ import com.azure.resourcemanager.compute.models.VirtualMachineDataDisk; import com.azure.resourcemanager.compute.models.VirtualMachineSizeTypes; import com.azure.resourcemanager.compute.models.VirtualMachines; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Indexable; +import com.azure.resourcemanager.test.ResourceManagerTestBase; import com.google.common.util.concurrent.SettableFuture; import org.junit.jupiter.api.Assertions; import reactor.core.publisher.Flux; @@ -34,7 +34,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc .withoutPrimaryPublicIPAddress() .withPopularWindowsImage(KnownWindowsVirtualMachineImage.WINDOWS_SERVER_2012_R2_DATACENTER) .withAdminUsername("testuser") - .withAdminPassword(TestBase.password()) + .withAdminPassword(ResourceManagerTestBase.password()) .withNewDataDisk(150) .withSize(VirtualMachineSizeTypes.STANDARD_D1_V2) .createAsync(); diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineCustomData.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineCustomData.java index f4f75739e215..930cfec3f0b1 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineCustomData.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineCustomData.java @@ -9,7 +9,6 @@ import com.azure.resourcemanager.compute.models.VirtualMachines; import com.azure.resourcemanager.network.models.PublicIpAddress; import com.azure.resourcemanager.network.models.PublicIpAddresses; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.jcraft.jsch.ChannelExec; import com.jcraft.jsch.JSch; @@ -67,7 +66,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc pip.refresh(); Assertions.assertTrue(pip.hasAssignedNetworkInterface()); - if (TestBase.isRecordMode()) { + if (TestUtils.isRecordMode()) { JSch jsch = new JSch(); Session session = null; ChannelExec channel = null; diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSsh.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSsh.java index bfe28e73dcb7..a0475c66e85f 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSsh.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSsh.java @@ -9,7 +9,6 @@ import com.azure.resourcemanager.compute.models.VirtualMachines; import com.azure.resourcemanager.network.models.PublicIpAddress; import com.azure.resourcemanager.network.models.PublicIpAddresses; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.jcraft.jsch.JSch; import com.jcraft.jsch.Session; @@ -59,7 +58,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc JSch jsch = new JSch(); Session session = null; - if (TestBase.isRecordMode()) { + if (TestUtils.isRecordMode()) { try { java.util.Properties config = new java.util.Properties(); config.put("StrictHostKeyChecking", "no"); diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSyncPoller.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSyncPoller.java index bd62e15d8b41..12e6b7e76b00 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSyncPoller.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/TestVirtualMachineSyncPoller.java @@ -15,9 +15,9 @@ import com.azure.resourcemanager.network.models.Network; import com.azure.resourcemanager.network.models.NetworkInterface; import com.azure.resourcemanager.network.models.PublicIpAddress; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.Region; import com.azure.resourcemanager.resources.fluentcore.model.Accepted; +import com.azure.resourcemanager.test.ResourceManagerTestBase; import org.junit.jupiter.api.Assertions; import java.time.Duration; @@ -112,7 +112,7 @@ public VirtualMachine createResource(VirtualMachines virtualMachines) throws Exc .withExistingPrimaryNetworkInterface(networkInterface) .withPopularLinuxImage(KnownLinuxVirtualMachineImage.UBUNTU_SERVER_18_04_LTS) .withRootUsername("testuser") - .withRootPassword(TestBase.password()) + .withRootPassword(ResourceManagerTestBase.password()) .withExistingDataDisk(disk) .withSize(VirtualMachineSizeTypes.STANDARD_A9) .beginCreate(); diff --git a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/VirtualNetworkGatewayTests.java b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/VirtualNetworkGatewayTests.java index 522bc11c139c..5778eb088020 100644 --- a/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/VirtualNetworkGatewayTests.java +++ b/sdk/resourcemanager/azure-resourcemanager/src/test/java/com/azure/resourcemanager/VirtualNetworkGatewayTests.java @@ -3,26 +3,58 @@ package com.azure.resourcemanager; +import com.azure.core.credential.TokenCredential; +import com.azure.core.http.HttpClient; import com.azure.core.http.HttpPipeline; +import com.azure.core.http.policy.HttpLogOptions; +import com.azure.core.http.policy.HttpPipelinePolicy; +import com.azure.core.http.policy.RetryPolicy; import com.azure.resourcemanager.network.models.NetworkWatcher; import com.azure.resourcemanager.network.models.Troubleshooting; import com.azure.resourcemanager.network.models.VirtualNetworkGateway; import com.azure.resourcemanager.network.models.VirtualNetworkGatewayConnection; import com.azure.resourcemanager.network.models.VirtualNetworkGatewaySkuName; -import com.azure.resourcemanager.resources.core.TestBase; import com.azure.resourcemanager.resources.fluentcore.arm.Region; -import com.azure.resourcemanager.resources.fluentcore.profile.AzureProfile; +import com.azure.core.management.profile.AzureProfile; +import com.azure.resourcemanager.resources.fluentcore.utils.HttpPipelineProvider; import com.azure.resourcemanager.resources.fluentcore.utils.SdkContext; import com.azure.resourcemanager.storage.models.StorageAccount; +import com.azure.resourcemanager.test.ResourceManagerTestBase; +import com.azure.resourcemanager.test.utils.TestDelayProvider; +import com.azure.resourcemanager.test.utils.TestIdentifierProvider; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; -public class VirtualNetworkGatewayTests extends TestBase { +import java.time.temporal.ChronoUnit; +import java.util.List; + +public class VirtualNetworkGatewayTests extends ResourceManagerTestBase { private Azure azure; + @Override + protected HttpPipeline buildHttpPipeline( + TokenCredential credential, + AzureProfile profile, + HttpLogOptions httpLogOptions, + List policies, + HttpClient httpClient) { + return HttpPipelineProvider.buildHttpPipeline( + credential, + profile, + null, + httpLogOptions, + null, + new RetryPolicy("Retry-After", ChronoUnit.SECONDS), + policies, + httpClient); + } + @Override protected void initializeClients(HttpPipeline httpPipeline, AzureProfile profile) { + SdkContext.setDelayProvider(new TestDelayProvider(!isPlaybackMode())); + SdkContext sdkContext = new SdkContext(); + sdkContext.setIdentifierFunction(name -> new TestIdentifierProvider(testResourceNamer)); Azure.Authenticated azureAuthed = Azure.authenticate(httpPipeline, profile).withSdkContext(sdkContext); azure = azureAuthed.withDefaultSubscription(); @@ -35,8 +67,8 @@ protected void cleanUpResources() { @Test @Disabled("Service has bug that cause 'InternalServerError' - record this once service is fixed") public void testNetworkWatcherTroubleshooting() throws Exception { - String gatewayName = sdkContext.randomResourceName("vngw", 8); - String connectionName = sdkContext.randomResourceName("vngwc", 8); + String gatewayName = generateRandomResourceName("vngw", 8); + String connectionName = generateRandomResourceName("vngwc", 8); TestNetworkWatcher tnw = new TestNetworkWatcher(); NetworkWatcher nw = tnw.createResource(azure.networkWatchers()); @@ -77,7 +109,7 @@ public void testNetworkWatcherTroubleshooting() throws Exception { StorageAccount storageAccount = azure .storageAccounts() - .define("sa" + sdkContext.randomResourceName("", 8)) + .define("sa" + generateRandomResourceName("", 8)) .withRegion(region) .withExistingResourceGroup(resourceGroup) .create(); diff --git a/sdk/resourcemanager/pom.xml b/sdk/resourcemanager/pom.xml index 7161cbc31f1a..2fa6d0f6ba8e 100644 --- a/sdk/resourcemanager/pom.xml +++ b/sdk/resourcemanager/pom.xml @@ -29,5 +29,6 @@ azure-resourcemanager-samples azure-resourcemanager-sql azure-resourcemanager-storage + azure-resourcemanager-test